Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
Vanessa 2025-02-24 11:28:15 +08:00
commit 1b5954cdd5
4 changed files with 4 additions and 1 deletions

View File

@ -47,6 +47,7 @@ Below are the detailed changes in this version.
* [Pasting text with a `>` in the middle no longer creates a blockquote block](https://github.com/siyuan-note/siyuan/issues/14162)
* [Display reference counts after unfolding headings](https://github.com/siyuan-note/siyuan/issues/14169)
* [Improve find-replace of text containing escape characters](https://github.com/siyuan-note/siyuan/issues/14173)
* [The size limit of inserted assets has been adjusted from 4G to 8G](https://github.com/siyuan-note/siyuan/issues/14188)
### Bugfix

View File

@ -47,6 +47,7 @@
* [貼上中間包含 `>` 的文字時不再建立引述區塊](https://github.com/siyuan-note/siyuan/issues/14162)
* [展開折疊的標題後顯示區塊引用計數](https://github.com/siyuan-note/siyuan/issues/14169)
* [改進包含轉義符的文字搜尋替換](https://github.com/siyuan-note/siyuan/issues/14173)
* [插入資源檔案大小限制由 4G 調整為 8G](https://github.com/siyuan-note/siyuan/issues/14188)
### 修復缺陷

View File

@ -47,6 +47,7 @@
* [粘贴中间包含 `>` 的文本时不再创建引述块](https://github.com/siyuan-note/siyuan/issues/14162)
* [展开折叠的标题后显示块引用计数](https://github.com/siyuan-note/siyuan/issues/14169)
* [改进包含转义符的文本搜索替换](https://github.com/siyuan-note/siyuan/issues/14173)
* [插入资源文件大小限制由 4G 调整为 8G](https://github.com/siyuan-note/siyuan/issues/14188)
### 修复缺陷

View File

@ -88,7 +88,7 @@ export class Options {
toolbar: Constants.PROTYLE_TOOLBAR,
typewriterMode: false,
upload: {
max: 1024 * 1024 * 1024 * 4,
max: 1024 * 1024 * 1024 * 8,
url: Constants.UPLOAD_ADDRESS,
extraData: {},
fieldName: "file[]",