dsh-plugin-shop 0.7.3-beta.2 → 0.7.4
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 +4 -4
- package/lib/client.js +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ dsh plugins, install one with a single confirmation, and manage what you have, f
|
|
|
10
10
|
[](https://LivXue.github.io/dsh-plugin-shop/v1/index.json)
|
|
11
11
|
[](https://github.com/LivXue/dsh-plugin-shop/blob/main/LICENSE)
|
|
12
12
|
[](https://github.com/LivXue/dsh-plugin-shop/actions/workflows/plugin.yml)
|
|
13
|
-
[](https://github.com/LivXue/dsh-plugin-shop/actions/workflows/daily.yml)
|
|
14
14
|
|
|
15
15
|
English | [中文](https://github.com/LivXue/dsh-plugin-shop/blob/main/packages/dsh-plugin-shop/docs/README.zh.md)
|
|
16
16
|
|
|
@@ -35,9 +35,9 @@ install them once with `npm install -g @deepseek-ai/dsh pnpm` and verify with
|
|
|
35
35
|
# holds back very recent releases, so a bare `add dsh-plugin-shop` can hand
|
|
36
36
|
# you an older version for a while. Pin the current release — refresh it
|
|
37
37
|
# with `npm view dsh-plugin-shop version`.
|
|
38
|
-
dsh plugin --profile web add dsh-plugin-shop@0.7.
|
|
38
|
+
dsh plugin --profile web add dsh-plugin-shop@0.7.4
|
|
39
39
|
# or straight through npx, nothing installed:
|
|
40
|
-
npx -y @deepseek-ai/dsh plugin --profile web add dsh-plugin-shop@0.7.
|
|
40
|
+
npx -y @deepseek-ai/dsh plugin --profile web add dsh-plugin-shop@0.7.4
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
Replace `web` with your profile if you use another one. Then restart `dsh` once — a
|
|
@@ -67,7 +67,7 @@ ls -1 "${DSH_HOME:-$HOME/.dsh}/profiles" | grep -v '^node_modules$'
|
|
|
67
67
|
cooldown, and deterministic installs are the point of the agent path.
|
|
68
68
|
|
|
69
69
|
```sh
|
|
70
|
-
dsh plugin --profile <profile> add dsh-plugin-shop@0.7.
|
|
70
|
+
dsh plugin --profile <profile> add dsh-plugin-shop@0.7.4
|
|
71
71
|
```
|
|
72
72
|
|
|
73
73
|
**3. Verify — do not skip this.** A zero exit from step 2 means pnpm resolved the
|
package/lib/client.js
CHANGED
|
@@ -5599,6 +5599,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
5599
5599
|
version: entry.version,
|
|
5600
5600
|
tier: entry.tier,
|
|
5601
5601
|
missing,
|
|
5602
|
+
missingStated: true,
|
|
5602
5603
|
t,
|
|
5603
5604
|
install,
|
|
5604
5605
|
installStatus,
|
|
@@ -5611,6 +5612,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
5611
5612
|
tier: entry.tier,
|
|
5612
5613
|
variant: "update",
|
|
5613
5614
|
missing,
|
|
5615
|
+
missingStated: true,
|
|
5614
5616
|
t,
|
|
5615
5617
|
install,
|
|
5616
5618
|
installStatus,
|
|
@@ -5648,7 +5650,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
5648
5650
|
* failure detail, rejection detail — driven by `useInstall`. Shared by the
|
|
5649
5651
|
* catalog cards (`variant: 'install'`) and the outdated rows' update button
|
|
5650
5652
|
* (`variant: 'update'`, which drives the same install flow for `name@latest`). */
|
|
5651
|
-
function InstallPanel({ name, version, tier, missing, variant = "install", t, install, installStatus, restart, restartSupported }) {
|
|
5653
|
+
function InstallPanel({ name, version, tier, missing, missingStated = false, variant = "install", t, install, installStatus, restart, restartSupported }) {
|
|
5652
5654
|
const [gateOpen, setGateOpen] = (0, react.useState)(false);
|
|
5653
5655
|
const { view, start } = useInstall(install, installStatus);
|
|
5654
5656
|
if (view.kind === "running") return /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
|
|
@@ -5724,7 +5726,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
5724
5726
|
className: _dsh_plugin_shop_css_e3675a89_default.gateBody,
|
|
5725
5727
|
children: t("acknowledgementBody")
|
|
5726
5728
|
}),
|
|
5727
|
-
missing.length > 0 && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("p", {
|
|
5729
|
+
missing.length > 0 && !missingStated && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("p", {
|
|
5728
5730
|
className: _dsh_plugin_shop_css_e3675a89_default.gateWarning,
|
|
5729
5731
|
"data-shop-incompatible-warning": true,
|
|
5730
5732
|
children: t("incompatibleDetail", { modules: missing.join(", ") })
|
package/package.json
CHANGED