dsh-skill-browser 1.5.4 → 1.5.5
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/lib/client.js +2 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/lib/client.js
CHANGED
|
@@ -4,6 +4,8 @@ window.__ModuleLoader__.load({
|
|
|
4
4
|
var module = { exports: {} };
|
|
5
5
|
var exports = module.exports;
|
|
6
6
|
|
|
7
|
+
// v1.5.5(2026-09-06):版本号对齐修复——host 端 index.js 的 VERSION
|
|
8
|
+
// 常量此前停在 1.5.1 未随 package.json 同步,现统一为 1.5.5。
|
|
7
9
|
// v1.5.4(2026-09-05 用户要求):技能列表每页末尾追加的
|
|
8
10
|
// 「💡 悬浮球显隐设置」提示卡一并移除——每页末尾不再出现任何
|
|
9
11
|
// 非技能卡片,列表只展示技能本身。
|
package/lib/index.js
CHANGED
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
import { ZH } from "./zh.js";
|
|
16
16
|
|
|
17
17
|
var PREFIX = "/dsh-skill-browser";
|
|
18
|
-
var VERSION = "1.5.
|
|
18
|
+
var VERSION = "1.5.5";
|
|
19
19
|
var CACHE_TTL_MS = 30 * 1000;
|
|
20
20
|
var DIAG_FILE = join(homedir(), ".dsh", "data", "dsh-skill-browser", "diag.log");
|
|
21
21
|
var CONFIG_FILE = join(homedir(), ".dsh", "data", "dsh-skill-browser", "config.json");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-skill-browser",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.5",
|
|
4
4
|
"description": "DSH 技能浏览器:悬浮球面板浏览共享技能库(分类/中文简介/搜索/失效台账/全文查看),含 DSH 设置页悬浮球显隐开关与一键恢复默认位置按钮、技能库位置可配置(原生目录选择框)与技能失效台账自动登记(自动/人工分开显示);推荐插件位仅保留面板设置展开区一处。Skill library browser panel with categories, Chinese descriptions, configurable skill root with native directory chooser, one-click ball position reset and automatic skill-failure ledger.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|