diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1d8dcd453..b05cb4939 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -120,7 +120,7 @@ jobs: body_path: docs/Release Notes/Release Notes/${{ github.ref_name }}.md fail_on_unmatched_files: true files: upload/*.* - discussion_category_name: Announcements + discussion_category_name: Releases make_latest: ${{ !contains(github.ref, 'rc') }} prerelease: ${{ contains(github.ref, 'rc') }} token: ${{ secrets.RELEASE_PAT }} diff --git a/_regroup/bin/generate_document.ts b/_regroup/bin/generate_document.ts index f9d327116..793efc105 100644 --- a/_regroup/bin/generate_document.ts +++ b/_regroup/bin/generate_document.ts @@ -91,5 +91,5 @@ async function start() { } // @TriliumNextTODO sqlInit.dbReady never seems to resolve so program hangs -// see https://github.com/TriliumNext/Notes/issues/1020 +// see https://github.com/TriliumNext/Trilium/issues/1020 sqlInit.dbReady.then(cls.wrap(start)).catch((err) => console.error(err)); diff --git a/_regroup/integration-tests/update_check.spec.ts b/_regroup/integration-tests/update_check.spec.ts index 8cb7f4bf2..38e28bf22 100644 --- a/_regroup/integration-tests/update_check.spec.ts +++ b/_regroup/integration-tests/update_check.spec.ts @@ -8,5 +8,5 @@ test("Displays update badge when there is a version available", async ({ page }) await page.getByText(`Version ${expectedVersion} is available,`).click(); const page1 = await page.waitForEvent("popup"); - expect(page1.url()).toBe(`https://github.com/TriliumNext/Notes/releases/tag/v${expectedVersion}`); + expect(page1.url()).toBe(`https://github.com/TriliumNext/Trilium/releases/tag/v${expectedVersion}`); }); diff --git a/apps/client/package.json b/apps/client/package.json index ae49e4a03..5c198067e 100644 --- a/apps/client/package.json +++ b/apps/client/package.json @@ -1,6 +1,6 @@ { "name": "@triliumnext/client", - "version": "0.95.0", + "version": "0.96.0", "description": "JQuery-based client for TriliumNext, used for both web and desktop (via Electron)", "private": true, "license": "AGPL-3.0-only", diff --git a/apps/client/src/widgets/buttons/global_menu.ts b/apps/client/src/widgets/buttons/global_menu.ts index 47323e271..65e7d2ed1 100644 --- a/apps/client/src/widgets/buttons/global_menu.ts +++ b/apps/client/src/widgets/buttons/global_menu.ts @@ -424,7 +424,7 @@ export default class GlobalMenuWidget extends BasicWidget { } downloadLatestVersionCommand() { - window.open("https://github.com/TriliumNext/Notes/releases/latest"); + window.open("https://github.com/TriliumNext/Trilium/releases/latest"); } activeContextChangedEvent() { diff --git a/apps/client/src/widgets/dialogs/about.ts b/apps/client/src/widgets/dialogs/about.ts index 06cf118ec..2276a5214 100644 --- a/apps/client/src/widgets/dialogs/about.ts +++ b/apps/client/src/widgets/dialogs/about.ts @@ -27,7 +27,7 @@ const TPL = /*html*/` - + @@ -92,7 +92,7 @@ export default class AboutDialog extends BasicWidget { this.$syncVersion.text(appInfo.syncVersion.toString()); this.$buildDate.text(formatDateTime(appInfo.buildDate)); this.$buildRevision.text(appInfo.buildRevision); - this.$buildRevision.attr("href", `https://github.com/TriliumNext/Notes/commit/${appInfo.buildRevision}`); + this.$buildRevision.attr("href", `https://github.com/TriliumNext/Trilium/commit/${appInfo.buildRevision}`); if (utils.isElectron()) { this.$dataDirectory.html( $("", { diff --git a/apps/client/src/widgets/dialogs/incorrect_cpu_arch.ts b/apps/client/src/widgets/dialogs/incorrect_cpu_arch.ts index 8e30060fe..e28e6699a 100644 --- a/apps/client/src/widgets/dialogs/incorrect_cpu_arch.ts +++ b/apps/client/src/widgets/dialogs/incorrect_cpu_arch.ts @@ -41,9 +41,9 @@ export default class IncorrectCpuArchDialog extends BasicWidget { // Open the releases page where users can download the correct version if (utils.isElectron()) { const { shell } = utils.dynamicRequire("electron"); - shell.openExternal("https://github.com/TriliumNext/Notes/releases/latest"); + shell.openExternal("https://github.com/TriliumNext/Trilium/releases/latest"); } else { - window.open("https://github.com/TriliumNext/Notes/releases/latest", "_blank"); + window.open("https://github.com/TriliumNext/Trilium/releases/latest", "_blank"); } }); diff --git a/apps/client/src/widgets/type_widgets/options/other/html_import_tags.ts b/apps/client/src/widgets/type_widgets/options/other/html_import_tags.ts index 5bb626965..0dd140732 100644 --- a/apps/client/src/widgets/type_widgets/options/other/html_import_tags.ts +++ b/apps/client/src/widgets/type_widgets/options/other/html_import_tags.ts @@ -74,7 +74,7 @@ export const DEFAULT_ALLOWED_TAGS = [ "del", "ins", "en-media", // for ENEX import - // Additional tags (https://github.com/TriliumNext/Notes/issues/567) + // Additional tags (https://github.com/TriliumNext/Trilium/issues/567) "acronym", "article", "big", diff --git a/apps/desktop/package.json b/apps/desktop/package.json index 31d675138..81a420387 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@triliumnext/desktop", - "version": "0.95.0", + "version": "0.96.0", "description": "Build your personal knowledge base with Trilium Notes", "private": true, "main": "main.cjs", diff --git a/apps/server/package.json b/apps/server/package.json index fd5ec6057..3b92be1a5 100644 --- a/apps/server/package.json +++ b/apps/server/package.json @@ -1,6 +1,6 @@ { "name": "@triliumnext/server", - "version": "0.95.0", + "version": "0.96.0", "description": "The server-side component of TriliumNext, which exposes the client via the web, allows for sync and provides a REST API for both internal and external use.", "private": true, "dependencies": { diff --git a/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown.html b/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown.html index 7f46f8adf..d71887009 100644 --- a/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown.html +++ b/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown.html @@ -42,5 +42,5 @@ This will export the notes in an unencrypted form, so if you reimport into Trilium, make sure to re-protect these notes.

Supported syntax

-

See the dedicated page: Supported syntax +

See the dedicated page: Supported syntax

\ No newline at end of file diff --git a/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown/Supported syntax.html b/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown/Supported syntax.html index d07d44264..23cce355a 100644 --- a/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown/Supported syntax.html +++ b/apps/server/src/assets/doc_notes/en/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown/Supported syntax.html @@ -41,7 +41,7 @@ Trilium-compatible syntax, but it will not export Trilium Notes into Markdown files with this syntax.

${t("about.homepage")}https://github.com/TriliumNext/Noteshttps://github.com/TriliumNext/Trilium
${t("about.app_version")}