🔖 Release v2.10.2

This commit is contained in:
Daniel 2023-08-29 11:16:00 +08:00
parent 9532a3eab6
commit 6ad976a98a
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
3 changed files with 160 additions and 0 deletions

View file

@ -0,0 +1,54 @@
## Overview
This version fixes some problems related to content search of asset files, and optimizes the parsing performance of PDF asset files.
The search asset file content feature requires a paid membership to use, and it is currently in the early bird price stage, welcome to [buy](https://b3log.org/siyuan/en/pricing.html).
## Changelogs
Below are the detailed changes in this version.
### Enhancement
* [Code block support hlsl shading language highlighting](https://github.com/siyuan-note/siyuan/issues/8431)
* [Search setting items not working with spaces](https://github.com/siyuan-note/siyuan/issues/9007)
* [Support `¥¥` input formula block](https://github.com/siyuan-note/siyuan/issues/9015)
* [Floating window should not be displayed after Ctrl+W](https://github.com/siyuan-note/siyuan/issues/9018)
* [AI `Maximum number of Tokens` setting value is no longer limited](https://github.com/siyuan-note/siyuan/issues/9023)
* [After zoom in, sometimes Ctrl+Z should zoom out](https://github.com/siyuan-note/siyuan/issues/9041)
* [Improve content parsing performance for large PDF asset](https://github.com/siyuan-note/siyuan/pull/9051)
* [Non-UTF-8 encoded text files are not included in asset file content searching](https://github.com/siyuan-note/siyuan/issues/9052)
* [PDF files longer than 1024 pages are not included in asset file content searching](https://github.com/siyuan-note/siyuan/issues/9053)
* [Add the main menu shortcut key Alt+\ and arrow keys to select items on the desktop](https://github.com/siyuan-note/siyuan/issues/9055)
* [The code block and inline code Tab display width is adjusted to 4 spaces](https://github.com/siyuan-note/siyuan/issues/9056)
* [Automatically wrap lines when adding multiple asset files to the table](https://github.com/siyuan-note/siyuan/issues/9058)
* [Improve PDF rect annotations copying](https://github.com/siyuan-note/siyuan/pull/9061)
### Bugfix
* [Right-clicking on a math block does not pop up the menu](https://github.com/siyuan-note/siyuan/issues/9020)
* [The line number of the exported image code block is misplaced](https://github.com/siyuan-note/siyuan/issues/9029)
* [Unable to open the doc when the block pointed by the scroll position does not exist](https://github.com/siyuan-note/siyuan/issues/9030)
* [`Optimize typography` exception in case of task list and heading](https://github.com/siyuan-note/siyuan/issues/9035)
* [Fix some asset file content indexing issues](https://github.com/siyuan-note/siyuan/issues/9045)
* [Input Chinese punctuation repeated after pasting the inline-level formula](https://github.com/siyuan-note/siyuan/issues/9054)
* [When editing the same block in split tab, the cursor switches between different editors](https://github.com/siyuan-note/siyuan/issues/9063)
### Document
* [Fix some broken references in Chinese user guide](https://github.com/siyuan-note/siyuan/issues/9059)
### Refactor
* [Upgrade Electron](https://github.com/siyuan-note/siyuan/issues/8982)
### Development
* [Use width instead of maxWidth after resizing image](https://github.com/siyuan-note/siyuan/issues/8683)
* [Add plugin type `TProtyleAction`](https://github.com/siyuan-note/siyuan/issues/8988)
* [Add plugin event bus `loaded-protyle-dynamic`](https://github.com/siyuan-note/siyuan/issues/9021)
* [Add kernel API `/api/archive/zip` and `/api/archive/unzip`](https://github.com/siyuan-note/siyuan/issues/9028)
* [Add Kernel API for WebSocket message broadcast](https://github.com/siyuan-note/siyuan/pull/9031)
* [Add plugin event bus `destroy-protyle`](https://github.com/siyuan-note/siyuan/issues/9033)
* [Inline element custom attribute](https://github.com/siyuan-note/siyuan/issues/9038)

View file

@ -0,0 +1,53 @@
## 概述
該版本修復了一些資源文件內容搜索相關的問題,並優化了 PDF 資源文件解析性能。
搜索資源文件內容特性需要付費會員才能使用,目前為早鳥價階段,歡迎[購買](https://b3log.org/siyuan/pricing.html)。
## 變更記錄
以下是此版本中的詳細變更。
### 改進功能
* [代碼塊支持 hlsl 語法高亮](https://github.com/siyuan-note/siyuan/issues/8431)
* [設置搜索支持空格分隔](https://github.com/siyuan-note/siyuan/issues/9007)
* [支持 `¥¥` 輸入公式塊](https://github.com/siyuan-note/siyuan/issues/9015)
* [Ctrl+W 後不再顯示浮窗](https://github.com/siyuan-note/siyuan/issues/9018)
* [不再限制人工智能配置項 `最大 Token 數`](https://github.com/siyuan-note/siyuan/issues/9023)
* [聚焦後某些情況下 Ctrl+Z 退出聚焦](https://github.com/siyuan-note/siyuan/issues/9041)
* [改進 PDF 資源文件內容搜索解析性能](https://github.com/siyuan-note/siyuan/pull/9051)
* [非 UTF-8 編碼的文本文件不再納入資源文件內容搜索](https://github.com/siyuan-note/siyuan/issues/9052)
* [大於 1024 頁的 PDF 文件不再納入資源文件內容搜索](https://github.com/siyuan-note/siyuan/issues/9053)
* [桌面端為主菜單添加快捷鍵 Alt+\ 並支持方向鍵選擇菜單項](https://github.com/siyuan-note/siyuan/issues/9055)
* [代碼塊和行級代碼 Tab 顯示寬度改為 4 個空格](https://github.com/siyuan-note/siyuan/issues/9056)
* [表格中添加多個資源文件時自動換行](https://github.com/siyuan-note/siyuan/issues/9058)
* [改進 PDF 矩形標註複製](https://github.com/siyuan-note/siyuan/pull/9061)
### 修復缺陷
* [右擊公式塊不彈出菜單](https://github.com/siyuan-note/siyuan/issues/9020)
* [代碼塊導出圖片時行號錯位](https://github.com/siyuan-note/siyuan/issues/9029)
* [滾動位置的塊不存在時無法打開文檔](https://github.com/siyuan-note/siyuan/issues/9030)
* [任務列表下存在標題塊時 `優化排版` 異常](https://github.com/siyuan-note/siyuan/issues/9035)
* [修復一些資源文件內容搜索索引問題](https://github.com/siyuan-note/siyuan/issues/9045)
* [粘貼行級公式後輸入中文標點符號重複](https://github.com/siyuan-note/siyuan/issues/9054)
* [文檔分屏後編輯光標位置切換錯誤](https://github.com/siyuan-note/siyuan/issues/9063)
### 改進文檔
* [修復一些中文用戶指南中的壞鏈](https://github.com/siyuan-note/siyuan/issues/9059)
### 開發重構
* [升級 Electron](https://github.com/siyuan-note/siyuan/issues/8982)
### 開發者
* [重置圖片大小時使用 width 代替 maxWidth](https://github.com/siyuan-note/siyuan/issues/8683)
* [添加插件類型 `TProtyleAction`](https://github.com/siyuan-note/siyuan/issues/8988)
* [添加插件事件總線 `loaded-protyle-dynamic`](https://github.com/siyuan-note/siyuan/issues/9021)
* [添加內核 API `/api/archive/zip` 和 `/api/archive/unzip`](https://github.com/siyuan-note/siyuan/issues/9028)
* [添加內核 API WebSocket 消息廣播](https://github.com/siyuan-note/siyuan/pull/9031)
* [添加插件事件總線 `destroy-protyle`](https://github.com/siyuan-note/siyuan/issues/9033)
* [支持行級元素自定義屬性](https://github.com/siyuan-note/siyuan/issues/9038)

View file

@ -0,0 +1,53 @@
## 概述
该版本修复了一些资源文件内容搜索相关的问题,并优化了 PDF 资源文件解析性能。
搜索资源文件内容特性需要付费会员才能使用,目前为早鸟价阶段,欢迎[购买](https://b3log.org/siyuan/pricing.html)。
## 变更记录
以下是此版本中的详细变更。
### 改进功能
* [代码块支持 hlsl 语法高亮](https://github.com/siyuan-note/siyuan/issues/8431)
* [设置搜索支持空格分隔](https://github.com/siyuan-note/siyuan/issues/9007)
* [支持 `¥¥` 输入公式块](https://github.com/siyuan-note/siyuan/issues/9015)
* [Ctrl+W 后不再显示浮窗](https://github.com/siyuan-note/siyuan/issues/9018)
* [不再限制人工智能配置项 `最大 Token 数`](https://github.com/siyuan-note/siyuan/issues/9023)
* [聚焦后某些情况下 Ctrl+Z 退出聚焦](https://github.com/siyuan-note/siyuan/issues/9041)
* [改进 PDF 资源文件内容搜索解析性能](https://github.com/siyuan-note/siyuan/pull/9051)
* [非 UTF-8 编码的文本文件不再纳入资源文件内容搜索](https://github.com/siyuan-note/siyuan/issues/9052)
* [大于 1024 页的 PDF 文件不再纳入资源文件内容搜索](https://github.com/siyuan-note/siyuan/issues/9053)
* [桌面端为主菜单添加快捷键 Alt+\ 并支持方向键选择菜单项](https://github.com/siyuan-note/siyuan/issues/9055)
* [代码块和行级代码 Tab 显示宽度改为 4 个空格](https://github.com/siyuan-note/siyuan/issues/9056)
* [表格中添加多个资源文件时自动换行](https://github.com/siyuan-note/siyuan/issues/9058)
* [改进 PDF 矩形标注复制](https://github.com/siyuan-note/siyuan/pull/9061)
### 修复缺陷
* [右击公式块不弹出菜单](https://github.com/siyuan-note/siyuan/issues/9020)
* [代码块导出图片时行号错位](https://github.com/siyuan-note/siyuan/issues/9029)
* [滚动位置的块不存在时无法打开文档](https://github.com/siyuan-note/siyuan/issues/9030)
* [任务列表下存在标题块时 `优化排版` 异常](https://github.com/siyuan-note/siyuan/issues/9035)
* [修复一些资源文件内容搜索索引问题](https://github.com/siyuan-note/siyuan/issues/9045)
* [粘贴行级公式后输入中文标点符号重复](https://github.com/siyuan-note/siyuan/issues/9054)
* [文档分屏后编辑光标位置切换错误](https://github.com/siyuan-note/siyuan/issues/9063)
### 改进文档
* [修复一些中文用户指南中的坏链](https://github.com/siyuan-note/siyuan/issues/9059)
### 开发重构
* [升级 Electron](https://github.com/siyuan-note/siyuan/issues/8982)
### 开发者
* [重置图片大小时使用 width 代替 maxWidth](https://github.com/siyuan-note/siyuan/issues/8683)
* [添加插件类型 `TProtyleAction`](https://github.com/siyuan-note/siyuan/issues/8988)
* [添加插件事件总线 `loaded-protyle-dynamic`](https://github.com/siyuan-note/siyuan/issues/9021)
* [添加内核 API `/api/archive/zip` 和 `/api/archive/unzip`](https://github.com/siyuan-note/siyuan/issues/9028)
* [添加内核 API WebSocket 消息广播](https://github.com/siyuan-note/siyuan/pull/9031)
* [添加插件事件总线 `destroy-protyle`](https://github.com/siyuan-note/siyuan/issues/9033)
* [支持行级元素自定义属性](https://github.com/siyuan-note/siyuan/issues/9038)