mirror of
https://github.com/zadam/trilium.git
synced 2025-10-21 07:38:53 +02:00
chore(rebrand): update GitHub repo in source files
This commit is contained in:
parent
06b507fdc5
commit
1f022aea4e
@ -91,5 +91,5 @@ async function start() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// @TriliumNextTODO sqlInit.dbReady never seems to resolve so program hangs
|
// @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));
|
sqlInit.dbReady.then(cls.wrap(start)).catch((err) => console.error(err));
|
||||||
|
@ -8,5 +8,5 @@ test("Displays update badge when there is a version available", async ({ page })
|
|||||||
await page.getByText(`Version ${expectedVersion} is available,`).click();
|
await page.getByText(`Version ${expectedVersion} is available,`).click();
|
||||||
|
|
||||||
const page1 = await page.waitForEvent("popup");
|
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}`);
|
||||||
});
|
});
|
||||||
|
@ -424,7 +424,7 @@ export default class GlobalMenuWidget extends BasicWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
downloadLatestVersionCommand() {
|
downloadLatestVersionCommand() {
|
||||||
window.open("https://github.com/TriliumNext/Notes/releases/latest");
|
window.open("https://github.com/TriliumNext/Trilium/releases/latest");
|
||||||
}
|
}
|
||||||
|
|
||||||
activeContextChangedEvent() {
|
activeContextChangedEvent() {
|
||||||
|
@ -27,7 +27,7 @@ const TPL = /*html*/`
|
|||||||
<table class="table table-borderless">
|
<table class="table table-borderless">
|
||||||
<tr>
|
<tr>
|
||||||
<th>${t("about.homepage")}</th>
|
<th>${t("about.homepage")}</th>
|
||||||
<td><a class="tn-link" href="https://github.com/TriliumNext/Notes" class="external">https://github.com/TriliumNext/Notes</a></td>
|
<td><a class="tn-link" href="https://github.com/TriliumNext/Trilium" class="external">https://github.com/TriliumNext/Trilium</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>${t("about.app_version")}</th>
|
<th>${t("about.app_version")}</th>
|
||||||
@ -92,7 +92,7 @@ export default class AboutDialog extends BasicWidget {
|
|||||||
this.$syncVersion.text(appInfo.syncVersion.toString());
|
this.$syncVersion.text(appInfo.syncVersion.toString());
|
||||||
this.$buildDate.text(formatDateTime(appInfo.buildDate));
|
this.$buildDate.text(formatDateTime(appInfo.buildDate));
|
||||||
this.$buildRevision.text(appInfo.buildRevision);
|
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()) {
|
if (utils.isElectron()) {
|
||||||
this.$dataDirectory.html(
|
this.$dataDirectory.html(
|
||||||
$("<a></a>", {
|
$("<a></a>", {
|
||||||
|
@ -41,9 +41,9 @@ export default class IncorrectCpuArchDialog extends BasicWidget {
|
|||||||
// Open the releases page where users can download the correct version
|
// Open the releases page where users can download the correct version
|
||||||
if (utils.isElectron()) {
|
if (utils.isElectron()) {
|
||||||
const { shell } = utils.dynamicRequire("electron");
|
const { shell } = utils.dynamicRequire("electron");
|
||||||
shell.openExternal("https://github.com/TriliumNext/Notes/releases/latest");
|
shell.openExternal("https://github.com/TriliumNext/Trilium/releases/latest");
|
||||||
} else {
|
} else {
|
||||||
window.open("https://github.com/TriliumNext/Notes/releases/latest", "_blank");
|
window.open("https://github.com/TriliumNext/Trilium/releases/latest", "_blank");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -74,7 +74,7 @@ export const DEFAULT_ALLOWED_TAGS = [
|
|||||||
"del",
|
"del",
|
||||||
"ins",
|
"ins",
|
||||||
"en-media", // for ENEX import
|
"en-media", // for ENEX import
|
||||||
// Additional tags (https://github.com/TriliumNext/Notes/issues/567)
|
// Additional tags (https://github.com/TriliumNext/Trilium/issues/567)
|
||||||
"acronym",
|
"acronym",
|
||||||
"article",
|
"article",
|
||||||
"big",
|
"big",
|
||||||
|
@ -8,7 +8,7 @@ import appInfo from "../../services/app_info.js";
|
|||||||
* operationId: app-info
|
* operationId: app-info
|
||||||
* externalDocs:
|
* externalDocs:
|
||||||
* description: Server implementation
|
* description: Server implementation
|
||||||
* url: https://github.com/TriliumNext/Notes/blob/v0.91.6/src/services/app_info.ts
|
* url: https://github.com/TriliumNext/Trilium/blob/v0.91.6/src/services/app_info.ts
|
||||||
* responses:
|
* responses:
|
||||||
* '200':
|
* '200':
|
||||||
* description: Installation info
|
* description: Installation info
|
||||||
|
@ -25,7 +25,7 @@ import type { Request } from "express";
|
|||||||
* operationId: login-sync
|
* operationId: login-sync
|
||||||
* externalDocs:
|
* externalDocs:
|
||||||
* description: HMAC calculation
|
* description: HMAC calculation
|
||||||
* url: https://github.com/TriliumNext/Notes/blob/v0.91.6/src/services/utils.ts#L62-L66
|
* url: https://github.com/TriliumNext/Trilium/blob/v0.91.6/src/services/utils.ts#L62-L66
|
||||||
* requestBody:
|
* requestBody:
|
||||||
* content:
|
* content:
|
||||||
* application/json:
|
* application/json:
|
||||||
|
@ -95,7 +95,7 @@ function forceFullSync() {
|
|||||||
* operationId: sync-changed
|
* operationId: sync-changed
|
||||||
* externalDocs:
|
* externalDocs:
|
||||||
* description: Server implementation
|
* description: Server implementation
|
||||||
* url: https://github.com/TriliumNext/Notes/blob/v0.91.6/src/routes/api/sync.ts
|
* url: https://github.com/TriliumNext/Trilium/blob/v0.91.6/src/routes/api/sync.ts
|
||||||
* parameters:
|
* parameters:
|
||||||
* - in: query
|
* - in: query
|
||||||
* name: instanceId
|
* name: instanceId
|
||||||
@ -214,7 +214,7 @@ const partialRequests: Record<
|
|||||||
* operationId: sync-update
|
* operationId: sync-update
|
||||||
* externalDocs:
|
* externalDocs:
|
||||||
* description: Server implementation
|
* description: Server implementation
|
||||||
* url: https://github.com/TriliumNext/Notes/blob/v0.91.6/src/routes/api/sync.ts
|
* url: https://github.com/TriliumNext/Trilium/blob/v0.91.6/src/routes/api/sync.ts
|
||||||
* parameters:
|
* parameters:
|
||||||
* - in: header
|
* - in: header
|
||||||
* name: pageCount
|
* name: pageCount
|
||||||
|
@ -136,7 +136,7 @@ function getNotesAndBranchesAndAttributes(_noteIds: string[] | Set<string>) {
|
|||||||
* operationId: tree
|
* operationId: tree
|
||||||
* externalDocs:
|
* externalDocs:
|
||||||
* description: Server implementation
|
* description: Server implementation
|
||||||
* url: https://github.com/TriliumNext/Notes/blob/v0.91.6/src/routes/api/tree.ts
|
* url: https://github.com/TriliumNext/Trilium/blob/v0.91.6/src/routes/api/tree.ts
|
||||||
* parameters:
|
* parameters:
|
||||||
* - in: query
|
* - in: query
|
||||||
* name: subTreeNoteId
|
* name: subTreeNoteId
|
||||||
|
@ -8,7 +8,7 @@ const doubleCsrfUtilities = doubleCsrf({
|
|||||||
path: "/",
|
path: "/",
|
||||||
secure: false,
|
secure: false,
|
||||||
sameSite: "strict",
|
sameSite: "strict",
|
||||||
httpOnly: !isElectron // set to false for Electron, see https://github.com/TriliumNext/Notes/pull/966
|
httpOnly: !isElectron // set to false for Electron, see https://github.com/TriliumNext/Trilium/pull/966
|
||||||
},
|
},
|
||||||
cookieName: "_csrf"
|
cookieName: "_csrf"
|
||||||
});
|
});
|
||||||
|
@ -77,7 +77,7 @@ function setPassword(req: Request, res: Response) {
|
|||||||
* operationId: login-normal
|
* operationId: login-normal
|
||||||
* externalDocs:
|
* externalDocs:
|
||||||
* description: HMAC calculation
|
* description: HMAC calculation
|
||||||
* url: https://github.com/TriliumNext/Notes/blob/v0.91.6/src/services/utils.ts#L62-L66
|
* url: https://github.com/TriliumNext/Trilium/blob/v0.91.6/src/services/utils.ts#L62-L66
|
||||||
* requestBody:
|
* requestBody:
|
||||||
* content:
|
* content:
|
||||||
* application/x-www-form-urlencoded:
|
* application/x-www-form-urlencoded:
|
||||||
|
@ -293,25 +293,25 @@ describe("Markdown export", () => {
|
|||||||
const html = trimIndentation`\
|
const html = trimIndentation`\
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://github.com/JYC333">@JYC333</a> made their first contribution
|
<li><a href="https://github.com/JYC333">@JYC333</a> made their first contribution
|
||||||
in <a href="https://github.com/TriliumNext/Notes/pull/294">#294</a>
|
in <a href="https://github.com/TriliumNext/Trilium/pull/294">#294</a>
|
||||||
|
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<p><a href="https://github.com/TriliumNext/Notes/issues/375">Note Tooltip isn't removed when clicking on internal trilium link in read-only mode</a>
|
<p><a href="https://github.com/TriliumNext/Trilium/issues/375">Note Tooltip isn't removed when clicking on internal trilium link in read-only mode</a>
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<p><a href="https://github.com/TriliumNext/Notes/issues/384">Calendar dropdown won't close if click/right-click other button that open notes from launcher bar</a>
|
<p><a href="https://github.com/TriliumNext/Trilium/issues/384">Calendar dropdown won't close if click/right-click other button that open notes from launcher bar</a>
|
||||||
|
|
||||||
</p>
|
</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
`;
|
`;
|
||||||
const expected = trimIndentation`\
|
const expected = trimIndentation`\
|
||||||
* [@JYC333](https://github.com/JYC333) made their first contribution in [#294](https://github.com/TriliumNext/Notes/pull/294)
|
* [@JYC333](https://github.com/JYC333) made their first contribution in [#294](https://github.com/TriliumNext/Trilium/pull/294)
|
||||||
* [Note Tooltip isn't removed when clicking on internal trilium link in read-only mode](https://github.com/TriliumNext/Notes/issues/375)
|
* [Note Tooltip isn't removed when clicking on internal trilium link in read-only mode](https://github.com/TriliumNext/Trilium/issues/375)
|
||||||
* [Calendar dropdown won't close if click/right-click other button that open notes from launcher bar](https://github.com/TriliumNext/Notes/issues/384)`;
|
* [Calendar dropdown won't close if click/right-click other button that open notes from launcher bar](https://github.com/TriliumNext/Trilium/issues/384)`;
|
||||||
expect(markdownExportService.toMarkdown(html)).toBe(expected);
|
expect(markdownExportService.toMarkdown(html)).toBe(expected);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ export const DEFAULT_ALLOWED_TAGS = [
|
|||||||
"del",
|
"del",
|
||||||
"ins",
|
"ins",
|
||||||
"en-media", // for ENEX import
|
"en-media", // for ENEX import
|
||||||
// Additional tags (https://github.com/TriliumNext/Notes/issues/567)
|
// Additional tags (https://github.com/TriliumNext/Trilium/issues/567)
|
||||||
"acronym",
|
"acronym",
|
||||||
"article",
|
"article",
|
||||||
"big",
|
"big",
|
||||||
|
@ -259,15 +259,15 @@ $$`;
|
|||||||
const input = trimIndentation`\
|
const input = trimIndentation`\
|
||||||
### 🐞 Bugfixes
|
### 🐞 Bugfixes
|
||||||
|
|
||||||
* [v0.90.4 docker does not read USER\_UID and USER\_GID from environment](https://github.com/TriliumNext/Notes/issues/331)
|
* [v0.90.4 docker does not read USER\_UID and USER\_GID from environment](https://github.com/TriliumNext/Trilium/issues/331)
|
||||||
* [Invalid CSRF token on Android phone](https://github.com/TriliumNext/Notes/issues/318)
|
* [Invalid CSRF token on Android phone](https://github.com/TriliumNext/Trilium/issues/318)
|
||||||
* [Excess spacing in lists](https://github.com/TriliumNext/Notes/issues/341)`;
|
* [Excess spacing in lists](https://github.com/TriliumNext/Trilium/issues/341)`;
|
||||||
const expected = [
|
const expected = [
|
||||||
/*html*/`<h3>🐞 Bugfixes</h3>`,
|
/*html*/`<h3>🐞 Bugfixes</h3>`,
|
||||||
/*html*/`<ul>`,
|
/*html*/`<ul>`,
|
||||||
/*html*/`<li><a href="https://github.com/TriliumNext/Notes/issues/331">v0.90.4 docker does not read USER_UID and USER_GID from environment</a></li>`,
|
/*html*/`<li><a href="https://github.com/TriliumNext/Trilium/issues/331">v0.90.4 docker does not read USER_UID and USER_GID from environment</a></li>`,
|
||||||
/*html*/`<li><a href="https://github.com/TriliumNext/Notes/issues/318">Invalid CSRF token on Android phone</a></li>`,
|
/*html*/`<li><a href="https://github.com/TriliumNext/Trilium/issues/318">Invalid CSRF token on Android phone</a></li>`,
|
||||||
/*html*/`<li><a href="https://github.com/TriliumNext/Notes/issues/341">Excess spacing in lists</a></li>`,
|
/*html*/`<li><a href="https://github.com/TriliumNext/Trilium/issues/341">Excess spacing in lists</a></li>`,
|
||||||
/*html*/`</ul>`
|
/*html*/`</ul>`
|
||||||
].join("");
|
].join("");
|
||||||
expect(markdownService.renderToHtml(input, "Title")).toStrictEqual(expected);
|
expect(markdownService.renderToHtml(input, "Title")).toStrictEqual(expected);
|
||||||
|
@ -117,11 +117,11 @@ export const downloadMatrix: DownloadMatrix = {
|
|||||||
},
|
},
|
||||||
tarX64: {
|
tarX64: {
|
||||||
name: "x86 (.tar.xz)",
|
name: "x86 (.tar.xz)",
|
||||||
url: `https://github.com/TriliumNext/Notes/releases/download/v${version}/TriliumNotes-Server-v${version}-linux-x64.tar.xz`
|
url: `https://github.com/TriliumNext/Trilium/releases/download/v${version}/TriliumNotes-Server-v${version}-linux-x64.tar.xz`
|
||||||
},
|
},
|
||||||
tarArm64: {
|
tarArm64: {
|
||||||
name: "ARM (.tar.xz)",
|
name: "ARM (.tar.xz)",
|
||||||
url: `https://github.com/TriliumNext/Notes/releases/download/v${version}/TriliumNotes-Server-v${version}-linux-arm64.tar.xz`
|
url: `https://github.com/TriliumNext/Trilium/releases/download/v${version}/TriliumNotes-Server-v${version}-linux-arm64.tar.xz`
|
||||||
},
|
},
|
||||||
nixos: {
|
nixos: {
|
||||||
name: "NixOS module",
|
name: "NixOS module",
|
||||||
@ -150,7 +150,7 @@ export const downloadMatrix: DownloadMatrix = {
|
|||||||
export function buildDownloadUrl(app: App, platform: Platform, format: string, architecture: Architecture): string {
|
export function buildDownloadUrl(app: App, platform: Platform, format: string, architecture: Architecture): string {
|
||||||
if (app === "desktop") {
|
if (app === "desktop") {
|
||||||
return downloadMatrix.desktop[platform]?.downloads[format].url ??
|
return downloadMatrix.desktop[platform]?.downloads[format].url ??
|
||||||
`https://github.com/TriliumNext/Notes/releases/download/v${version}/TriliumNotes-v${version}-${platform}-${architecture}.${format}`;
|
`https://github.com/TriliumNext/Trilium/releases/download/v${version}/TriliumNotes-v${version}-${platform}-${architecture}.${format}`;
|
||||||
} else if (app === "server") {
|
} else if (app === "server") {
|
||||||
return downloadMatrix.server[platform]?.downloads[format].url ?? "#";
|
return downloadMatrix.server[platform]?.downloads[format].url ?? "#";
|
||||||
} else {
|
} else {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* https://github.com/TriliumNext/Notes/issues/1002
|
* https://github.com/TriliumNext/Trilium/issues/1002
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { Command, DocumentSelection, Element, Node, Plugin, Range } from 'ckeditor5';
|
import { Command, DocumentSelection, Element, Node, Plugin, Range } from 'ckeditor5';
|
||||||
|
@ -23,10 +23,10 @@ const options = {
|
|||||||
title: "Trilium Notes - Sync server API",
|
title: "Trilium Notes - Sync server API",
|
||||||
version: packageJson["version"],
|
version: packageJson["version"],
|
||||||
description:
|
description:
|
||||||
"This is the internal sync server API used by Trilium Notes.\n\n_If you're looking for the officially supported External Trilium API, see [here](https://triliumnext.github.io/Docs/Wiki/etapi.html)._\n\nThis page does not yet list all routes. For a full list, see the [route controller](https://github.com/TriliumNext/Notes/blob/v0.91.6/src/routes/routes.ts).",
|
"This is the internal sync server API used by Trilium Notes.\n\n_If you're looking for the officially supported External Trilium API, see [here](https://triliumnext.github.io/Docs/Wiki/etapi.html)._\n\nThis page does not yet list all routes. For a full list, see the [route controller](https://github.com/TriliumNext/Trilium/blob/v0.91.6/src/routes/routes.ts).",
|
||||||
contact: {
|
contact: {
|
||||||
name: "TriliumNext issue tracker",
|
name: "TriliumNext issue tracker",
|
||||||
url: "https://github.com/TriliumNext/Notes/issues"
|
url: "https://github.com/TriliumNext/Trilium/issues"
|
||||||
},
|
},
|
||||||
license: {
|
license: {
|
||||||
name: "GNU Free Documentation License 1.3 (or later)",
|
name: "GNU Free Documentation License 1.3 (or later)",
|
||||||
@ -159,7 +159,7 @@ console.log("Saved to", outputPath);
|
|||||||
* type: string
|
* type: string
|
||||||
* example: "text"
|
* example: "text"
|
||||||
* enum: ["text", "code", "render", "file", "image", "search", "relationMap", "book", "noteMap", "mermaid", "canvas", "webView", "launcher", "doc", "contentWidget", "mindMap", "geoMap"]
|
* enum: ["text", "code", "render", "file", "image", "search", "relationMap", "book", "noteMap", "mermaid", "canvas", "webView", "launcher", "doc", "contentWidget", "mindMap", "geoMap"]
|
||||||
* description: "[Reference list](https://github.com/TriliumNext/Notes/blob/v0.91.6/src/services/note_types.ts)"
|
* description: "[Reference list](https://github.com/TriliumNext/Trilium/blob/v0.91.6/src/services/note_types.ts)"
|
||||||
* mime:
|
* mime:
|
||||||
* type: string
|
* type: string
|
||||||
* example: "text/html"
|
* example: "text/html"
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
import { type BrowserContext, chromium } from 'playwright';
|
import { type BrowserContext, chromium } from 'playwright';
|
||||||
import { createWriteStream, existsSync, readFileSync, writeFileSync } from 'fs';
|
import { createWriteStream, existsSync, readFileSync, writeFileSync } from 'fs';
|
||||||
|
|
||||||
const SOURCE_URL = "https://github.com/TriliumNext/Notes";
|
const SOURCE_URL = "https://github.com/TriliumNext/Trilium";
|
||||||
const TARGET_REPOSITORY_ID = 92111509;
|
const TARGET_REPOSITORY_ID = 92111509;
|
||||||
|
|
||||||
const fsLog = createWriteStream('port-discussions.log', { flags: 'a' });
|
const fsLog = createWriteStream('port-discussions.log', { flags: 'a' });
|
||||||
|
Loading…
x
Reference in New Issue
Block a user