dsh-notify-windows 0.7.5 → 0.7.6

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 CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  本项目遵循 [Semantic Versioning](https://semver.org/)。
4
4
 
5
+ ## [0.7.6] - 2026-09-22
6
+
7
+ ### 兼容性
8
+
9
+ - **新增 `dsh.compatibility` 声明**(DSH STORE 上架契约):`dsh` 字段下新增
10
+ `compatibility`(保留原 `bundle`),逐版本声明兼容矩阵——`dshReleases` 中
11
+ `0.1.5-rc.1` / `0.1.5-rc.2` / `0.1.6-alpha.2` 均为 `compatible`(三版本已在本机
12
+ 真实装载运行,插件正常加载、零错误);`node` 范围 `>=20`,与 `engines.node` 一致。
13
+ 未实测的版本不声明(扫描时按 `unknown` 处理)。
14
+
15
+ ### 其它
16
+
17
+ - `lib/index.js` 的 `VERSION` 常量同步提升为 `0.7.6`,与 `package.json` 一致。
18
+
5
19
  ## [0.7.5] - 2026-09-20
6
20
 
7
21
  ### 修复:DSH 0.1.2-alpha.4+ 已无 `session.events`,历史读取改用 `snapshotEvents()`
package/lib/index.js CHANGED
@@ -25,7 +25,7 @@ import { join } from "node:path";
25
25
  import { fileURLToPath } from "node:url";
26
26
 
27
27
  const NOTIFY_SCRIPT = fileURLToPath(new URL("./notify.ps1", import.meta.url));
28
- const VERSION = "0.7.5";
28
+ const VERSION = "0.7.6";
29
29
 
30
30
  // Convert a script path so powershell.exe can read it.
31
31
  // - On WSL: powershell.exe is a Windows process and can't read Linux paths
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-notify-windows",
3
- "version": "0.7.5",
3
+ "version": "0.7.6",
4
4
  "description": "DeepSeek Harness (DSH) 插件:任务完成 / 等待审批 / 等待回答时发送 Windows 系统桌面通知",
5
5
  "repository": {
6
6
  "type": "git",
@@ -36,6 +36,14 @@
36
36
  "dsh": {
37
37
  "bundle": {
38
38
  "patch": "./cordis.patch.yml"
39
+ },
40
+ "compatibility": {
41
+ "dshReleases": {
42
+ "0.1.5-rc.1": "compatible",
43
+ "0.1.5-rc.2": "compatible",
44
+ "0.1.6-alpha.2": "compatible"
45
+ },
46
+ "node": ">=20"
39
47
  }
40
48
  },
41
49
  "keywords": [