dsh-mobilecode 0.9.0 → 0.9.1
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.
- package/lib/client.js +5 -3
- package/package.json +1 -1
package/lib/client.js
CHANGED
|
@@ -117,11 +117,13 @@ window.__ModuleLoader__.load({
|
|
|
117
117
|
.mc-live-stage { position: relative; align-self: center; background: #000; border-radius: 10px; overflow: hidden; line-height: 0; box-shadow: inset 0 0 0 1px light-dark(rgba(0,0,0,.12), rgba(255,255,255,.14)); }
|
|
118
118
|
.mc-live-stage img { display: block; max-width: 100%; max-height: 60vh; width: auto; height: auto; cursor: crosshair; touch-action: none; user-select: none; }
|
|
119
119
|
.mc-live-stage .mc-live-off { display: flex; align-items: center; justify-content: center; width: 260px; height: 460px; color: #9aa0a8; font-size: 13px; line-height: 1.5; text-align: center; }
|
|
120
|
-
/* 0.9.
|
|
120
|
+
/* 0.9.1 co-op: two forced columns — side-by-side MUST survive a narrow drawer. */
|
|
121
121
|
.mc-live-section { display: flex; flex-direction: column; gap: 10px; }
|
|
122
|
-
.mc-live-section.coop {
|
|
123
|
-
.mc-live-section.coop > .mc-card {
|
|
122
|
+
.mc-live-section.coop { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; align-items: start; }
|
|
123
|
+
.mc-live-section.coop > .mc-card { min-width: 0; }
|
|
124
|
+
.mc-live-section.coop .mc-card-head { flex-wrap: wrap; }
|
|
124
125
|
.mc-live-section.coop .mc-live-stage img { max-height: 48vh; }
|
|
126
|
+
.mc-live-section.coop .mc-live-off { width: 180px; height: 340px; }
|
|
125
127
|
.mc-coop-select { width: auto; padding: 3px 6px; font-size: 12px; }
|
|
126
128
|
.mc-live-nav { display: flex; align-items: center; justify-content: center; gap: 8px; }
|
|
127
129
|
.mc-live-nav button { border: 1px solid light-dark(rgba(0,0,0,.16), rgba(255,255,255,.18)); background: light-dark(#fff, #20242b); color: inherit; border-radius: 999px; width: 40px; height: 32px; cursor: pointer; font-size: 14px; }
|
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.9.
|
|
4
|
+
"version": "0.9.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "pnpm@11.22.0",
|
|
7
7
|
"engines": {
|