dsh-file-activity 0.5.12 → 0.5.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 +6 -0
- package/lib/client.js +4 -0
- package/lib/parts/apply.part.js +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
本文件记录 dsh-file-activity 的所有版本变更。格式遵循 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.1.0/),版本号遵循 [语义化版本](https://semver.org/lang/zh-CN/)。
|
|
4
4
|
|
|
5
|
+
## [0.5.13] - 2026-09-25
|
|
6
|
+
|
|
7
|
+
### 变更
|
|
8
|
+
|
|
9
|
+
- fix: 适配宿主 0.1.7-rc.2 的事件名与席位契约,修正失效文档断言
|
|
10
|
+
|
|
5
11
|
## [0.5.12] - 2026-09-18
|
|
6
12
|
|
|
7
13
|
### 变更
|
package/lib/client.js
CHANGED
|
@@ -2129,6 +2129,10 @@ function registerTabType(ctx) {
|
|
|
2129
2129
|
// place (host GuideBody → actions.openTab(kind, { replaceTab: true })).
|
|
2130
2130
|
guide: [
|
|
2131
2131
|
{
|
|
2132
|
+
// Required by the host guide-entry contract: without it the host hands
|
|
2133
|
+
// `entryId: undefined` to `sidebar.right.tab.guide.entry` and the
|
|
2134
|
+
// per-type duplicate-id check silently stops working.
|
|
2135
|
+
id: TAB_ID,
|
|
2132
2136
|
order: 20,
|
|
2133
2137
|
title: () => strings.title(),
|
|
2134
2138
|
description: () => strings.guideDescription(),
|
package/lib/parts/apply.part.js
CHANGED
|
@@ -30,6 +30,10 @@ function registerTabType(ctx) {
|
|
|
30
30
|
// place (host GuideBody → actions.openTab(kind, { replaceTab: true })).
|
|
31
31
|
guide: [
|
|
32
32
|
{
|
|
33
|
+
// Required by the host guide-entry contract: without it the host hands
|
|
34
|
+
// `entryId: undefined` to `sidebar.right.tab.guide.entry` and the
|
|
35
|
+
// per-type duplicate-id check silently stops working.
|
|
36
|
+
id: TAB_ID,
|
|
33
37
|
order: 20,
|
|
34
38
|
title: () => strings.title(),
|
|
35
39
|
description: () => strings.guideDescription(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-file-activity",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.13",
|
|
4
4
|
"description": "DSH 侧边栏文件活动插件:按 LRU 记录文件读取/新增/修改事件(最近访问),按绝对路径树形统计(文件统计),点击文件浮窗预览(代码高亮/Markdown/图片/PDF)。DSH web plugin: file activity tracker — LRU recent-access list plus per-file read/create/modify counts in a folder tree, with floating preview.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|