Vanessa
|
5403bb4eb4
|
🎨 https://github.com/siyuan-note/siyuan/issues/16196
|
2025-10-27 19:53:03 +08:00 |
|
Vanessa
|
f89ef1b9c5
|
🎨 https://github.com/siyuan-note/siyuan/pull/15824
|
2025-10-25 21:14:03 +08:00 |
|
Vanessa
|
7e1306cab9
|
🎨 https://github.com/siyuan-note/siyuan/issues/16192
|
2025-10-24 10:34:32 +08:00 |
|
Vanessa
|
e551cb4a4c
|
🎨 https://github.com/siyuan-note/siyuan/issues/16113
|
2025-10-22 18:07:51 +08:00 |
|
Vanessa
|
635f8b3bf5
|
🎨 https://github.com/siyuan-note/siyuan/issues/16100
|
2025-10-22 10:03:42 +08:00 |
|
Vanessa
|
e775853470
|
🎨 https://github.com/siyuan-note/siyuan/issues/16100
|
2025-10-22 09:49:21 +08:00 |
|
Daniel
|
894049e97a
|
🎨 Support calling system printing on HarmonyOS https://github.com/siyuan-note/siyuan/issues/16164
Signed-off-by: Daniel <845765@qq.com>
|
2025-10-20 21:39:42 +08:00 |
|
Daniel
|
b4e10e5704
|
🎨 https://github.com/siyuan-note/siyuan/issues/16149 https://github.com/siyuan-note/siyuan/issues/16121
Signed-off-by: Daniel <845765@qq.com>
|
2025-10-19 09:57:41 +08:00 |
|
Jeffrey Chen
|
067db0791f
|
🎨 Fix focus issues on Windows after dialog interactions (#16073)
fix https://github.com/siyuan-note/siyuan/issues/16071
|
2025-10-18 10:43:29 +08:00 |
|
Vanessa
|
cee183966b
|
🎨 https://github.com/siyuan-note/siyuan/issues/16087
|
2025-10-16 17:56:23 +08:00 |
|
Vanessa
|
214ceb37b1
|
🎨 https://github.com/siyuan-note/siyuan/pull/15814
|
2025-10-15 20:32:13 +08:00 |
|
Achuan-2
|
7545c2517f
|
Improve the outline panel (#15814)
* ✨ 实现大纲持久化
- 添加折叠状态变化的实时保存功能
- 在文档更新时恢复折叠状态
- 保存拖拽前的折叠状态并在拖拽后恢复
- 更新本地存储结构以支持折叠状态
* 🎨 clean code
* ✨ 在`data/storage`文件夹下创建`outline/${docID}.json`文件,存储标题outline展开信息
* ✨ alt click折叠/展开统计标题
* ✨添加层级控制功能
- 新增层级控制滑条,允许用户展开指定层级
* 🌐 添加多语言支持的展开层级功能
* ✨ f添加层级重置显示功能
- 新增 resetLevelDisplay 方法以重置层级显示状态
- 更新层级控制的初始化逻辑,默认不显示层级
- 在文档切换时重置层级显示状态
* ✨优化层级控制功能
- 添加用户主动层级控制标记
- 修改层级显示重置逻辑,仅在非用户操作时重置
- 更新层级控制滑条的点击事件处理
* ♻️ 重构大纲存储逻辑
- 合并大纲存储为单一文件 outline.json
* ♻️ outline.json 单行存储
* ♻️ outline.json参考recent-doc.json,只存储前1000个文档信息,每次新增信息会把数据放在最前面
* ♻️单行存储json
* ♻️ 增加outline.json存储限制至2000个
* ✨ 新增`保持当前标题展开`按钮,`保持全部展开`改为`全部展开`按钮
* ✨ 保持当前标题展开优化
- 超过两级折叠,也能都展开
- 如果父节点折叠,展开时自动折叠兄弟节点,只展开当前节点路径,如果父节点是展开状态,则不影响兄弟节点折叠状态
* 🔥 移除层级文本
* ✨ 右键点击toggle时展开所有子标题
* ✨ 右键click点击折叠图标,会折叠/展开所有子标题
* ✨ 大纲支持筛选功能
* ✨ feat(大纲): 优化筛选功能以显示所有子标题
- 添加 showAllDescendants 函数以显示所有子标题
- 修改 processUL 函数以在父标题命中时显示所有子标题
- 确保未命中的子标题隐藏
* ✨ 优化大纲筛选
- ✅如果标题命中筛选,这个标题的所有父标题展开,以显示出这个标题位置
- ✅如果父标题命中筛选,子项都没有命中筛选,则折叠全部子项(依然可以展开显示)
- ✅如果父标题命中筛选,子项也有命中筛选,则展开命中的子项,其他无关子项隐藏
* 💄 展开层级改为按钮,原先的圆点样式碍眼
* 💄 展开层级改为按钮,原先的圆点样式碍眼
* 💄 style(菜单): 优化展开层级菜单的样式和位置
- 添加图标以增强可视化
- 调整菜单弹出位置以改善用户体验
* ♻️ refactor(大纲): 优化标题级别获取逻辑
- 调整展开到指定层级的逻辑,使用标题级别进行判断
* 🎨
* ✨ feat(大纲): 添加右键菜单功能
- 实现右键点击标题时显示上下文菜单
- 增加标题升级、降级、插入、删除等操作
- 基于标题级别展开/折叠同级标题
* ✨ feat(大纲): 添加子标题功能
- 在右键菜单中添加“添加子标题”选项
- 实现子标题的添加逻辑,支持最大级别为H6
- 使用当前标题作为父标题,插入新子标题
* ✨ feat(大纲): "添加子标题"确保父标题展开状态
* ✨ feat(大纲): 使用expandIds方式保存父标题展开状态
- 确保父标题保持展开状态
- 保存展开状态到持久化存储
- 移除冗余的状态保存逻辑
* ✨ feat(大纲): 调整右键菜单顺序,将“全部折叠”功能移至“全部展开”之后
* 🌐 i18n optimization
|
2025-10-15 10:01:47 +08:00 |
|
Vanessa
|
0211e04c2b
|
🎨 https://github.com/siyuan-note/siyuan/issues/16087
|
2025-10-15 09:13:03 +08:00 |
|
Vanessa
|
29bd68b802
|
🚨
|
2025-10-14 11:15:38 +08:00 |
|
Daniel
|
8bc42cd121
|
🐛 https://github.com/siyuan-note/siyuan/issues/15998
Signed-off-by: Daniel <845765@qq.com>
|
2025-10-14 01:17:59 +08:00 |
|
Vanessa
|
bd6cf65266
|
🎨 https://github.com/siyuan-note/siyuan/issues/15998
|
2025-10-13 22:50:55 +08:00 |
|
Vanessa
|
370d841b61
|
🎨 https://github.com/siyuan-note/siyuan/issues/16024
|
2025-10-13 11:32:18 +08:00 |
|
Vanessa
|
a1f275e3c3
|
🎨 https://github.com/siyuan-note/siyuan/pull/15983
|
2025-10-12 20:29:42 +08:00 |
|
Jeffrey Chen
|
4aede9687e
|
Improve toolbar position calculation (#15983)
* 🎨 Improve toolbar position calculation
* 🎨 Improve toolbar position calculation
* 🎨 Improve toolbar position calculation
|
2025-10-12 18:31:10 +08:00 |
|
Vanessa
|
3c29719b5d
|
🎨 https://github.com/siyuan-note/siyuan/issues/16024
|
2025-10-12 12:29:41 +08:00 |
|
Vanessa
|
a5c2053218
|
🐛 https://github.com/siyuan-note/siyuan/issues/12089
|
2025-10-10 17:07:23 +08:00 |
|
Vanessa
|
a6798192ae
|
🎨 https://github.com/siyuan-note/siyuan/issues/16048
|
2025-10-10 13:26:01 +08:00 |
|
Vanessa
|
c58299a957
|
🎨 https://github.com/siyuan-note/siyuan/issues/15989
|
2025-10-09 20:02:53 +08:00 |
|
Vanessa
|
c8a0314d74
|
🎨 https://github.com/siyuan-note/siyuan/issues/16024
|
2025-10-08 17:57:20 +08:00 |
|
Vanessa
|
3919dd2515
|
🐛 https://github.com/siyuan-note/siyuan/issues/13822
|
2025-10-08 14:17:53 +08:00 |
|
Vanessa
|
6f9901e95f
|
🎨 https://github.com/siyuan-note/siyuan/issues/16012
|
2025-10-04 22:12:23 +08:00 |
|
Vanessa
|
b3dd8791db
|
🎨 https://github.com/siyuan-note/siyuan/issues/15989 拖拽到折叠标题下需展开
|
2025-10-04 16:01:28 +08:00 |
|
Vanessa
|
2b0e8feee2
|
🎨 https://github.com/siyuan-note/siyuan/issues/15989 拖拽到折叠标题下需展开
|
2025-10-04 15:34:00 +08:00 |
|
Vanessa
|
41b14025b4
|
🎨 https://github.com/siyuan-note/siyuan/pull/15969
|
2025-10-02 18:02:13 +08:00 |
|
Achuan-2
|
bf1172b05e
|
✨ feat(search): 搜索显示文档标题 (#15969)
- 在搜索功能中新增标题渲染选项
- 更新相关的渲染配置
|
2025-10-02 17:17:12 +08:00 |
|
Vanessa
|
5e4ac24a64
|
🎨 https://github.com/siyuan-note/siyuan/issues/15844
|
2025-09-26 23:04:01 +08:00 |
|
Vanessa
|
0444ed22c3
|
🎨 https://github.com/siyuan-note/siyuan/issues/15918
|
2025-09-25 21:09:09 +08:00 |
|
Vanessa
|
980e1bd9d5
|
🎨 https://github.com/siyuan-note/siyuan/issues/15904
|
2025-09-22 16:43:29 +08:00 |
|
Vanessa
|
533e11cc1e
|
Merge remote-tracking branch 'origin/dev' into dev
|
2025-09-21 21:46:41 +08:00 |
|
Vanessa
|
b262d63085
|
🎨 https://github.com/siyuan-note/siyuan/issues/15889
|
2025-09-21 21:46:27 +08:00 |
|
Jeffrey Chen
|
8e443ce5c3
|
🎨 Change the unordered list marker from "*" to "-" (#15902)
|
2025-09-21 18:41:37 +08:00 |
|
Vanessa
|
690dcb5899
|
🎨 https://github.com/siyuan-note/siyuan/issues/15797
|
2025-09-20 15:14:07 +08:00 |
|
Daniel
|
dffd12477e
|
🐛 https://github.com/siyuan-note/siyuan/issues/15875
Signed-off-by: Daniel <845765@qq.com>
|
2025-09-18 20:49:23 +08:00 |
|
Vanessa
|
8ea8db64ec
|
🎨 https://github.com/siyuan-note/siyuan/issues/15873
|
2025-09-18 19:56:53 +08:00 |
|
Vanessa
|
4014d1ecdc
|
🎨 https://github.com/siyuan-note/siyuan/issues/15726
|
2025-09-16 00:44:03 +08:00 |
|
Vanessa
|
e2f0f241f8
|
🎨 https://github.com/siyuan-note/siyuan/issues/15726
|
2025-09-16 00:12:00 +08:00 |
|
Vanessa
|
7a249761e2
|
🎨 https://github.com/siyuan-note/siyuan/issues/15726
|
2025-09-15 23:38:49 +08:00 |
|
Vanessa
|
b70328c7e7
|
🎨 https://github.com/siyuan-note/siyuan/issues/15821
|
2025-09-13 09:15:06 +08:00 |
|
QYLexpired
|
9f76274747
|
为面包屑解锁/锁定按钮增加属性 (#15820)
* Update index.ts
* Update onGet.ts
* Update onGet.ts
|
2025-09-12 19:48:25 +08:00 |
|
Vanessa
|
ff909fa149
|
🎨 https://github.com/siyuan-note/siyuan/issues/15805
|
2025-09-09 10:02:51 +08:00 |
|
Vanessa
|
393c53941a
|
🎨 https://github.com/siyuan-note/siyuan/issues/15801
Signed-off-by: Daniel <845765@qq.com>
|
2025-09-08 17:39:03 +08:00 |
|
Vanessa
|
c326989391
|
🎨 https://github.com/siyuan-note/siyuan/issues/8019
|
2025-09-06 22:47:16 +08:00 |
|
Vanessa
|
4e4398ef47
|
🎨 https://github.com/siyuan-note/siyuan/issues/8019
|
2025-09-06 18:31:38 +08:00 |
|
Vanessa
|
80cccd41b5
|
🎨 https://github.com/siyuan-note/siyuan/issues/8019
|
2025-09-06 18:02:18 +08:00 |
|
Jeffrey Chen
|
17a96ee1b1
|
🎨 Dragging multiple files into the editor will cause them to be opened by the default program (#15773)
|
2025-09-05 12:10:44 +08:00 |
|