dshmarket 1.29.3 → 1.31.0
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/README.md +4 -0
- package/README.zh.md +4 -0
- package/client/client.js +161 -52
- package/client/client.js.map +1 -1
- package/lib/log.js +9 -2
- package/lib/routes.js +60 -1
- package/lib/types/log.d.ts +1 -1
- package/lib/updates.js +10 -2
- package/package.json +1 -1
- package/src/client/Diagnostics.tsx +3 -2
- package/src/client/Market.module.css +10 -2
- package/src/client/MarketSection.tsx +127 -33
- package/src/client/SettingsCard.tsx +13 -13
- package/src/client/locales.ts +2 -0
- package/src/client/market-data.ts +22 -0
- package/src/client/preset-panel.tsx +7 -6
- package/src/client/snapshot-panel.tsx +5 -4
- package/src/log.ts +9 -2
- package/src/routes.ts +57 -1
- package/src/updates.ts +10 -2
package/README.md
CHANGED
|
@@ -109,6 +109,10 @@ DSHM_REGISTRY_URL=https://your-mirror.example/plugins.json dsh web
|
|
|
109
109
|
|
|
110
110
|
[deepseek-harness-desktop](https://github.com/anywhere-labs/deepseek-harness-desktop) — an Electron desktop app for DeepSeek Harness built around the idea that everything is a plugin, including the desktop itself: profile switching, a bundled Node and pnpm, and a recoverable install path that snapshots the profile before a change. [dshdesktop.cn](https://dshdesktop.cn)
|
|
111
111
|
|
|
112
|
+
### DSH App
|
|
113
|
+
|
|
114
|
+
[dsh-app](https://github.com/RyensX/dsh-app) — a DeepSeek Harness desktop client built on Tauri 2 rather than Electron, so it ships a much smaller binary and uses the system webview. AGPL-3.0.
|
|
115
|
+
|
|
112
116
|
### DSH Get
|
|
113
117
|
|
|
114
118
|
[DSH Get](https://www.dshget.com/) — a searchable web directory for discovering DeepSeek Harness plugins: category filters, bilingual descriptions, install commands and per-plugin detail pages. Its normalized catalog snapshot is public at [bobby-sheng/dshget-data](https://github.com/bobby-sheng/dshget-data).
|
package/README.zh.md
CHANGED
|
@@ -106,6 +106,10 @@ DSHM_REGISTRY_URL=https://your-mirror.example/plugins.json dsh web
|
|
|
106
106
|
|
|
107
107
|
[deepseek-harness-desktop](https://github.com/anywhere-labs/deepseek-harness-desktop)——基于 Electron 的 DeepSeek Harness 桌面客户端,理念是「万物皆插件,桌面本身也是插件」:支持 profile 切换、内置 Node 与 pnpm,安装前会先给 profile 拍快照以便回滚。[dshdesktop.cn](https://dshdesktop.cn)
|
|
108
108
|
|
|
109
|
+
### DSH App
|
|
110
|
+
|
|
111
|
+
[dsh-app](https://github.com/RyensX/dsh-app)——基于 Tauri 2(而非 Electron)的 DeepSeek Harness 桌面客户端,因此安装包小得多,界面走系统 webview。AGPL-3.0。
|
|
112
|
+
|
|
109
113
|
### DSH Get
|
|
110
114
|
|
|
111
115
|
[DSH Get](https://www.dshget.com/)——DeepSeek Harness 插件的网页检索目录:分类筛选、中英描述、安装命令与插件详情页;其规范化的目录快照公开在 [bobby-sheng/dshget-data](https://github.com/bobby-sheng/dshget-data)。
|