dsh-context 0.41.1 → 0.41.2
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/lib/client.js +3 -3
- package/package.json +14 -1
package/README.md
CHANGED
|
@@ -140,7 +140,7 @@ In **Settings → Plugins → Plugin configuration**, the **Context** card holds
|
|
|
140
140
|
## Good to know
|
|
141
141
|
|
|
142
142
|
- **Estimates vs actuals** — category figures use dsh's own fixed-density heuristic (the same one as its built-in token meter); the pinned trend details and Token/Timing rings show provider-reported actuals next to them.
|
|
143
|
-
- **Compatibility** — works on `@deepseek-ai/dsh` **0.1.1-rc2+** and **0.1.2-alpha2+**.
|
|
143
|
+
- **Compatibility** — works on `@deepseek-ai/dsh` **0.1.1-rc2+** and **0.1.2-alpha2+**. The per-release matrix and how it is verified: [docs/compatibility.md](docs/compatibility.md).
|
|
144
144
|
- **I18n** — UI in English and 简体中文.
|
|
145
145
|
|
|
146
146
|
## Like it?
|
package/lib/client.js
CHANGED
|
@@ -5122,7 +5122,7 @@ window.__ModuleLoader__.load({
|
|
|
5122
5122
|
return function PluginInfo() {
|
|
5123
5123
|
const [latest, setLatest] = React.useState(null);
|
|
5124
5124
|
React.useEffect(() => {
|
|
5125
|
-
if ("0.41.
|
|
5125
|
+
if ("0.41.2".includes("-dev")) return;
|
|
5126
5126
|
let on = true;
|
|
5127
5127
|
fetchLatestVersion().then((v) => {
|
|
5128
5128
|
if (on && v) setLatest(v);
|
|
@@ -5131,8 +5131,8 @@ window.__ModuleLoader__.load({
|
|
|
5131
5131
|
on = false;
|
|
5132
5132
|
};
|
|
5133
5133
|
}, []);
|
|
5134
|
-
const update = latest !== null && isNewerVersion(latest, "0.41.
|
|
5135
|
-
const nameText = "dsh-context (v0.41.
|
|
5134
|
+
const update = latest !== null && isNewerVersion(latest, "0.41.2") ? latest : null;
|
|
5135
|
+
const nameText = "dsh-context (v0.41.2)";
|
|
5136
5136
|
const nameValue = [nameText];
|
|
5137
5137
|
if (update) nameValue.push(/* @__PURE__ */ React.createElement("span", {
|
|
5138
5138
|
key: "update",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-context",
|
|
3
|
-
"version": "0.41.
|
|
3
|
+
"version": "0.41.2",
|
|
4
4
|
"description": "A DeepSeek Harness plugin for context insight and management, with context dashboard and context command, for understanding how the context is made of, and how it evolves.",
|
|
5
5
|
"author": "bowenliang123",
|
|
6
6
|
"repository": {
|
|
@@ -12,6 +12,9 @@
|
|
|
12
12
|
"url": "https://github.com/bowenliang123/dsh-context/issues"
|
|
13
13
|
},
|
|
14
14
|
"type": "module",
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": "^22.19.0 || >=24.0.0"
|
|
17
|
+
},
|
|
15
18
|
"main": "lib/index.js",
|
|
16
19
|
"types": "lib/index.d.ts",
|
|
17
20
|
"exports": {
|
|
@@ -56,6 +59,16 @@
|
|
|
56
59
|
"@deepseek-ai/dsh-client-ui-settings"
|
|
57
60
|
],
|
|
58
61
|
"platform": "web"
|
|
62
|
+
},
|
|
63
|
+
"compatibility": {
|
|
64
|
+
"dshReleases": {
|
|
65
|
+
"0.1.1-rc.2": "compatible",
|
|
66
|
+
"0.1.2-alpha.2": "compatible",
|
|
67
|
+
"0.1.2-alpha.3": "compatible",
|
|
68
|
+
"0.1.2-alpha.4": "compatible",
|
|
69
|
+
"0.1.2-alpha.5": "compatible",
|
|
70
|
+
"0.1.2-rc.1": "compatible"
|
|
71
|
+
}
|
|
59
72
|
}
|
|
60
73
|
},
|
|
61
74
|
"keywords": [
|