diff --git a/apps/mobile/android/app/build.gradle b/apps/mobile/android/app/build.gradle index 7b324603d..bd0ea8d47 100644 --- a/apps/mobile/android/app/build.gradle +++ b/apps/mobile/android/app/build.gradle @@ -125,7 +125,7 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion multiDexEnabled true - versionCode 3086 + versionCode 3087 versionName getNpmVersion() testBuildType System.getProperty('testBuildType', 'debug') testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' diff --git a/apps/mobile/app/screens/wrapped/index.tsx b/apps/mobile/app/screens/wrapped/index.tsx index 55292657b..aa90dd368 100644 --- a/apps/mobile/app/screens/wrapped/index.tsx +++ b/apps/mobile/app/screens/wrapped/index.tsx @@ -24,9 +24,7 @@ import dayjs from "dayjs"; import React, { useEffect, useRef, useState } from "react"; import { ActivityIndicator, - Dimensions, ScrollView, - StyleSheet, useWindowDimensions, View } from "react-native"; @@ -44,8 +42,6 @@ import { useNavigationFocus } from "../../hooks/use-navigation-focus"; import Navigation, { NavigationProps } from "../../services/navigation"; import { AppFontSize } from "../../utils/size"; import { DefaultAppStyles } from "../../utils/styles"; -import { useSettingStore } from "../../stores/use-setting-store"; -import { useStoredRef } from "../../hooks/use-stored-ref"; function formatNumber(num: number) { if (num >= 1000000) { @@ -635,7 +631,8 @@ function SummarySlide({ > =20" } -} +} \ No newline at end of file diff --git a/docs/help/contents/keyboard-shortcuts.md b/docs/help/contents/keyboard-shortcuts.md index 654b5b5fb..dfce26fb6 100644 --- a/docs/help/contents/keyboard-shortcuts.md +++ b/docs/help/contents/keyboard-shortcuts.md @@ -22,7 +22,7 @@ The following keyboard shortcuts will help you navigate Notesnook faster. | --- | --- | --- | --- | | Next tab | Ctrl Alt → / Ctrl Alt ⇧ → | Ctrl tab | ⌘ tab | | Previous tab | Ctrl Alt ← / Ctrl Alt ⇧ ← | Ctrl ⇧ tab | ⌘ ⇧ tab | -| Command palette | Ctrl ⇧ P | Ctrl ⇧ P | ⌘ ⇧ P | +| Command palette | Ctrl ⇧ P / Ctrl ⇧ : | Ctrl ⇧ P | ⌘ ⇧ P | | Quick open | Ctrl P | Ctrl P | ⌘ P | | New tab | - | Ctrl T | ⌘ T | | Close active tab | - | Ctrl W | ⌘ W | diff --git a/fastlane/metadata/android/en-US/changelogs/15439.txt b/fastlane/metadata/android/en-US/changelogs/15439.txt new file mode 100644 index 000000000..02ede5f52 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/15439.txt @@ -0,0 +1,5 @@ +- Get an overview of your year with Notesnook with Wrapped 2025 +- Cell selection and column resizing in tables +- Bug fixes and minor improvements + +Thank you for using Notesnook! diff --git a/packages/common/src/utils/keybindings.ts b/packages/common/src/utils/keybindings.ts index 74e3a5fea..9609437d9 100644 --- a/packages/common/src/utils/keybindings.ts +++ b/packages/common/src/utils/keybindings.ts @@ -96,7 +96,10 @@ export const hotkeys = { type: "hotkeys" }, openCommandPalette: { - keys: normalizeKeys(["ctrl+shift+p"]), + keys: normalizeKeys({ + desktop: ["ctrl+shift+p"], + web: ["ctrl+shift+p", "ctrl+shift+:"] + }), description: "Command palette", category: "Navigation", type: "hotkeys" diff --git a/packages/editor/src/extensions/table/component.tsx b/packages/editor/src/extensions/table/component.tsx index 5ee339fae..bdca8a20c 100644 --- a/packages/editor/src/extensions/table/component.tsx +++ b/packages/editor/src/extensions/table/component.tsx @@ -119,7 +119,15 @@ export function TableComponent( -
+
{ forwardRef?.(ref);