mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-05-21 19:41:05 +08:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
1b5954cdd5
@ -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
|
||||
|
||||
|
@ -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)
|
||||
|
||||
### 修復缺陷
|
||||
|
||||
|
@ -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)
|
||||
|
||||
### 修复缺陷
|
||||
|
||||
|
@ -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[]",
|
||||
|
Loading…
Reference in New Issue
Block a user