Skip to content

Commit

Permalink
web: bump version to 2.6.16
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodrr committed Mar 6, 2024
1 parent 9a1f54c commit 9b72890
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 13 deletions.
4 changes: 2 additions & 2 deletions apps/desktop/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@notesnook/desktop",
"productName": "Notesnook",
"description": "Your private note taking space",
"version": "2.6.15",
"version": "2.6.16",
"appAppleId": "1544027013",
"private": true,
"main": "./dist/index.js",
Expand Down
4 changes: 2 additions & 2 deletions apps/web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@notesnook/web",
"description": "Your private note taking space",
"version": "2.6.15",
"version": "2.6.16",
"private": true,
"main": "./src/app.js",
"homepage": "https://notesnook.com/",
Expand Down
28 changes: 21 additions & 7 deletions apps/web/src/dialogs/feature-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,20 +91,34 @@ const features: Record<FeatureKeys, Feature> = {
]
: [
{
title: "Daily trash cleanup interval",
title: "Sort reminders by due date",
subtitle:
"You can now set the trash cleanup interval to Daily in addition to Weekly, Monthly & Yearly."
"You can now sort your reminders by due date to quickly see which reminders are upcoming."
},
{
title: "Organized bulk exports",
title: "Restore backups using encryption key",
subtitle:
"Bulk exports are now automatically sorted/organized into folders based on your Notebook/Topic organization."
"If you forget your password but still have your recovery key, you can now use that to restore your backups."
},
{
title: "New domain for Monographs",
title: "Disable markdown in editor",
subtitle:
"Monographs will now be published to monogr.ph instead of monograph.notesnook.com. Don't worry, all your published notes will automatically redirect."
}
"If you find automatic markdown shortcuts annoying, you can now turn those off from Settings > Editor > Disable markdown shortcuts."
},
{
title: "Improved password reset",
subtitle:
"Resetting password should now be much more reliable and safer."
},
...(IS_DESKTOP_APP
? [
{
title: "Proxy settings",
subtitle:
"Desktop app now support setting a custom proxy url to route all network through it. Useful if you are behind a firewall and would like to bypass it."
}
]
: [])
],
cta: {
title: "Got it",
Expand Down

0 comments on commit 9b72890

Please sign in to comment.