diff --git a/app/changelogs/v2.12.0/v2.12.0.md b/app/changelogs/v2.12.0/v2.12.0.md index fa104d3c2..616138c8a 100644 --- a/app/changelogs/v2.12.0/v2.12.0.md +++ b/app/changelogs/v2.12.0/v2.12.0.md @@ -26,6 +26,7 @@ Below are the detailed changes in this version. * [Improve flashcard cloze style](https://github.com/siyuan-note/siyuan/issues/10009) * [Improve math rendering when copy to Zhihu](https://github.com/siyuan-note/siyuan/issues/10015) * [Remove line breaks when exporting inline formulas that contain line breaks to Markdown](https://github.com/siyuan-note/siyuan/issues/10017) +* [Show PDF tab title in full](https://github.com/siyuan-note/siyuan/issues/10045) ### Bugfix diff --git a/app/changelogs/v2.12.0/v2.12.0_zh_CHT.md b/app/changelogs/v2.12.0/v2.12.0_zh_CHT.md index e2be68fff..21279c53c 100644 --- a/app/changelogs/v2.12.0/v2.12.0_zh_CHT.md +++ b/app/changelogs/v2.12.0/v2.12.0_zh_CHT.md @@ -26,6 +26,7 @@ * [改良閃卡挖空樣式](https://github.com/siyuan-note/siyuan/issues/10009) * [改進複製到知乎時公式渲染](https://github.com/siyuan-note/siyuan/issues/10015) * [匯出 Markdown 時刪除行級公式中的換行](https://github.com/siyuan-note/siyuan/issues/10017) +* [完整顯示 PDF 頁籤標題](https://github.com/siyuan-note/siyuan/issues/10045) ### 修復缺陷 diff --git a/app/changelogs/v2.12.0/v2.12.0_zh_CN.md b/app/changelogs/v2.12.0/v2.12.0_zh_CN.md index da9159b30..038583194 100644 --- a/app/changelogs/v2.12.0/v2.12.0_zh_CN.md +++ b/app/changelogs/v2.12.0/v2.12.0_zh_CN.md @@ -26,6 +26,7 @@ * [改进闪卡挖空样式](https://github.com/siyuan-note/siyuan/issues/10009) * [改进复制到知乎时公式渲染](https://github.com/siyuan-note/siyuan/issues/10015) * [导出 Markdown 时删除行级公式中的换行](https://github.com/siyuan-note/siyuan/issues/10017) +* [完整显示 PDF 页签标题](https://github.com/siyuan-note/siyuan/issues/10045) ### 修复缺陷 diff --git a/kernel/api/search.go b/kernel/api/search.go index 66f9f282b..7726f68e5 100644 --- a/kernel/api/search.go +++ b/kernel/api/search.go @@ -55,8 +55,7 @@ func fullTextSearchAssetContent(c *gin.Context) { } if !model.IsPaidUser() { - ret.Code = -1 - ret.Msg = model.Conf.Language(214) + ret.Code = 1 return }