dsh-archived-chats 1.0.5 → 1.0.7

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 CHANGED
@@ -116,7 +116,11 @@ The eight fixed screenshots below come from an isolated Simplified Chinese light
116
116
  | Architecture | [Maintainer architecture](docs/ARCHITECTURE.en.md) | [维护者架构](docs/ARCHITECTURE.md) |
117
117
  | Release history | [GitHub Releases](https://github.com/Ultronen/dsh-archived-chats/releases) | [GitHub Releases](https://github.com/Ultronen/dsh-archived-chats/releases) |
118
118
 
119
- See also [Security](SECURITY.md), [Contributing](CONTRIBUTING.md), and [Discussions](https://github.com/Ultronen/dsh-archived-chats/discussions).
119
+ See also [Support](SUPPORT.md), [Security](SECURITY.md), [Contributing](CONTRIBUTING.md), [Code of Conduct](CODE_OF_CONDUCT.md), and [Discussions](https://github.com/Ultronen/dsh-archived-chats/discussions).
120
+
121
+ ## Project status
122
+
123
+ Session Archive is actively maintained. The latest stable npm release receives fixes and security updates; older releases should be upgraded before reporting a problem. Reproducible bug reports and focused pull requests are welcome. Accepted community tasks are marked [`help wanted`](https://github.com/Ultronen/dsh-archived-chats/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22); read the [claim workflow](CONTRIBUTING.md#community-proposals-and-claims) before starting substantial work. Maintenance is performed as availability permits, so no fixed response or release schedule is promised.
120
124
 
121
125
  ## Development
122
126
 
package/README.zh-CN.md CHANGED
@@ -116,7 +116,11 @@ dsh plugin --profile web update dsh-archived-chats
116
116
  | 架构说明 | [Maintainer architecture](docs/ARCHITECTURE.en.md) | [维护者架构](docs/ARCHITECTURE.md) |
117
117
  | 版本历史 | [GitHub Releases](https://github.com/Ultronen/dsh-archived-chats/releases) | [GitHub Releases](https://github.com/Ultronen/dsh-archived-chats/releases) |
118
118
 
119
- 另见 [安全说明](SECURITY.md)、[贡献指南](CONTRIBUTING.md)和[问题交流](https://github.com/Ultronen/dsh-archived-chats/discussions)。
119
+ 另见 [支持说明](SUPPORT.md)、[安全说明](SECURITY.md)、[贡献指南](CONTRIBUTING.md)、[行为准则](CODE_OF_CONDUCT.md)和[问题交流](https://github.com/Ultronen/dsh-archived-chats/discussions)。
120
+
121
+ ## 项目状态
122
+
123
+ Session Archive 目前处于积极维护状态。最新 npm 稳定版会接收缺陷修复与安全更新;报告问题前请先从旧版本升级。欢迎可复现的缺陷报告和目标集中的 Pull Request。已开放认领的社区任务会标记为 [`help wanted`](https://github.com/Ultronen/dsh-archived-chats/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22);开始较大改动前,请先阅读[需求认领流程](CONTRIBUTING.md#社区需求与认领)。项目按维护者的可用时间推进,不承诺固定响应或发布时间。
120
124
 
121
125
  ## 开发
122
126
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-archived-chats",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "DeepSeek Harness 会话档案:按工作区浏览和全文搜索归档聊天,原生只读预览对话、工具活动和已存储图片,管理标签备注与 ZIP 备份恢复;保留历史版本并恢复为副本,提供可撤销回收站、空间分账、保留策略和来源与分支。所有数据留在本机。 Session Archive for DeepSeek Harness: browse and full-text search archived chats; natively preview conversations, tool activity, and stored images read-only; manage tags, notes, and ZIP backup restore; retain local History with restore-as-copy, an undoable Recycle Bin, storage accounting, retention policies, and Origins & Branches. All data stays local.",
5
5
  "license": "MIT",
6
6
  "author": "Ultronen",
@@ -77,12 +77,14 @@
77
77
  "cordis.patch.yml"
78
78
  ],
79
79
  "dsh": {
80
+ "engines": {
81
+ "dsh": ">=0.1.0-rc.7"
82
+ },
80
83
  "bundle": {
81
84
  "patch": "./cordis.patch.yml"
82
85
  },
83
86
  "client": {
84
87
  "inject": [
85
- "@deepseek-ai/dsh-client-runtime",
86
88
  "@deepseek-ai/dsh-client-locale"
87
89
  ],
88
90
  "platform": "web",
@@ -91,14 +93,20 @@
91
93
  },
92
94
  "peerDependencies": {
93
95
  "@deepseek-ai/cordis": "^4.0.1",
96
+ "@deepseek-ai/dsh-session": ">=0.1.0-rc.7 <0.1.1-0 || >=0.1.1-rc.1 <0.1.2-0 || >=0.1.2-alpha.1 <0.2.0-0",
94
97
  "react": "^18.2.0"
95
98
  },
99
+ "peerDependenciesMeta": {
100
+ "@deepseek-ai/dsh-session": {
101
+ "optional": true
102
+ }
103
+ },
96
104
  "dependencies": {
97
- "@deepseek-ai/dsh-session": "^0.1.0-rc.7",
98
105
  "fflate": "^0.8.3",
99
106
  "zip-stream": "^7.0.5"
100
107
  },
101
108
  "devDependencies": {
109
+ "@deepseek-ai/dsh-session": "0.1.0-rc.7",
102
110
  "typescript": "^5.9.3"
103
111
  }
104
112
  }