diff --git a/apps/mobile/android/app/build.gradle b/apps/mobile/android/app/build.gradle index c66c49a79..7bc082b56 100644 --- a/apps/mobile/android/app/build.gradle +++ b/apps/mobile/android/app/build.gradle @@ -140,7 +140,7 @@ android { if (project.hasProperty("prBuildNumber")) { versionCode Integer.parseInt(prBuildNumber()) } else { - versionCode 3098 + versionCode 3099 } versionName getNpmVersion() testBuildType System.getProperty('testBuildType', 'debug') diff --git a/apps/mobile/android/releasenotes/whatsnew-en-US b/apps/mobile/android/releasenotes/whatsnew-en-US index 4259c81da..1ada0a465 100644 --- a/apps/mobile/android/releasenotes/whatsnew-en-US +++ b/apps/mobile/android/releasenotes/whatsnew-en-US @@ -1,3 +1,8 @@ +- Fix clearing note title adds generated title instead of staying empty +- Improved table cell selection, table scrolling, and table cell editing on mobile +- Fixed app on launch randomly focuses editor instead of notes list +- Fixed file size check shows error but continues adding the file to editor +- Note title headline format should get content from first paragraph - Minor bug fixes and performance improvements Thank you for using Notesnook! diff --git a/apps/mobile/ios/Notesnook.xcodeproj/project.pbxproj b/apps/mobile/ios/Notesnook.xcodeproj/project.pbxproj index 45261c8ae..078dfb5c6 100644 --- a/apps/mobile/ios/Notesnook.xcodeproj/project.pbxproj +++ b/apps/mobile/ios/Notesnook.xcodeproj/project.pbxproj @@ -1733,7 +1733,10 @@ ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = "$(inherited)"; OTHER_CPLUSPLUSFLAGS = "$(inherited)"; - OTHER_LDFLAGS = "$(inherited) "; + OTHER_LDFLAGS = ( + "$(inherited)", + " ", + ); REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG"; @@ -1799,7 +1802,10 @@ ONLY_ACTIVE_ARCH = NO; OTHER_CFLAGS = "$(inherited)"; OTHER_CPLUSPLUSFLAGS = "$(inherited)"; - OTHER_LDFLAGS = "$(inherited) "; + OTHER_LDFLAGS = ( + "$(inherited)", + " ", + ); REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native"; SDKROOT = iphoneos; USE_HERMES = true; diff --git a/apps/mobile/ios/Podfile.lock b/apps/mobile/ios/Podfile.lock index ad32c4ecf..b52180351 100644 --- a/apps/mobile/ios/Podfile.lock +++ b/apps/mobile/ios/Podfile.lock @@ -3875,19 +3875,19 @@ SPEC CHECKSUMS: boost: 7e761d76ca2ce687f7cc98e698152abd03a18f90 callstack-repack: 3991230773c74ea49e7db6932d20e72d175faa41 DoubleConversion: cb417026b2400c8f53ae97020b2be961b59470cb - fast_float: 914e00b8b67cb8ba184a778c7bbc2e9fe98d37b3 + fast_float: b32c788ed9c6a8c584d114d0047beda9664e7cc6 FBLazyVector: 0aa6183b9afe3c31fc65b5d1eeef1f3c19b63bfa - fmt: b85d977e8fe789fd71c77123f9f4920d88c4d170 - glog: 682871fb30f4a65f657bf357581110656ea90b08 + fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd + glog: 5683914934d5b6e4240e497e0f4a3b42d1854183 GZIP: 3c0abf794bfce8c7cb34ea05a1837752416c8868 - hermes-engine: 1c85d2d2a4722541e6faffceb7bcc2249b5398b2 + hermes-engine: 273e30e7fb618279934b0b95ffab60ecedb7acf5 JWTDecode: 2eed97c2fa46ccaf3049a787004eedf0be474a87 MMKV: 7b5df6a8bf785c6705cc490c541b9d8a957c4a64 MMKVCore: 3f40b896e9ab522452df9df3ce983471aa2449ba NitroCloudUploader: 62489381ed6b472d87c8c6b62629136ebd2342d1 NitroModules: f964d2f3f5b392d0c0303737085cc30e375dc43f pop: d582054913807fd11fd50bfe6a539d91c7e1a55a - RCT-Folly: fb64616e25cfac1c3d10bfd784d68926325ae67f + RCT-Folly: 846fda9475e61ec7bcbf8a3fe81edfcaeb090669 RCTDeprecation: f17e2ebc07876ca9ab8eb6e4b0a4e4647497ae3a RCTRequired: e2c574c1b45231f7efb0834936bd609d75072b63 RCTTypeSafety: c693294e3993056955c3010eb1ebc574f1fcded6 @@ -4005,7 +4005,7 @@ SPEC CHECKSUMS: RNWorklets: d9c050940f140af5d8b611d937eab1cbfce5e9a5 RNZipArchive: 71befbdc20e7fbd4b64552a0b324ad0e8d0efefb SDWebImage: a7f831e1a65eb5e285e3fb046a23fcfbf08e696d - SexyTooltip: 605cfd16ae28fd8c3afac9c29236518e156dbbd8 + SexyTooltip: 5c9b4dec52bfb317938cb0488efd9da3717bb6fd SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748 SSZipArchive: fe6a26b2a54d5a0890f2567b5cc6de5caa600aef SwiftyRSA: 8c6dd1ea7db1b8dc4fb517a202f88bb1354bc2c6 diff --git a/apps/mobile/ios/build-configs/ios-build.active.xcconfig b/apps/mobile/ios/build-configs/ios-build.active.xcconfig index 7fa30b5bb..74868e14b 100644 --- a/apps/mobile/ios/build-configs/ios-build.active.xcconfig +++ b/apps/mobile/ios/build-configs/ios-build.active.xcconfig @@ -1,10 +1,10 @@ -// Staging iOS build identifiers -IOS_CURRENT_PROJECT_VERSION = 2178 -IOS_MARKETING_VERSION = 3.3.18 +// Production iOS build identifiers +IOS_CURRENT_PROJECT_VERSION = 2179 +IOS_MARKETING_VERSION = 3.3.19 IOS_MAIN_BUNDLE_ID = org.streetwriters.notesnook IOS_WIDGET_BUNDLE_ID = org.streetwriters.notesnook.notewidget IOS_SHARE_BUNDLE_ID = org.streetwriters.notesnook.share APP_DISPLAY_NAME = Notesnook -IOS_MAIN_PROFILE = Notesnook Adhoc 2026 -IOS_WIDGET_PROFILE = Notesnook Note Widget Adhoc 2026 -IOS_SHARE_PROFILE = Notesnook Share Adhoc 2026 +IOS_MAIN_PROFILE = Notesnook 2026 +IOS_WIDGET_PROFILE = Notesnook Note Widget 2026 +IOS_SHARE_PROFILE = Notesnook Share 2026 diff --git a/apps/mobile/ios/build-configs/ios-build.production.xcconfig b/apps/mobile/ios/build-configs/ios-build.production.xcconfig index 9c57d3bde..74868e14b 100644 --- a/apps/mobile/ios/build-configs/ios-build.production.xcconfig +++ b/apps/mobile/ios/build-configs/ios-build.production.xcconfig @@ -1,6 +1,6 @@ // Production iOS build identifiers -IOS_CURRENT_PROJECT_VERSION = 2178 -IOS_MARKETING_VERSION = 3.3.18 +IOS_CURRENT_PROJECT_VERSION = 2179 +IOS_MARKETING_VERSION = 3.3.19 IOS_MAIN_BUNDLE_ID = org.streetwriters.notesnook IOS_WIDGET_BUNDLE_ID = org.streetwriters.notesnook.notewidget IOS_SHARE_BUNDLE_ID = org.streetwriters.notesnook.share diff --git a/apps/mobile/ios/build-configs/ios-build.staging.xcconfig b/apps/mobile/ios/build-configs/ios-build.staging.xcconfig index 7fa30b5bb..d5ffcd41b 100644 --- a/apps/mobile/ios/build-configs/ios-build.staging.xcconfig +++ b/apps/mobile/ios/build-configs/ios-build.staging.xcconfig @@ -1,6 +1,6 @@ // Staging iOS build identifiers -IOS_CURRENT_PROJECT_VERSION = 2178 -IOS_MARKETING_VERSION = 3.3.18 +IOS_CURRENT_PROJECT_VERSION = 2179 +IOS_MARKETING_VERSION = 3.3.19 IOS_MAIN_BUNDLE_ID = org.streetwriters.notesnook IOS_WIDGET_BUNDLE_ID = org.streetwriters.notesnook.notewidget IOS_SHARE_BUNDLE_ID = org.streetwriters.notesnook.share diff --git a/apps/mobile/package.json b/apps/mobile/package.json index 2ee862037..67fa9dbfe 100644 --- a/apps/mobile/package.json +++ b/apps/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@notesnook/mobile", - "version": "3.3.18", + "version": "3.3.19", "private": true, "license": "GPL-3.0-or-later", "scripts": { diff --git a/fastlane/metadata/android/en-US/changelogs/15499.txt b/fastlane/metadata/android/en-US/changelogs/15499.txt new file mode 100644 index 000000000..1ada0a465 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/15499.txt @@ -0,0 +1,8 @@ +- Fix clearing note title adds generated title instead of staying empty +- Improved table cell selection, table scrolling, and table cell editing on mobile +- Fixed app on launch randomly focuses editor instead of notes list +- Fixed file size check shows error but continues adding the file to editor +- Note title headline format should get content from first paragraph +- Minor bug fixes and performance improvements + +Thank you for using Notesnook!