Compare commits

...

16 Commits

Author SHA1 Message Date
renovate[bot]
523b64e9e8 Update dependency marked to v18.0.1 2026-04-21 02:00:52 +00:00
Adorian Doran
ca52fabb8a Merge branch 'main' of https://github.com/TriliumNext/Trilium 2026-04-21 01:31:45 +03:00
Adorian Doran
cbeb539c69 style/about dialog: tweak the background color for the nightly channel 2026-04-21 01:31:42 +03:00
Elian Doran
a988543487 fix(share): unchecked TODOs not visible in dark theme (closes #8944) 2026-04-20 08:56:44 +03:00
Elian Doran
d625565830 Update Node.js to v24.15.0 (#9505) 2026-04-20 08:22:34 +03:00
Elian Doran
ef7facc3f0 Update dependency force-graph to v1.51.4 (#9499) 2026-04-20 08:21:49 +03:00
Elian Doran
b20d2436fa Update dependency @types/express-session to v1.19.0 (#9503) 2026-04-20 08:20:00 +03:00
Elian Doran
516a177bfb Update actions/checkout action to v6 (#9506) 2026-04-20 08:19:27 +03:00
Elian Doran
26efc3a8ff Update dependency wxt to v0.20.23 (#9502) 2026-04-20 08:18:11 +03:00
Elian Doran
91e989719b Update dependency typescript to v6.0.3 (#9501) 2026-04-20 08:17:15 +03:00
renovate[bot]
390877931b Update actions/checkout action to v6 2026-04-20 01:09:06 +00:00
renovate[bot]
f794a34132 Update Node.js to v24.15.0 2026-04-20 01:08:59 +00:00
renovate[bot]
67f5fc3dbc Update dependency @types/express-session to v1.19.0 2026-04-20 01:08:10 +00:00
renovate[bot]
753475ee46 Update dependency wxt to v0.20.23 2026-04-20 01:07:31 +00:00
renovate[bot]
90e4e73316 Update dependency typescript to v6.0.3 2026-04-20 01:06:55 +00:00
renovate[bot]
b5a4956188 Update dependency force-graph to v1.51.4 2026-04-20 01:05:37 +00:00
22 changed files with 264 additions and 250 deletions

View File

@@ -0,0 +1,7 @@
{
"permissions": {
"allow": [
"Bash(gh issue *)"
]
}
}

View File

@@ -27,7 +27,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 1

View File

@@ -26,7 +26,7 @@ jobs:
actions: read # Required for Claude to read CI results on PRs
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 1

View File

@@ -51,7 +51,7 @@
"debounce": "3.0.0",
"dompurify": "3.4.0",
"draggabilly": "3.0.0",
"force-graph": "1.51.2",
"force-graph": "1.51.4",
"htmldiff-js": "1.0.5",
"i18next": "26.0.4",
"i18next-http-backend": "3.0.4",
@@ -62,7 +62,7 @@
"leaflet": "1.9.4",
"leaflet-gpx": "2.2.0",
"mark.js": "8.11.1",
"marked": "18.0.0",
"marked": "18.0.1",
"mermaid": "11.14.0",
"mind-elixir": "5.10.0",
"panzoom": "9.4.4",

View File

@@ -3,7 +3,7 @@
--donate-button-color: #e33f3b;
&.nightly {
--modal-background-color: #f2e1ff;
--modal-background-color: #f6eefd ;
}
}

View File

@@ -1,4 +1,4 @@
FROM node:24.14.1-bullseye-slim AS builder
FROM node:24.15.0-bullseye-slim AS builder
RUN corepack enable
# Install build tools required to compile native addons (e.g. better-sqlite3) on ARM
@@ -15,7 +15,7 @@ COPY ./docker/package.json ./docker/pnpm-workspace.yaml /usr/src/app/
# We have to use --no-frozen-lockfile due to CKEditor patches
RUN pnpm install --no-frozen-lockfile --prod && pnpm rebuild
FROM node:24.14.1-bullseye-slim
FROM node:24.15.0-bullseye-slim
# Install only runtime dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends \

View File

@@ -1,4 +1,4 @@
FROM node:24.14.1-alpine AS builder
FROM node:24.15.0-alpine AS builder
RUN corepack enable
# Install build tools required to compile native addons (e.g. better-sqlite3) on ARM
@@ -10,7 +10,7 @@ COPY ./docker/package.json ./docker/pnpm-workspace.yaml /usr/src/app/
# We have to use --no-frozen-lockfile due to CKEditor patches
RUN pnpm install --no-frozen-lockfile --prod && pnpm rebuild
FROM node:24.14.1-alpine
FROM node:24.15.0-alpine
# Install runtime dependencies
RUN apk add --no-cache su-exec shadow

View File

@@ -1,4 +1,4 @@
FROM node:24.14.1-alpine AS builder
FROM node:24.15.0-alpine AS builder
RUN corepack enable
# Install build tools required to compile native addons (e.g. better-sqlite3) on ARM
@@ -10,7 +10,7 @@ COPY ./docker/package.json ./docker/pnpm-workspace.yaml /usr/src/app/
# We have to use --no-frozen-lockfile due to CKEditor patches
RUN pnpm install --no-frozen-lockfile --prod && pnpm rebuild
FROM node:24.14.1-alpine
FROM node:24.15.0-alpine
# Create a non-root user with configurable UID/GID
ARG USER=trilium
ARG UID=1001

View File

@@ -1,4 +1,4 @@
FROM node:24.14.1-bullseye-slim AS builder
FROM node:24.15.0-bullseye-slim AS builder
RUN corepack enable
# Install build tools required to compile native addons (e.g. better-sqlite3) on ARM
@@ -15,7 +15,7 @@ COPY ./docker/package.json ./docker/pnpm-workspace.yaml /usr/src/app/
# We have to use --no-frozen-lockfile due to CKEditor patches
RUN pnpm install --no-frozen-lockfile --prod && pnpm rebuild
FROM node:24.14.1-bullseye-slim
FROM node:24.15.0-bullseye-slim
# Create a non-root user with configurable UID/GID
ARG USER=trilium
ARG UID=1001

View File

@@ -58,7 +58,7 @@
"@types/ejs": "3.1.5",
"@types/escape-html": "1.0.4",
"@types/express-http-proxy": "1.6.7",
"@types/express-session": "1.18.2",
"@types/express-session": "1.19.0",
"@types/fs-extra": "11.0.4",
"@types/html": "1.0.4",
"@types/ini": "4.1.1",
@@ -110,7 +110,7 @@
"is-animated": "2.0.2",
"is-svg": "6.1.0",
"jimp": "1.6.1",
"marked": "18.0.0",
"marked": "18.0.1",
"mime-types": "3.0.2",
"multer": "2.1.1",
"normalize-strings": "1.1.1",

View File

@@ -16,7 +16,7 @@
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@wxt-dev/auto-icons": "1.1.1",
"wxt": "0.20.22"
"wxt": "0.20.23"
},
"dependencies": {
"cash-dom": "8.1.5"

View File

@@ -19,7 +19,7 @@
"@preact/preset-vite": "2.10.5",
"eslint": "10.2.0",
"eslint-config-preact": "2.0.0",
"typescript": "6.0.2",
"typescript": "6.0.3",
"user-agent-data-types": "0.4.3",
"vite": "8.0.8",
"vitest": "4.1.4"

View File

@@ -75,7 +75,7 @@
"rollup-plugin-webpack-stats": "3.1.1",
"tslib": "2.8.1",
"tsx": "4.21.0",
"typescript": "6.0.2",
"typescript": "6.0.3",
"typescript-eslint": "8.58.2",
"vite": "8.0.8",
"vite-plugin-dts": "4.5.4",

View File

@@ -27,7 +27,7 @@
"eslint-config-ckeditor5": ">=9.1.0",
"stylelint": "17.7.0",
"stylelint-config-ckeditor5": ">=9.1.0",
"typescript": "6.0.2",
"typescript": "6.0.3",
"vite-plugin-svgo": "2.0.0",
"vitest": "4.1.4",
"webdriverio": "9.27.0"

View File

@@ -28,7 +28,7 @@
"eslint-config-ckeditor5": ">=9.1.0",
"stylelint": "17.7.0",
"stylelint-config-ckeditor5": ">=9.1.0",
"typescript": "6.0.2",
"typescript": "6.0.3",
"vite-plugin-svgo": "2.0.0",
"vitest": "4.1.4",
"webdriverio": "9.27.0"

View File

@@ -30,7 +30,7 @@
"eslint-config-ckeditor5": ">=9.1.0",
"stylelint": "17.7.0",
"stylelint-config-ckeditor5": ">=9.1.0",
"typescript": "6.0.2",
"typescript": "6.0.3",
"vite-plugin-svgo": "2.0.0",
"vitest": "4.1.4",
"webdriverio": "9.27.0"

View File

@@ -30,7 +30,7 @@
"eslint-config-ckeditor5": ">=9.1.0",
"stylelint": "17.7.0",
"stylelint-config-ckeditor5": ">=9.1.0",
"typescript": "6.0.2",
"typescript": "6.0.3",
"vite-plugin-svgo": "2.0.0",
"vitest": "4.1.4",
"webdriverio": "9.27.0"

View File

@@ -30,7 +30,7 @@
"eslint-config-ckeditor5": ">=9.1.0",
"stylelint": "17.7.0",
"stylelint-config-ckeditor5": ">=9.1.0",
"typescript": "6.0.2",
"typescript": "6.0.3",
"vite-plugin-svgo": "2.0.0",
"vitest": "4.1.4",
"webdriverio": "9.27.0"

View File

@@ -16,6 +16,6 @@
},
"dependencies": {
"dayjs": "1.11.20",
"marked": "18.0.0"
"marked": "18.0.1"
}
}

View File

@@ -37,6 +37,6 @@
"esbuild": "0.28.0",
"eslint": "10.2.0",
"highlight.js": "11.11.1",
"typescript": "6.0.2"
"typescript": "6.0.3"
}
}

View File

@@ -121,3 +121,8 @@ iframe.pdf-view {
.ck-content .ck-content-widget.footnote-section .ck-content-widget__type-around__button_after {
display: none;
}
.ck-content .todo-list .todo-list__label > input:before {
background-color: var(--background-primary);
border-color: var(--text-primary) !important;
}

452
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff