Elian Doran
97256ba291
feat(options): add nicer sync timeout selector ( closes #5513 )
2026-04-10 23:12:07 +03:00
Elian Doran
d3c596aaa0
feat(highlights): render highlighted equations in new layout
2026-04-10 23:03:30 +03:00
Elian Doran
3d2fa57873
fix(toc): equations sometimes duplicated
2026-04-10 23:01:07 +03:00
Elian Doran
c435050018
refactor(client): deduplicate checks for title/icon editability
2026-04-10 22:36:13 +03:00
Elian Doran
14f761de36
fix(options): icons can be modified
2026-04-10 22:35:06 +03:00
Elian Doran
626438d8f5
fix(options): titles can be modified ( closes #5371 )
2026-04-10 22:33:39 +03:00
Elian Doran
e29555a89b
fix(collections/calendar): displaying deep children ( closes #7944 )
2026-04-10 22:17:55 +03:00
Elian Doran
05da2d7a50
fix(collections/table): unable to set number cell to zero ( closes #6555 )
2026-04-10 22:11:10 +03:00
Elian Doran
878603c7b0
fix(jump_to_note): caret at the end when entering command mode ( closes #7942 )
2026-04-10 21:17:38 +03:00
Elian Doran
9f26d6efdc
feat(text): render note icons in autocompletion ( closes #8188 )
2026-04-10 21:11:49 +03:00
Elian Doran
043e620231
fix(setup): trailing slash affects sync ( closes #8045 )
2026-04-10 21:09:29 +03:00
Elian Doran
3af2b32783
fix(react): workaround for bootstrap tooltip error ( closes #8900 )
2026-04-10 20:43:41 +03:00
Elian Doran
540b607459
fix(note_map): freezing the app if there are too many notes ( closes #8916 )
2026-04-10 20:13:00 +03:00
Elian Doran
ee229bd0d7
fix(client): note title doesn't get selected anymore when creating new note ( closes #8407 )
2026-04-10 20:04:23 +03:00
Elian Doran
8c379d03a9
Update apps/client/src/widgets/collections/calendar/index.tsx
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
2026-04-10 13:41:25 +03:00
Elian Doran
ff31104b99
fix(collections/calendar): unnecessary start date set when editing a note in quick edit
2026-04-10 13:31:44 +03:00
Elian Doran
dfe6063929
fix(client): spaced update saving more times than necesssary and causing performance issues
2026-04-10 12:00:08 +03:00
Elian Doran
a4b716f8c7
fix(board): clicking on a URL would open th quick edit panel
2026-04-10 11:38:42 +03:00
Elian Doran
7efc36efef
fix(collections): not reacting to changes in reordering
2026-04-10 11:35:32 +03:00
Elian Doran
6fb19d0287
feat: add download button for backups ( #9190 )
2026-04-10 11:00:04 +03:00
Lorinc936
9e701645d5
Merge branch 'TriliumNext:main' into main
2026-04-09 11:23:49 +00:00
Giovi
ce4f9f5f01
Translated using Weblate (Italian)
...
Currently translated at 100.0% (1846 of 1846 strings)
Translation: Trilium Notes/Client
Translate-URL: https://hosted.weblate.org/projects/trilium/client/it/
2026-04-09 11:10:03 +00:00
green
c131b245bc
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (1846 of 1846 strings)
Translation: Trilium Notes/Client
Translate-URL: https://hosted.weblate.org/projects/trilium/client/ja/
2026-04-09 11:09:58 +00:00
Ali Kaya
42aabaf9b5
Translated using Weblate (Turkish)
...
Currently translated at 6.5% (121 of 1846 strings)
Translation: Trilium Notes/Client
Translate-URL: https://hosted.weblate.org/projects/trilium/client/tr/
2026-04-09 11:09:56 +00:00
Bas Wouters
84cce151b8
Translated using Weblate (Dutch)
...
Currently translated at 4.1% (76 of 1846 strings)
Translation: Trilium Notes/Client
Translate-URL: https://hosted.weblate.org/projects/trilium/client/nl/
2026-04-09 11:09:54 +00:00
Aindriú Mac Giolla Eoin
3005917256
Translated using Weblate (Irish)
...
Currently translated at 100.0% (1846 of 1846 strings)
Translation: Trilium Notes/Client
Translate-URL: https://hosted.weblate.org/projects/trilium/client/ga/
2026-04-09 11:09:50 +00:00
Elian Doran
22d853e0b0
Apply suggestions from code review
...
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
Co-authored-by: Elian Doran <contact@eliandoran.me >
2026-04-07 20:26:55 +03:00
Elian Doran
40fd8d6d1a
fix(quick_search): ctrl+click & middle click not working ( closes #9220 )
2026-04-07 19:18:16 +03:00
Elian Doran
e37f73bce0
fix(tab_bar): changing note icon reflect in the tab icon ( closes #8994 )
2026-04-07 19:11:26 +03:00
Elian Doran
1764fcbba2
fix(script): useContext not provided in imports ( closes #9152 )
2026-04-07 18:49:54 +03:00
Elian Doran
19f3552bfc
fix(calendar): colors unreadable on dark theme ( closes #8989 )
...
The calendar event has a light yellow background with light yellow text in dark theme, making it nearly unreadable.
The root cause is a CSS load order issue. The :root defaults in index.css:1-10 are loaded after the dark theme's :root overrides (since component CSS loads after global CSS in Vite), so the defaults (95% lightness, 80% saturation) stomp over the dark theme values (20% lightness, 25% saturation). The background stays light, but --custom-color correctly gets the dark-adjusted (light) text color → light-on-light = bad contrast.
The fix: remove the :root block and use var() fallbacks instead, so there's no :root competition.
2026-04-07 18:48:32 +03:00
Elian Doran
cedce6cf32
feat(relation_map): rename relations through context menu ( closes #442 )
2026-04-07 18:47:00 +03:00
Hosted Weblate
d75f556074
Update translation files
...
Updated by "Cleanup translation files" add-on in Weblate.
Translation: Trilium Notes/Client
Translate-URL: https://hosted.weblate.org/projects/trilium/client/
2026-04-07 15:03:00 +02:00
Ali Kaya
eb66810e59
Translated using Weblate (Turkish)
...
Currently translated at 5.6% (104 of 1842 strings)
Translation: Trilium Notes/Client
Translate-URL: https://hosted.weblate.org/projects/trilium/client/tr/
2026-04-07 15:02:55 +02:00
Tomas Adamek
540b39206d
Translated using Weblate (Czech)
...
Currently translated at 100.0% (1842 of 1842 strings)
Translation: Trilium Notes/Client
Translate-URL: https://hosted.weblate.org/projects/trilium/client/cs/
2026-04-07 15:02:55 +02:00
Giovi
f5e65748a7
Translated using Weblate (Italian)
...
Currently translated at 100.0% (1842 of 1842 strings)
Translation: Trilium Notes/Client
Translate-URL: https://hosted.weblate.org/projects/trilium/client/it/
2026-04-07 15:02:53 +02:00
Elian Doran
21f6cc00eb
feat(options/spellcheck): improve display in browser
2026-04-07 13:31:22 +03:00
Elian Doran
620a080128
feat(options/media): hide spellcheck related setting in browser
2026-04-07 13:28:44 +03:00
Elian Doran
bd1491e6e5
feat(options/i18n): add reference to spell check
2026-04-06 22:08:23 +03:00
Elian Doran
ac35730e3b
feat(options/spellcheck): add button to reload app
2026-04-06 21:56:31 +03:00
Elian Doran
00023adbc0
Revert "feat(options/spellcheck): merge into single card"
...
This reverts commit 7b056fe1af .
2026-04-06 21:53:17 +03:00
Elian Doran
a70142a4dc
feat(options/spellcheck): add button to edit custom words
2026-04-06 21:50:54 +03:00
Elian Doran
7b056fe1af
feat(options/spellcheck): merge into single card
2026-04-06 21:44:49 +03:00
Elian Doran
467be38bd1
feat(options/spellcheck): improve language selection
2026-04-06 21:39:58 +03:00
Elian Doran
3ed7d48d42
feat(spellcheck): save new words to custom dictionary
2026-04-06 20:28:22 +03:00
Elian Doran
bf8cfa1421
Merge branch 'main' of https://github.com/TriliumNext/Trilium
2026-04-06 19:48:42 +03:00
Elian Doran
bdd806efff
refactor: delegate theme management completely to client via bootstrap
2026-04-06 19:45:18 +03:00
Elian Doran
c912c4af7b
fix(webview): refresh content for SPAs with "query string" in hash ( #8883 )
2026-04-06 18:50:16 +03:00
Elian Doran
dd4cab22c1
chore(client): address requested changes
2026-04-06 12:22:00 +03:00
Elian Doran
c4d3e776a1
refactor(client): the last circular dependency
2026-04-06 12:20:40 +03:00