dsh-clean-desktop-shell 0.1.11 → 0.1.13
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/CONTRIBUTORS.md +25 -19
- package/README.en.md +422 -333
- package/README.md +363 -278
- package/electron/aumid.js +17 -17
- package/electron/crashGuard.js +60 -60
- package/electron/error.html +113 -113
- package/electron/main.js +203 -187
- package/electron/outage.js +60 -0
- package/electron/preload.js +216 -49
- package/electron/progress-preload.js +11 -11
- package/electron/progress.html +79 -79
- package/electron/progress.js +56 -56
- package/electron/service.js +559 -458
- package/electron/shortcut.js +122 -122
- package/electron/tray.js +232 -232
- package/electron/window.js +603 -264
- package/lib/client.js +41 -6
- package/lib/common.js +74 -74
- package/lib/icon.js +85 -51
- package/lib/index.js +90 -15
- package/lib/runtime.js +423 -423
- package/package.json +140 -127
- package/scripts/check-syntax.mjs +54 -54
- package/scripts/selftest-recovery.mjs +140 -0
- package/scripts/selftest-runtime.mjs +90 -90
- package/src/client/client.js +41 -6
- package/src/host/common.js +74 -74
- package/src/host/icon.js +85 -51
- package/src/host/index.js +90 -15
- package/src/host/runtime.js +423 -423
- package/version.txt +1 -1
package/CONTRIBUTORS.md
CHANGED
|
@@ -1,19 +1,25 @@
|
|
|
1
|
-
# Contributors
|
|
2
|
-
|
|
3
|
-
This project welcomes contributions — especially around platforms that the
|
|
4
|
-
maintainer does not use daily.
|
|
5
|
-
|
|
6
|
-
## Author
|
|
7
|
-
|
|
8
|
-
- **Icather** — Windows side, plugin architecture, backend lifecycle, CI setup.
|
|
9
|
-
|
|
10
|
-
##
|
|
11
|
-
|
|
12
|
-
- **
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
1
|
+
# Contributors
|
|
2
|
+
|
|
3
|
+
This project welcomes contributions — especially around platforms that the
|
|
4
|
+
maintainer does not use daily.
|
|
5
|
+
|
|
6
|
+
## Author
|
|
7
|
+
|
|
8
|
+
- **Icather** — Windows side, plugin architecture, backend lifecycle, CI setup.
|
|
9
|
+
|
|
10
|
+
## Contributors
|
|
11
|
+
|
|
12
|
+
- **[@lispv](https://github.com/lispv)** — DSH 0.1.2 launch-token authentication on plugin cold start (the host half mints the process's launch URL and hands it to Electron), the desktop titlebar inset contract, preserving loaded pages during backend outages, and the macOS titlebar drag-strip hit area. His commit authorships are preserved in the merged history (#5, #6).
|
|
13
|
+
- **[@lzd-loostone](https://github.com/lzd-loostone)** — capturing the full launch-token URL instead of only host:port, so a shell-started backend stops landing on the 401 page (#4).
|
|
14
|
+
- **[@e16a](https://github.com/e16a)** — the issue that pinned the black-window root cause precisely (the dropped `?token=` and `probe()` scoring a 401 as healthy); the fix followed that diagnosis directly (#2).
|
|
15
|
+
|
|
16
|
+
## Looking for help
|
|
17
|
+
|
|
18
|
+
- **macOS maintainer / co-developer**: validate the .dmg install flow,
|
|
19
|
+
test Apple Silicon + Intel builds, set up code signing + notarization,
|
|
20
|
+
and ideally add a launch-at-login menu item in the tray.
|
|
21
|
+
- **Linux maintainer**: validate the runtime provisioning and tray behavior
|
|
22
|
+
on major distributions.
|
|
23
|
+
|
|
24
|
+
If you open a PR or verified issue that moves macOS support forward, add your
|
|
25
|
+
name here.
|