deepseek-harness-wallet 0.3.12 → 0.3.13

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,7 +2,11 @@
2
2
 
3
3
  All notable changes to this project are documented in this file.
4
4
 
5
- ## 0.3.12 - Unreleased
5
+ ## 0.3.13 - Unreleased
6
+
7
+ - 合并新版工作区选择修复与完整的 Harness 0.1.5-alpha.1 适配;0.3.12 因发布时间早于最后修复提交,保留为过渡版本。 / Include the final workspace-selection fix and complete Harness 0.1.5-alpha.1 adaptation; 0.3.12 remains a transitional release because it predates the final fix.
8
+
9
+ ## 0.3.12 - 2026-09-09
6
10
 
7
11
  - 修复新版宿主中钱包模型目录调用缺少 `remote.session` 注入而中断工作区/会话界面的问题。 / Declare the remote session dependency required by model-directory calls so workspace/session rendering does not fail on newer hosts.
8
12
  - 增加 DSH `0.1.5-alpha.1` 的精确兼容声明;健康检查只对清单中明确记录的版本显示兼容,未来版本保持“尚未验证”。 / Declare exact DSH `0.1.5-alpha.1` compatibility; health checks keep unverified future releases unknown instead of assuming every newer host is compatible.
package/README.md CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  > A local-first companion that keeps account status, per-conversation usage, completion reminders, official recharge, flexible layout, and host-gated session controls beside the DSH composer.
16
16
 
17
- > **Version:** v0.3.12 (unreleased).
17
+ > **Version:** v0.3.13 (unreleased).
18
18
 
19
19
  > If DeepSeek Harness Control Center helps you, please consider leaving a ⭐ Star. Thank you!
20
20
 
@@ -99,7 +99,7 @@ dsh plugin --profile web remove deepseek-harness-wallet
99
99
 
100
100
  ## Browser, desktop, and OS compatibility
101
101
 
102
- See [0.3.12 compatibility evidence](https://github.com/feibi-mochi/deepseek-harness-control-center/blob/main/docs/compatibility-0.3.12.md). The official 0.1.5-alpha.1 host does not provide this plugin’s permanent-delete capability, so that switch stays disabled; the old source integration patch is not a drop-in update.
102
+ See [0.3.13 compatibility evidence](https://github.com/feibi-mochi/deepseek-harness-control-center/blob/main/docs/compatibility-0.3.13.md). The official 0.1.5-alpha.1 host does not provide this plugin’s permanent-delete capability, so that switch stays disabled; the old source integration patch is not a drop-in update.
103
103
 
104
104
  The client contains no operating-system-specific feature branch; it checks the Web and host capabilities it needs. That makes the same code portable, but **portable code is not the same as real-device verification**:
105
105
 
package/index.js CHANGED
@@ -34,7 +34,7 @@ const TRANSPARENT_PROVIDER_PREFIX = 'vision-toolkit-'
34
34
  // DeepSeek's official paid-API bucket by the wrapper-provider alias control.
35
35
  const PLAN_PROVIDER_IDS = new Set(PLAN_ADAPTERS.map((adapter) => adapter.provider))
36
36
  const RECHARGE_URL = 'https://platform.deepseek.com/top_up'
37
- const PLUGIN_VERSION = '0.3.12'
37
+ const PLUGIN_VERSION = '0.3.13'
38
38
  const PRICING_SOURCE_URL = 'https://api-docs.deepseek.com/zh-cn/quick_start/pricing/'
39
39
  const PRICING_SYNC_INTERVAL_MS = 6 * 60 * 60_000
40
40
  const PRICING_SYNC_TIMEOUT_MS = 8_000