dsh-archived-chats 1.0.6 → 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 +1 -1
- package/README.zh-CN.md +1 -1
- package/package.json +8 -3
package/README.md
CHANGED
|
@@ -120,7 +120,7 @@ See also [Support](SUPPORT.md), [Security](SECURITY.md), [Contributing](CONTRIBU
|
|
|
120
120
|
|
|
121
121
|
## Project status
|
|
122
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. Maintenance is performed as availability permits, so no fixed response or release schedule is promised.
|
|
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.
|
|
124
124
|
|
|
125
125
|
## Development
|
|
126
126
|
|
package/README.zh-CN.md
CHANGED
|
@@ -120,7 +120,7 @@ dsh plugin --profile web update dsh-archived-chats
|
|
|
120
120
|
|
|
121
121
|
## 项目状态
|
|
122
122
|
|
|
123
|
-
Session Archive 目前处于积极维护状态。最新 npm 稳定版会接收缺陷修复与安全更新;报告问题前请先从旧版本升级。欢迎可复现的缺陷报告和目标集中的 Pull Request。项目按维护者的可用时间推进,不承诺固定响应或发布时间。
|
|
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#社区需求与认领)。项目按维护者的可用时间推进,不承诺固定响应或发布时间。
|
|
124
124
|
|
|
125
125
|
## 开发
|
|
126
126
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-archived-chats",
|
|
3
|
-
"version": "1.0.
|
|
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",
|
|
@@ -85,7 +85,6 @@
|
|
|
85
85
|
},
|
|
86
86
|
"client": {
|
|
87
87
|
"inject": [
|
|
88
|
-
"@deepseek-ai/dsh-client-runtime",
|
|
89
88
|
"@deepseek-ai/dsh-client-locale"
|
|
90
89
|
],
|
|
91
90
|
"platform": "web",
|
|
@@ -94,14 +93,20 @@
|
|
|
94
93
|
},
|
|
95
94
|
"peerDependencies": {
|
|
96
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",
|
|
97
97
|
"react": "^18.2.0"
|
|
98
98
|
},
|
|
99
|
+
"peerDependenciesMeta": {
|
|
100
|
+
"@deepseek-ai/dsh-session": {
|
|
101
|
+
"optional": true
|
|
102
|
+
}
|
|
103
|
+
},
|
|
99
104
|
"dependencies": {
|
|
100
|
-
"@deepseek-ai/dsh-session": "^0.1.0-rc.7",
|
|
101
105
|
"fflate": "^0.8.3",
|
|
102
106
|
"zip-stream": "^7.0.5"
|
|
103
107
|
},
|
|
104
108
|
"devDependencies": {
|
|
109
|
+
"@deepseek-ai/dsh-session": "0.1.0-rc.7",
|
|
105
110
|
"typescript": "^5.9.3"
|
|
106
111
|
}
|
|
107
112
|
}
|