dsh-vscode-mode 0.5.0 → 0.5.1
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 +8 -2
- package/lib/client.js +518 -71
- package/lib/client.js.map +1 -1
- package/lib/index.js +10 -3
- package/lib/index.js.map +1 -1
- package/package.json +7 -7
- package/src/client/ai/inlineProvider.ts +42 -1
- package/src/client/index.ts +47 -45
- package/src/client/monaco/lsp/index.ts +33 -3
- package/src/client/monaco/lsp/lspClient.ts +3 -1
- package/src/client/monaco/lsp/providers.ts +32 -0
- package/src/client/officialSidebar.ts +67 -3
- package/src/client/sessionScope.ts +183 -0
- package/src/client/snippets/provider.ts +26 -4
- package/src/client/tabActions.ts +30 -5
- package/src/client/ui/AiSettings.ts +8 -0
- package/src/client/ui/EditorView.ts +51 -13
- package/src/compat.ts +1 -1
- package/src/dshVersion.ts +8 -1
- package/src/shared/ai.ts +25 -0
package/README.md
CHANGED
|
@@ -347,13 +347,13 @@ TortoiseSVN(`TortoiseProc.exe`)仅作 Windows 过渡增强:自研能力覆
|
|
|
347
347
|
|
|
348
348
|
```bash
|
|
349
349
|
# ① Git 安装(clone + prepare 构建;推荐打固定 tag)
|
|
350
|
-
dsh plugin --profile web add github:Lenonss/DSH_VsCodeMode#v0.5.
|
|
350
|
+
dsh plugin --profile web add github:Lenonss/DSH_VsCodeMode#v0.5.1
|
|
351
351
|
|
|
352
352
|
# ② npm 注册表(发布到 npm 后)
|
|
353
353
|
dsh plugin --profile web add dsh-vscode-mode
|
|
354
354
|
|
|
355
355
|
# ③ GitHub Release tgz 直装
|
|
356
|
-
dsh plugin --profile web add https://github.com/Lenonss/DSH_VsCodeMode/releases/download/v0.5.
|
|
356
|
+
dsh plugin --profile web add https://github.com/Lenonss/DSH_VsCodeMode/releases/download/v0.5.1/dsh-vscode-mode-0.5.1.tgz
|
|
357
357
|
```
|
|
358
358
|
|
|
359
359
|
> `dsh plugin ...` 是 pnpm 转发器:git 安装会克隆仓库、执行该包 `prepare` 脚本
|
|
@@ -640,6 +640,12 @@ Keep All / Undo All 却是亮的。修复:单文件 Keep / Undo 覆盖冲突
|
|
|
640
640
|
完整变更见 [GitHub Releases](https://github.com/Lenonss/DSH_VsCodeMode/releases)。
|
|
641
641
|
近期关键版本:
|
|
642
642
|
|
|
643
|
+
- **v0.5.1**:**适配 DSH 0.1.6-alpha.2**——会话作用域三级取值链(`uiSession.current`
|
|
644
|
+
优先,兼容旧版 `sessions.list.current`;修复官方移除 `current` 后 Monaco 预热 / LSP
|
|
645
|
+
同步 / 编辑 Tab 恢复 / 文件链接静默失效);Office 与官方「不可预览」后缀让位官方
|
|
646
|
+
查看器;页签路径统一为工作区相对路径(差异栏跳转与资源管理器显示形态一致,并修复
|
|
647
|
+
连带的「在资源管理器视图中显示」失效与重复页签);插件重载时注销 Monaco provider
|
|
648
|
+
防止重复注册;peer 依赖清理与预发布区间修正。
|
|
643
649
|
- **v0.5.0**:**SVN 集成**——侧栏变更面板与状态徽标、自研日志弹窗(过滤 / 排序 /
|
|
644
650
|
多选比较 / 区间 / Stop on copy / Include merged revisions / Statistics)、
|
|
645
651
|
并排差异(基线 / 版本间 / 与工作副本)、诊断日志查看器。
|