web: bump version to 2.5.4

This commit is contained in:
Abdullah Atta
2023-06-23 14:23:21 +05:00
parent 8d285c93d9
commit f5c2962951
5 changed files with 8 additions and 27 deletions

View File

@@ -1,12 +1,12 @@
{
"name": "@notesnook/desktop",
"version": "2.5.3",
"version": "2.5.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@notesnook/desktop",
"version": "2.5.3",
"version": "2.5.4",
"license": "GPL-3.0-or-later",
"dependencies": {
"@trpc/client": "^10.29.1",

View File

@@ -2,7 +2,7 @@
"name": "@notesnook/desktop",
"productName": "Notesnook",
"description": "Your private note taking space",
"version": "2.5.3",
"version": "2.5.4",
"appAppleId": "1544027013",
"private": true,
"main": "./dist/index.js",

View File

@@ -1,12 +1,12 @@
{
"name": "@notesnook/web",
"version": "2.5.3",
"version": "2.5.4",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@notesnook/web",
"version": "2.5.3",
"version": "2.5.4",
"license": "GPL-3.0-or-later",
"dependencies": {
"@aws-sdk/util-base64-browser": "^3.208.0",

View File

@@ -1,7 +1,7 @@
{
"name": "@notesnook/web",
"description": "Your private note taking space",
"version": "2.5.3",
"version": "2.5.4",
"private": true,
"main": "./src/app.js",
"homepage": "https://notesnook.com/",

View File

@@ -22,7 +22,7 @@ import Dialog from "../components/dialog";
import { getHomeRoute, hardNavigate } from "../navigation";
import { appVersion } from "../utils/version";
import Config from "../utils/config";
import { isDesktop, isTesting } from "../utils/platform";
import { isTesting } from "../utils/platform";
import { useEffect } from "react";
import { ArrowRight, Checkmark, Icon, Warn } from "../components/icons";
@@ -89,26 +89,7 @@ const features: Record<FeatureKeys, Feature> = {
)
}
]
: isDesktop()
? [
{
title: "New UI for settings",
subtitle:
"We have revamped Notesnook Settings from the groundup to be better suited to the desktop form factor. Take a look and let us know what you think!"
},
{
title: "100% native encryption",
subtitle:
"The desktop app (this app) now uses 100% native encryption instead of a WebAssembly based solution. The result is 10x faster encryption improving the sync performance on desktop significantly."
}
]
: [
{
title: "New UI for settings",
subtitle:
"We have revamped Notesnook Settings from the groundup to be better suited to the desktop form factor. Take a look and let us know what you think!"
}
],
: [],
cta: {
title: "Got it",
icon: Checkmark,