dsh-taskboard 0.6.5 → 0.6.6
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 +13 -1
- package/lib/client.js +17 -6
- package/lib/host/tools.js +2 -2
- package/lib/host/tools.js.map +1 -1
- package/package.json +1 -1
- package/src/client/board-mount.tsx +4 -0
- package/src/client/styles.ts +13 -2
- package/src/client/window-inset.ts +38 -0
- package/src/host/tools.ts +6 -2
- package/src/shared/version.ts +1 -1
package/README.md
CHANGED
|
@@ -213,19 +213,31 @@ pnpm 的构建授权——按报错把 key 加进 profile 的 `pnpm-workspace.ya
|
|
|
213
213
|
**和 dsh-better-sidebar 并存,看板顶栏右侧按钮被遮住?**
|
|
214
214
|
0.6.5 起已自动避让:better-sidebar 收起时其右上角常驻按钮簇(展开底部面板 / 展开侧边栏)占据视口右上 10~70px,看板激活时会为工具条右侧预留这块区域(镜像 better-sidebar 对 DSH 原生会话头的避让契约),任何窗口宽度都不再重叠;未安装 better-sidebar 或其侧栏展开时无任何影响([#19](https://github.com/cloader/dsh-taskboard/issues/19))。
|
|
215
215
|
|
|
216
|
+
**Windows 版 DSH Desktop 的窗口按钮与看板顶栏重叠?**
|
|
217
|
+
0.6.6 的修复会根据看板距窗口顶部的实际位置,为原生窗口控制按钮预留顶部空间;已有独立标题栏时保持原间距,窗口缩放和布局变化时重新计算。该问题已通过 Windows 实机验收([#20 评论](https://github.com/cloader/dsh-taskboard/issues/20#issuecomment-5597498727))。
|
|
218
|
+
|
|
219
|
+
**编辑任务时 DoD 勾选框占位过多,把文本输入框挤出去?**
|
|
220
|
+
0.6.6 已将 checkbox 排除在弹窗的整行输入框样式之外,恢复勾选框的 15px 宽度及文本输入区域([#20](https://github.com/cloader/dsh-taskboard/issues/20))。
|
|
221
|
+
|
|
216
222
|
## 开发
|
|
217
223
|
|
|
218
224
|
```bash
|
|
219
225
|
git clone https://github.com/cloader/dsh-taskboard.git
|
|
220
226
|
cd dsh-taskboard
|
|
221
227
|
npm install && npm run build # host ESM + client CJS 双构建
|
|
222
|
-
npm test # vitest
|
|
228
|
+
npm test # vitest 全量(含真实 git 镜像集成测试)
|
|
223
229
|
node tests/manual-git-e2e.mjs # 真 git 端到端手测(worktree 全链路 + 续跑 + diff 查看器)
|
|
224
230
|
node scripts/screenshot.mjs # 重新生成 img/ 截图(需本机 Edge)
|
|
225
231
|
```
|
|
226
232
|
|
|
227
233
|
## 升级日志
|
|
228
234
|
|
|
235
|
+
### 0.6.6
|
|
236
|
+
|
|
237
|
+
- **修复 DoD 编辑行布局([#20](https://github.com/cloader/dsh-taskboard/issues/20))**:checkbox 不再套用整行输入框的宽度、内边距和边框样式,避免文本输入框被挤出。
|
|
238
|
+
- **修复 Windows DSH Desktop 窗口按钮与看板顶栏重叠([#20 评论](https://github.com/cloader/dsh-taskboard/issues/20#issuecomment-5597498727))**:根据看板实际位置动态预留顶部空间,兼顾工具条换行和已有独立标题栏的布局;普通 Web 与 macOS 不启用此避让。已通过 Windows 实机验收。
|
|
239
|
+
- **修复 agent 无法取得 DoD 条目 id([PR #21](https://github.com/cloader/dsh-taskboard/pull/21))**:`taskboard_get` 的验收清单文本现在逐项输出序号和 `id`,agent 可直接将其作为 `taskboard_checklist check/uncheck` 的 `itemId`,无需猜测;不改变数据模型或账本。
|
|
240
|
+
|
|
229
241
|
### 0.6.5
|
|
230
242
|
|
|
231
243
|
- **修复:与 dsh-better-sidebar 并存时看板顶栏右侧按钮被其右上角常驻按钮簇遮挡([#19](https://github.com/cloader/dsh-taskboard/issues/19))**:看板激活且 better-sidebar 右栏收起时,工具条右侧预留 62px 让出其「展开底部面板 / 展开侧边栏」按钮簇所占的视口右上角(10~70px),作用于全部换行行,任何窗口宽度不再重叠;未装 better-sidebar 或其右栏展开时规则零生效,纯 CSS 修复
|