diff --git a/apps/mobile/android/releasenotes/whatsnew-en-US b/apps/mobile/android/releasenotes/whatsnew-en-US index d333e468c..721c9812a 100644 --- a/apps/mobile/android/releasenotes/whatsnew-en-US +++ b/apps/mobile/android/releasenotes/whatsnew-en-US @@ -1,7 +1,10 @@ -- Two-factor authentication -- Fix collapse heading icon not showing correctly -- Fix items in search are not updated properly -- Improve login/signup UX -- Do not show progress on backup +- Sync over web-sockets +- Optionally disable section headers in lists +- Formatting support for notification notes +- Fix bold text in editor +- Fix session-expired dialog does not hide after login +- Fix login issues when 2FA enabled +- Fix a race condition causing note to be empty in editor +- Fix pin to notifications not working Thank you for using Notesnook! \ No newline at end of file diff --git a/apps/mobile/features.ts b/apps/mobile/features.ts index fa2e82159..d366abcef 100644 --- a/apps/mobile/features.ts +++ b/apps/mobile/features.ts @@ -2,7 +2,11 @@ import { FeatureType } from './src/components/sheets/new-feature'; export const features: FeatureType[] = [ { - title: 'Two-factor authentication', - body: 'Improved security for your account. Go to Settings to enable 2FA' + title: 'Sync over web-sockets', + body: 'We have moved from SSE to web-sockets! Enjoy instant, fast and reliable sync with progress.' + }, + { + title: 'Disable section headers', + body: 'Now you can disable section headers in lists by changing grouping to "none"' } ]; diff --git a/apps/mobile/release_notes.txt b/apps/mobile/release_notes.txt index 92dc81047..06134367d 100644 --- a/apps/mobile/release_notes.txt +++ b/apps/mobile/release_notes.txt @@ -1,8 +1,9 @@ -- Two-factor authentication -- Fix collapse heading icon not showing correctly -- Fix items in search are not updated properly -- Improve login/signup UX -- Do not show progress on backup - +- Sync over web-sockets +- Disable section headers in lists by changing grouping to "none" +- Fix padding-left on bold text in editor +- Fix session-expired dialog does not hide after login +- Fix login issues when 2FA enabled on some devices +- Fix a race condition causing note to be empty in editor +- Fix pin to notifications not working for some notes Thank you for using Notesnook! \ No newline at end of file diff --git a/apps/mobile/releasenotes.md b/apps/mobile/releasenotes.md index 4b1260656..e66482109 100644 --- a/apps/mobile/releasenotes.md +++ b/apps/mobile/releasenotes.md @@ -1,11 +1,13 @@ # What's new -- Two-factor authentication +- Sync over web-sockets +- Optionally Disable section headers in lists by changing grouping to "none" +- Formatting support for notification notes # What's fixed -- Fix collapse heading icon not showing correctly -- Fix items in search are not updated properly -- Improve login/signup UX -- Do not show progress on backup - +- Fix padding-left on bold text in editor +- Fix session-expired dialog does not hide after login +- Fix login issues when 2FA enabled on some devices +- Fix a race condition causing note to be empty in editor +- Fix pin to notifications not working for some notes Thank you for using Notesnook! \ No newline at end of file