Skip to content

Releases: zadam/trilium

v0.30.2-beta release

28 Feb 21:45
Compare
Choose a tag to compare
v0.30.2-beta release Pre-release
Pre-release
  • more work on import - it's possible to configure more things in the import dialog
  • drag & drop files from OS file manager into a tree or into note detail
  • some bug fixes - #422, #427

v0.30.1-beta release

20 Feb 22:18
Compare
Choose a tag to compare
v0.30.1-beta release Pre-release
Pre-release

v0.30.1-beta

v0.30.0-beta release

20 Feb 21:09
Compare
Choose a tag to compare
v0.30.0-beta release Pre-release
Pre-release
  • Ability to create Weekly Notes? #416
  • add note android app issue #415
  • Create note info dialog #408
  • Add import dialog #399
  • Import & Export dialog show progress
  • Arbitrary Code Execution #398
  • Debian package support
  • OPML 2.0 import/export, #286, #298
  • In app help, #273
  • Save electron window size and position #186
  • Global menu with access to e.g. SQL console and Dev tools
  • SQL console now shows schema for all tables

Database changes and script migration

This version brings a change in the DB structure - content of the note is now stored in a new table note_contents. This is done to improve scalability/performance - operations working on Note entities needlessly fetched note content (because it was part of Note entity) even though it was not used. This was particularly bad for large notes and when working with a lot of them (e.g. searching by label). Now content is loaded only when explicitly needed.

This requires changes in scripts which read/write note content. Example of previous usage:

note.content
// =>
await note.getContent(); // returns JSON object of the note content

note.jsonContent;
// =>
await note.getJsonContent(); // returns string

await note.getNoteContent(); // returns NoteContent entity

You can see detailed API for Note and NoteContent.

This change also necessitates update of the sync protocol so you will need to upgrade all instances simultaneously.

v0.29.1 release

12 Feb 19:38
Compare
Choose a tag to compare
  • only few small issues fixed compared to 0.29.0-beta

v0.29.0-beta release

03 Feb 14:52
Compare
Choose a tag to compare
v0.29.0-beta release Pre-release
Pre-release

Features:

Bug fixes:

  • #392 Better icon for iOS' homescreen
  • #387 Fixed extra angle brackets in tree in dark themes
  • #384 Character code specification in HTML header
  • #377 add confirm type change dialog when note not empty
  • #376 Alt-Left and Alt-Right Key Bindings for Mac
  • #375 Moving sometimes has strange side effects

v0.28.3 release

22 Jan 22:10
Compare
Choose a tag to compare

Mostly small visual fixes:

  • text note should change its icon after having new note inserted into, #361
  • make search dialog more responsive in narrow sidebar, fixes #367
  • font sizes were not created for new documents - fix plus migration from already created documents
  • make tree selection more visually consistent
  • fix icon in desktop linux build, fixes #372

v0.28.2 release

21 Jan 22:04
Compare
Choose a tag to compare

Fixes mainly consistency check bug introduced in 0.28.X and contains "auto fixer" #366, #355

v0.28.1-beta release

16 Jan 23:12
Compare
Choose a tag to compare
v0.28.1-beta release Pre-release
Pre-release

v0.28.1-beta

v0.28.0-beta release

14 Jan 23:01
Compare
Choose a tag to compare
v0.28.0-beta release Pre-release
Pre-release

Highlights:

  • configurable font sizes #326
  • foundation for proper theming #328
  • fixed export with non-ASCII root notes #285, #331
  • desktop builds are now in ASAR format which dramatically lowers number of files #271
  • Windows and Mac builds are now packaged in ZIP, linux ones in .tar.xz

v0.27.4 release

10 Jan 20:42
Compare
Choose a tag to compare

Smaller fixes, mainly UI:

  • Docker image fails to build #274
  • Header bar does not fully extend when advanced sample button removed #276
  • Cant log in with Mac desktop app - Auth request time is out of sync #277
  • Buttons in Options Not Visible #297
  • Imported a directory of markdown and items not showing in links #293
  • evernote import freezes #288
  • Protecting Journal/Today produces error message when leaving protected session #279
  • Changing saved search #304
  • shortcuts for mac should use cmd instead of ctrl #290
  • Cannot paste password from password manager #267
  • JSON file not saving the content. #307
  • [Bug] Hoisted Note detection #320
  • Bug: recent-docs dropdown doesn't disappear when attributes dialog closes #272