dsh-client-auto-continue 0.5.1 → 0.5.3
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 +0 -4
- package/README.zh.md +0 -4
- package/package.json +7 -3
- package/src/client/engine.ts +1116 -0
- package/src/client/index.ts +91 -0
- package/src/client/locales.ts +140 -0
- package/src/client/settings-card.tsx +547 -0
- package/src/client/settings-form.ts +293 -0
- package/src/client/styles.ts +172 -0
- package/src/index.ts +62 -0
- package/tsconfig.build.json +11 -0
- package/tsconfig.json +29 -0
- package/docs/screenshots/05-plugins-view.png +0 -0
- package/docs/screenshots/06-card-fields.png +0 -0
package/README.md
CHANGED
|
@@ -190,10 +190,6 @@ auto-continue:
|
|
|
190
190
|
|
|
191
191
|
**How the card works:**
|
|
192
192
|
|
|
193
|
-

|
|
194
|
-
|
|
195
|
-

|
|
196
|
-
|
|
197
193
|

|
|
198
194
|
|
|
199
195
|
- Edits are **staged** — nothing reaches the disk until you hit **Save**; an unsaved badge marks the card while drafts are pending, and **Discard** drops them
|
package/README.zh.md
CHANGED
|
@@ -186,10 +186,6 @@ auto-continue:
|
|
|
186
186
|
|
|
187
187
|
**卡片操作说明:**
|
|
188
188
|
|
|
189
|
-

|
|
190
|
-
|
|
191
|
-

|
|
192
|
-
|
|
193
189
|

|
|
194
190
|
|
|
195
191
|
- 修改是**暂存式**的——点「保存」之前不会写入磁盘; 有待保存草稿时卡片显示「未保存」徽章, 「放弃」可丢弃草稿
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-client-auto-continue",
|
|
3
3
|
"description": "DSH Web UI plugin: automatically sends \"继续\" (continue) when a request is interrupted by network errors or other non-human causes",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"types": "lib/types/index.d.ts",
|
|
@@ -18,9 +18,12 @@
|
|
|
18
18
|
},
|
|
19
19
|
"files": [
|
|
20
20
|
"lib",
|
|
21
|
+
"src",
|
|
21
22
|
"cordis.patch.yml",
|
|
22
23
|
"scripts",
|
|
23
24
|
"docs",
|
|
25
|
+
"tsconfig.json",
|
|
26
|
+
"tsconfig.build.json",
|
|
24
27
|
"README.md",
|
|
25
28
|
"README.zh.md",
|
|
26
29
|
"LICENSE"
|
|
@@ -45,7 +48,7 @@
|
|
|
45
48
|
"watch": "node build.mjs --watch",
|
|
46
49
|
"typecheck": "tsc --noEmit",
|
|
47
50
|
"test": "node tests/simulate.mjs",
|
|
48
|
-
"
|
|
51
|
+
"prepack": "npm run build"
|
|
49
52
|
},
|
|
50
53
|
"keywords": [
|
|
51
54
|
"dsh",
|
|
@@ -79,7 +82,8 @@
|
|
|
79
82
|
"peerDependencies": {
|
|
80
83
|
"react": "^18.2.0",
|
|
81
84
|
"@deepseek-ai/dsh-settings": "^0.1.0-rc.6",
|
|
82
|
-
"@deepseek-ai/schemastery": "^3.18.1"
|
|
85
|
+
"@deepseek-ai/schemastery": "^3.18.1",
|
|
86
|
+
"@deepseek-ai/cordis": "^4.0.1"
|
|
83
87
|
},
|
|
84
88
|
"bin": {
|
|
85
89
|
"patch-expose": "./scripts/patch-expose.mjs"
|