Releases: zadam/trilium
v0.30.2-beta release
v0.30.1-beta release
v0.30.1-beta
v0.30.0-beta 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
- only few small issues fixed compared to 0.29.0-beta
v0.29.0-beta release
Features:
- #356 custom request handlers
- custom CSS themes, added an example theme called Steel Blue into demo document.
- refactored consistency checks + more "auto fixers" for possible issues
- #385 URL to create a search
Bug fixes:
v0.28.3 release
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
v0.28.1-beta release
v0.28.1-beta
v0.28.0-beta release
v0.27.4 release
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