dsh-job-progress 0.1.1 → 1.0.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/CHANGELOG.md +44 -0
- package/package.json +2 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# 变更记录
|
|
2
|
+
|
|
3
|
+
本文件记录对外发布的版本。格式参考 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.1.0/),
|
|
4
|
+
版本号遵循 [语义化版本](https://semver.org/lang/zh-CN/)。
|
|
5
|
+
|
|
6
|
+
## [1.0.0] - 2026-09-25
|
|
7
|
+
|
|
8
|
+
首个稳定版。这一版没有引入不兼容改动:自 0.1.0 首发以来,对外接口(`dsh.bundle` 补丁行、
|
|
9
|
+
`./client` 与 `./progress` 两个入口、进度文件的目录约定)都没有改过,本版把语言与依赖声明
|
|
10
|
+
两处不一致补齐,并把包标记为稳定。
|
|
11
|
+
|
|
12
|
+
### 新增
|
|
13
|
+
|
|
14
|
+
- `CHANGELOG.md`:从这一版开始记录每次发布。
|
|
15
|
+
|
|
16
|
+
### 修复
|
|
17
|
+
|
|
18
|
+
- `lib/client.js`:剩余时间的前缀过去是硬编码中文,英文界面下显示成「剩11m16s」。改为走
|
|
19
|
+
locale 词条 `eta.left`,中文为 `剩{d}`、英文为 `{d} left`(中英词序相反,所以用占位符而不是拼接)。
|
|
20
|
+
|
|
21
|
+
### 变更
|
|
22
|
+
|
|
23
|
+
- `package.json`:peer 范围改为 `^0.1.0-rc.6 || ^0.1.5-rc.1`。原来的 `^0.1.0-rc.6` 按 semver
|
|
24
|
+
规则**不匹配**预发布版本 `0.1.5-rc.2`(只允许同一 `major.minor.patch` 元组内的预发布比较),
|
|
25
|
+
补上同元组分支后当前 harness 才落在声明范围内。
|
|
26
|
+
- `package.json`:声明 `engines.node`(`>=22.19.0`)。
|
|
27
|
+
|
|
28
|
+
## [0.1.1] - 2026-09-25
|
|
29
|
+
|
|
30
|
+
### 新增
|
|
31
|
+
|
|
32
|
+
- `screenshots.json`:向插件目录声明界面截图。
|
|
33
|
+
- README 增加 npm 安装方式与 npm 徽章;截图改用 Markdown 图片语法——插件目录渲染 README 时会丢弃
|
|
34
|
+
裸 HTML,于是相对路径也就无法被改写成可访问的绝对地址。
|
|
35
|
+
|
|
36
|
+
## [0.1.0] - 2026-09-25
|
|
37
|
+
|
|
38
|
+
### 新增
|
|
39
|
+
|
|
40
|
+
- 首个公开发布。
|
|
41
|
+
|
|
42
|
+
[1.0.0]: https://github.com/Rice00/dsh-job-progress/compare/7ede4b8...v1.0.0
|
|
43
|
+
[0.1.1]: https://github.com/Rice00/dsh-job-progress/compare/a76c03d...7ede4b8
|
|
44
|
+
[0.1.0]: https://github.com/Rice00/dsh-job-progress/commit/a76c03d
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-job-progress",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Live progress for long-running background jobs in the DeepSeek Harness web GUI: a draggable floating ball with a per-session task panel showing done/total, speed and ETA.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"cordis.patch.yml",
|
|
18
18
|
"README.md",
|
|
19
19
|
"README.zh.md",
|
|
20
|
+
"CHANGELOG.md",
|
|
20
21
|
"assets"
|
|
21
22
|
],
|
|
22
23
|
"keywords": [
|