dsh-mobilecode 0.11.6 → 0.11.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/client.js +5 -3
  2. package/package.json +1 -1
package/lib/client.js CHANGED
@@ -126,10 +126,12 @@ window.__ModuleLoader__.load({
126
126
  /* 0.11.6: the co-op head must NEVER wrap to a second row — a wrapped
127
127
  head offsets one pane's stage ~38px lower than its sibling's, which
128
128
  read as "the bars in Device 1 make the heights differ". Children
129
- shrink instead (picker/select ellipsize). */
129
+ shrink instead (picker/select ellipsize). 0.11.7: the button must
130
+ also TRACK its shrinking .mc-picker container — at intrinsic width
131
+ it overflowed sideways under the ☰/⧉ buttons. */
130
132
  .mc-live-section.coop .mc-card-head { flex-wrap: nowrap; min-width: 0; }
131
133
  .mc-card-head .mc-picker { flex: 1 1 auto; min-width: 0; }
132
- .mc-card-head .mc-picker .mc-btn { min-width: 0; }
134
+ .mc-card-head .mc-picker .mc-btn { width: 100%; min-width: 0; }
133
135
  /* No coop-specific height cap: both panes must share Device 1's 60vh rule so
134
136
  they match at every size, Fit included (0.11.2). */
135
137
  .mc-coop-select { width: auto; min-width: 0; flex: 0 1 auto; padding: 3px 6px; font-size: 12px; }
@@ -196,7 +198,7 @@ window.__ModuleLoader__.load({
196
198
  // Shown on both stream captions so a refresh visibly proves which client
197
199
  // bundle the browser is actually running. Kept in lockstep with
198
200
  // package.json by test/client.mjs.
199
- const MC_VERSION = "0.11.6";
201
+ const MC_VERSION = "0.11.7";
200
202
  // The panel shows cards for platforms the host can actually drive; the
201
203
  // server reports its OS in info.os (iOS tooling is darwin-only).
202
204
  const fallbackPlatforms = (os) => (os === "darwin" ? ["ios", "android"] : ["android"]);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dsh-mobilecode",
3
3
  "description": "MobileCode for the dsh web GUI: detect iOS/Android projects, run preview servers, and drive the simulator/emulator from the session — 37 agent tools (device_run, device_screen, device_ui_tree, device_ui_rows, device_tap_row, device_tap_element, device_wait_for, device_scroll_to, device_input, device_batch, device_intent, device_connect, device_pair_qr, device_perf, device_meminfo, device_backtrace, device_display, device_avd_create, device_pair_capture, device_app_info, device_install, device_uninstall, device_reboot, device_log, live screen stream, multimodal screenshots) plus a host-mediated co-op mesh hub (random callsigns, JSON pub/sub, tunable latency/jitter/drop/dup/throttle) so two virtual devices — and the AI watching them — can talk in real time. One classified adb boundary and a Wi-Fi connect/pair QR flow in the Connection settings tab. Hot-pluggable — mounted via the profile bundle list + cordis.patch.yml, no dsh source changes.",
4
- "version": "0.11.6",
4
+ "version": "0.11.7",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@11.22.0",
7
7
  "engines": {