From 2f70ef43a17847f012042e1b710335fb0fe4ccbd Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Tue, 9 Sep 2025 09:07:23 +0800 Subject: [PATCH] :art: Clean code Signed-off-by: Daniel <845765@qq.com> --- app/changelogs/v3.1.x/v3.1.11/v3.1.11.md | 2 +- app/changelogs/v3.3.2/v3.3.2.md | 2 +- .../20240517031132-jmr5ihm.sy | 8 ++++---- app/src/types/config.d.ts | 14 +++++++------- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/app/changelogs/v3.1.x/v3.1.11/v3.1.11.md b/app/changelogs/v3.1.x/v3.1.11/v3.1.11.md index 76836ae97..c469be4cc 100644 --- a/app/changelogs/v3.1.x/v3.1.11/v3.1.11.md +++ b/app/changelogs/v3.1.x/v3.1.11/v3.1.11.md @@ -21,7 +21,7 @@ Below are the detailed changes in this version. * [Database cells support vertical dragging to fill values](https://github.com/siyuan-note/siyuan/issues/12907) * [Improve document tree movement and its animation](https://github.com/siyuan-note/siyuan/issues/12914) * [Improve S3/WebDAV data sync config](https://github.com/siyuan-note/siyuan/issues/12923) -* [The Publishing service no longer support export](https://github.com/siyuan-note/siyuan/issues/12928) +* [The Publish service no longer support export](https://github.com/siyuan-note/siyuan/issues/12928) * [Display document title in data history preview area](https://github.com/siyuan-note/siyuan/issues/12948) * [Improve parsing `` when importing markdown](https://github.com/siyuan-note/siyuan/issues/12956) * [Improve parsing of YAML Front Matter when importing Markdown](https://github.com/siyuan-note/siyuan/issues/12962) diff --git a/app/changelogs/v3.3.2/v3.3.2.md b/app/changelogs/v3.3.2/v3.3.2.md index e8734654d..e1c6dff48 100644 --- a/app/changelogs/v3.3.2/v3.3.2.md +++ b/app/changelogs/v3.3.2/v3.3.2.md @@ -37,7 +37,7 @@ Below are the detailed changes in this version. ### Development -* [Add field `disabledInPublish` to the marketplace plugin package metadata to indicate whether it is disabled in the publishing service](https://github.com/siyuan-note/siyuan/issues/11730) +* [Add field `disabledInPublish` to the marketplace plugin package metadata to indicate whether it is disabled in the publish service](https://github.com/siyuan-note/siyuan/issues/11730) * [Add plugin function `expandDocTree`](https://github.com/siyuan-note/siyuan/issues/15639) * [Improve kernel API `appendBlock`, `insertBlock` and `prependBlock`](https://github.com/siyuan-note/siyuan/issues/15798) diff --git a/app/guide/20210808180117-6v0mkxr/20200923234011-ieuun1p/20210808180303-xaduj2o/20240517031132-jmr5ihm.sy b/app/guide/20210808180117-6v0mkxr/20200923234011-ieuun1p/20210808180303-xaduj2o/20240517031132-jmr5ihm.sy index bc2c085ea..edd64ae8b 100644 --- a/app/guide/20210808180117-6v0mkxr/20200923234011-ieuun1p/20210808180303-xaduj2o/20240517031132-jmr5ihm.sy +++ b/app/guide/20210808180117-6v0mkxr/20200923234011-ieuun1p/20210808180303-xaduj2o/20240517031132-jmr5ihm.sy @@ -102,7 +102,7 @@ }, { "Type": "NodeText", - "Data": "​ to enter the publishing service settings panel." + "Data": "​ to enter the publish service settings panel." } ] } @@ -252,7 +252,7 @@ "Children": [ { "Type": "NodeText", - "Data": "If access control is required for the publishing service:" + "Data": "If access control is required for the publish service:" } ] }, @@ -333,7 +333,7 @@ "Children": [ { "Type": "NodeText", - "Data": "When enabled, the publishing service will use the " + "Data": "When enabled, the publish service will use the " }, { "Type": "NodeTextMark", @@ -482,7 +482,7 @@ "Children": [ { "Type": "NodeText", - "Data": "After enabling the publishing service, visitors can browse the content of the entire workspace." + "Data": "After enabling the publish service, visitors can browse the content of the entire workspace." } ] } diff --git a/app/src/types/config.d.ts b/app/src/types/config.d.ts index 51fe07b9f..44e3d3f98 100644 --- a/app/src/types/config.d.ts +++ b/app/src/types/config.d.ts @@ -64,7 +64,7 @@ declare namespace Config { */ openHelp: boolean; /** - * Publishing service + * Publish service * 发布服务 */ publish: IPublish; @@ -1078,29 +1078,29 @@ declare namespace Config { export type TLogLevel = "off" | "trace" | "debug" | "info" | "warn" | "error" | "fatal"; /** - * Publishing service + * Publish service */ export interface IPublish { /** - * Whether to open the publishing service + * Whether to open the publish service */ enable: boolean; /** - * The basic authentication settings of publishing service + * The basic authentication settings of publish service */ auth: IPublishAuth; /** - * Port on which the publishing service listens + * Port on which the publish service listens */ port: number; } /** - * Publishing service authentication settings + * Publish service authentication settings */ export interface IPublishAuth { /** - * Whether to enable basic authentication for publishing services + * Whether to enable basic authentication for publish services */ enable: boolean; /**