diff --git a/apps/desktop/package-lock.json b/apps/desktop/package-lock.json index e57cc516f..2bdf5e5a6 100644 --- a/apps/desktop/package-lock.json +++ b/apps/desktop/package-lock.json @@ -1,12 +1,12 @@ { "name": "@notesnook/desktop", - "version": "3.3.19", + "version": "3.3.20", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@notesnook/desktop", - "version": "3.3.19", + "version": "3.3.20", "hasInstallScript": true, "license": "GPL-3.0-or-later", "dependencies": { diff --git a/apps/desktop/package.json b/apps/desktop/package.json index ba2d9bc1e..07ef9cc40 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -2,7 +2,7 @@ "name": "@notesnook/desktop", "productName": "Notesnook", "description": "Your private note taking space", - "version": "3.3.19", + "version": "3.3.20", "appAppleId": "1544027013", "private": true, "main": "./dist/cjs/index.js", diff --git a/apps/web/package-lock.json b/apps/web/package-lock.json index 400b6e2ea..8c2c92cb9 100644 --- a/apps/web/package-lock.json +++ b/apps/web/package-lock.json @@ -1,12 +1,12 @@ { "name": "@notesnook/web", - "version": "3.3.19", + "version": "3.3.20", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@notesnook/web", - "version": "3.3.19", + "version": "3.3.20", "hasInstallScript": true, "license": "GPL-3.0-or-later", "dependencies": { diff --git a/apps/web/package.json b/apps/web/package.json index 2d98494ee..7b5521bd3 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -1,7 +1,7 @@ { "name": "@notesnook/web", "description": "Your private note taking space", - "version": "3.3.19", + "version": "3.3.20", "private": true, "main": "./src/app.js", "homepage": "https://notesnook.com/", diff --git a/apps/web/src/dialogs/feature-dialog.tsx b/apps/web/src/dialogs/feature-dialog.tsx index 195bbb70c..635e410c6 100644 --- a/apps/web/src/dialogs/feature-dialog.tsx +++ b/apps/web/src/dialogs/feature-dialog.tsx @@ -22,7 +22,14 @@ import Dialog from "../components/dialog"; import { getHomeRoute, hardNavigate } from "../navigation"; import { appVersion } from "../utils/version"; import Config from "../utils/config"; -import { ArrowRight, Checkmark, Icon, Warn } from "../components/icons"; +import { + ArrowRight, + Checkmark, + Icon, + Warn, + File, + InternalLink +} from "../components/icons"; import { BaseDialogProps, DialogManager } from "../common/dialog-manager"; import { strings } from "@notesnook/intl"; @@ -89,7 +96,19 @@ const features: Record = { ) } ] - : [], + : [ + { + icon: File, + title: "Improved attachments UX", + subtitle: + "We've improved the UI/UX of attaching multiple files into the editor. The entire process is now handled in a unified dialog." + }, + { + icon: InternalLink, + title: "Opening file links on desktop", + subtitle: "The NN Desktop app can now open file links (file:///)." + } + ], cta: { title: strings.gotIt(), icon: Checkmark,