Notesnook v3.0.13 fixes 7 bugs via 8 commits. Fixed attachments flicker in note properties, pressing Enter in title now focuses the editor, and fixed crash on moving tabs.
Previous releases:
v3.0.12
fixes 9 bugs via 16 commits. Faster attachment downloads, update availability indicator fixed on desktop app, and added support for clearing attachment cache.v3.0.11
fixes 10 bugs via 24 commits. Editor session data is now stored encrypted by default, fixed various editor related issues especially with pasting content, and other performance optimizations.v3.0.10
fixes 5 bugs via 6 commits. Fixed weird UI glitches when scrolling in different lists, Pro popup is now shown only if there are images when pasting, and markdown shortcuts are working again.
Fixed attachments flicker in note properties
Flicker when scrolling the properties sidebar with a lot of attachments (50+) is now gone.
Pressing Enter now moves the focus to the Editor
A minor UX improvement but you can now press Enter to directly focus the editor (instead of using the mouse or Tab).
Fixed crash on moving a temporary tab
This crash was most probably occuring due to the migration we did in v3.0.11 from immer
to mutative
. For some reason (I haven't investigated why yet), using splice
on an array adds an undefined
item at the end of the error causing the crash. This has now been fixed with a workaround.
Fixed error when setting a yearly reminder for January
This was a long standing bug from v2. In Notesnook, reminders work using a Task Scheduler that uses Cron expressions to schedule different tasks (e.g. update checks, reminders etc.). The error was occuring because in JavaScript, months are indexed from 0-11 while Cron expects 1-12. So an expression like this 0 0 0 15 0 * *
causes a crash.
This has now been fixed.
Read the full commit history here.