@a9i5k4/dsh-auto-memory 0.1.22 → 0.1.23
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 +9 -4
- package/package.json +1 -1
package/lib/client.js
CHANGED
|
@@ -115,7 +115,7 @@ window.__ModuleLoader__.load({
|
|
|
115
115
|
kvAvail: '可用', kvUnavail: '不可用', kvDup: '项目笔记重复标题', kvDupCount: ' 个',
|
|
116
116
|
kvMem: '记忆文件', kvMemUser: '用户', kvMemNotes: '笔记', kvMemLog: '日志', kvMemMissing: '缺失',
|
|
117
117
|
kvWs: '当前工作区', kvWsUnknown: '(未取到)', kvApi: 'API 连通', unknown: '(未知)',
|
|
118
|
-
guideTitle: '欢迎使用 dsh-auto-memory
|
|
118
|
+
guideTitle: '欢迎使用 dsh-auto-memory', guideSub: '这个插件能干什么:',
|
|
119
119
|
gFeat1: '三层记忆自动注入与检索:用户级 / 项目笔记 / 每日日志,每轮对话自动读、自动写',
|
|
120
120
|
gFeat2: '每轮对话结束自动沉淀:修了什么 bug、做了哪些决策,自动按主题写进今日日志',
|
|
121
121
|
gFeat3: 'AI 时段问候与三级抽屉:打开「记忆」面板,AI 按时段向你汇报当天进展',
|
|
@@ -209,7 +209,7 @@ window.__ModuleLoader__.load({
|
|
|
209
209
|
kvAvail: 'available', kvUnavail: 'unavailable', kvDup: 'Duplicate note headings', kvDupCount: '',
|
|
210
210
|
kvMem: 'Memory files', kvMemUser: 'user', kvMemNotes: 'notes', kvMemLog: 'log', kvMemMissing: 'missing',
|
|
211
211
|
kvWs: 'Current workspace', kvWsUnknown: '(unknown)', kvApi: 'API probes', unknown: '(unknown)',
|
|
212
|
-
guideTitle: 'Welcome to dsh-auto-memory
|
|
212
|
+
guideTitle: 'Welcome to dsh-auto-memory', guideSub: 'What this plugin does:',
|
|
213
213
|
gFeat1: 'Three-layer memory with automatic injection & retrieval: user / project notes / daily logs',
|
|
214
214
|
gFeat2: 'Auto-consolidation after every turn: bugs fixed and decisions made are written into today\'s log automatically',
|
|
215
215
|
gFeat3: 'AI period greetings with three-level drawers: open the Memory panel for a period-by-period digest',
|
|
@@ -324,6 +324,11 @@ window.__ModuleLoader__.load({
|
|
|
324
324
|
|
|
325
325
|
// ───────────────────────── 更新弹窗 / 首次指导 ─────────────────────────
|
|
326
326
|
var CHANGELOG = {
|
|
327
|
+
'0.1.23': { zh: [
|
|
328
|
+
'修复:正式发布包首次欢迎文案仍显示“开发版”;发布转换与残留校验已加强,确保开发版和正式版身份完全隔离。',
|
|
329
|
+
], en: [
|
|
330
|
+
'Fix: the published first-run guide still showed a dev label; release conversion and residual checks now enforce complete dev/release identity isolation.',
|
|
331
|
+
] },
|
|
327
332
|
'0.1.22': { zh: [
|
|
328
333
|
'修复:更新说明可能被公告、欢迎或自动总结弹窗覆盖,导致升级后没有看到 changelog。',
|
|
329
334
|
'优化:更新说明现在优先展示并排队其他弹窗,只有点击“知道了”后才标记为已读;未确认时重启仍会再次显示。',
|
|
@@ -1746,7 +1751,7 @@ window.__ModuleLoader__.load({
|
|
|
1746
1751
|
function registerSurfaces() {
|
|
1747
1752
|
try {
|
|
1748
1753
|
surfaceDisposers.push(slots.inject('sidebar.footer.action', function () {
|
|
1749
|
-
return slots.register({ name: 'sidebar.footer.action', id: 'auto-memory', order: 5, label: t('memory') }, function () { return h(SidebarButton) })
|
|
1754
|
+
return slots.register({ name: 'sidebar.footer.action', id: 'auto-memory', order: 5, label: t('memory') + '' }, function () { return h(SidebarButton) })
|
|
1750
1755
|
}))
|
|
1751
1756
|
surfaceDisposers.push(slots.inject('shell.overlay', function () {
|
|
1752
1757
|
return slots.register({ name: 'shell.overlay', id: 'auto-memory', order: 5 }, function () { return h(MemoryPanel) })
|
|
@@ -1755,7 +1760,7 @@ window.__ModuleLoader__.load({
|
|
|
1755
1760
|
return slots.register({ name: 'shell.overlay', id: 'auto-memory-dialogs', order: 6 }, function () { return h(DialogHost) })
|
|
1756
1761
|
}))
|
|
1757
1762
|
surfaceDisposers.push(slots.inject('settings.section', function () {
|
|
1758
|
-
return slots.register({ name: 'settings.section', id: 'auto-memory', order: 25, label: t('autoMemory') }, function (props) { return h(SettingsPage, { close: props && props.close }) })
|
|
1763
|
+
return slots.register({ name: 'settings.section', id: 'auto-memory', order: 25, label: t('autoMemory') + '' }, function (props) { return h(SettingsPage, { close: props && props.close }) })
|
|
1759
1764
|
}))
|
|
1760
1765
|
} catch (e) {
|
|
1761
1766
|
console.warn('[dsh-auto-memory] slot registration failed', e)
|
package/package.json
CHANGED