mobile: release v3.4.10

This commit is contained in:
Ammar Ahmed
2026-08-24 13:39:23 +05:00
parent 0fd305a259
commit db8f02a585
9 changed files with 27 additions and 12 deletions

View File

@@ -140,7 +140,7 @@ android {
if (project.hasProperty("prBuildNumber")) { if (project.hasProperty("prBuildNumber")) {
versionCode Integer.parseInt(prBuildNumber()) versionCode Integer.parseInt(prBuildNumber())
} else { } else {
versionCode 3115 versionCode 3116
} }
versionName getNpmVersion() versionName getNpmVersion()
testBuildType System.getProperty('testBuildType', 'debug') testBuildType System.getProperty('testBuildType', 'debug')

View File

@@ -42,3 +42,12 @@ allprojects {
maven { url 'https://www.jitpack.io' } maven { url 'https://www.jitpack.io' }
} }
} }
// Pin the ndkVersion for all subprojects
subprojects { subproject ->
["com.android.application", "com.android.library"].each { pluginId ->
subproject.plugins.withId(pluginId) {
subproject.android.ndkVersion = rootProject.ext.ndkVersion
}
}
}

View File

@@ -1,4 +1,3 @@
- Fix drag/drop issues in task-lists and improved UX
- Minor bug fixes and improvements - Minor bug fixes and improvements
Thank you for using Notesnook! Thank you for using Notesnook!

View File

@@ -1,6 +1,6 @@
// Production iOS build identifiers // Production iOS build identifiers
IOS_CURRENT_PROJECT_VERSION = 2193 IOS_CURRENT_PROJECT_VERSION = 2194
IOS_MARKETING_VERSION = 3.4.9 IOS_MARKETING_VERSION = 3.4.10
IOS_MAIN_BUNDLE_ID = org.streetwriters.notesnook IOS_MAIN_BUNDLE_ID = org.streetwriters.notesnook
IOS_WIDGET_BUNDLE_ID = org.streetwriters.notesnook.notewidget IOS_WIDGET_BUNDLE_ID = org.streetwriters.notesnook.notewidget
IOS_SHARE_BUNDLE_ID = org.streetwriters.notesnook.share IOS_SHARE_BUNDLE_ID = org.streetwriters.notesnook.share

View File

@@ -1,6 +1,6 @@
// Production iOS build identifiers // Production iOS build identifiers
IOS_CURRENT_PROJECT_VERSION = 2193 IOS_CURRENT_PROJECT_VERSION = 2194
IOS_MARKETING_VERSION = 3.4.9 IOS_MARKETING_VERSION = 3.4.10
IOS_MAIN_BUNDLE_ID = org.streetwriters.notesnook IOS_MAIN_BUNDLE_ID = org.streetwriters.notesnook
IOS_WIDGET_BUNDLE_ID = org.streetwriters.notesnook.notewidget IOS_WIDGET_BUNDLE_ID = org.streetwriters.notesnook.notewidget
IOS_SHARE_BUNDLE_ID = org.streetwriters.notesnook.share IOS_SHARE_BUNDLE_ID = org.streetwriters.notesnook.share

View File

@@ -1,6 +1,6 @@
// Staging iOS build identifiers // Staging iOS build identifiers
IOS_CURRENT_PROJECT_VERSION = 2193 IOS_CURRENT_PROJECT_VERSION = 2194
IOS_MARKETING_VERSION = 3.4.9 IOS_MARKETING_VERSION = 3.4.10
IOS_MAIN_BUNDLE_ID = org.streetwriters.notesnook IOS_MAIN_BUNDLE_ID = org.streetwriters.notesnook
IOS_WIDGET_BUNDLE_ID = org.streetwriters.notesnook.notewidget IOS_WIDGET_BUNDLE_ID = org.streetwriters.notesnook.notewidget
IOS_SHARE_BUNDLE_ID = org.streetwriters.notesnook.share IOS_SHARE_BUNDLE_ID = org.streetwriters.notesnook.share

View File

@@ -1,12 +1,12 @@
{ {
"name": "@notesnook/mobile", "name": "@notesnook/mobile",
"version": "3.4.5", "version": "3.4.10",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@notesnook/mobile", "name": "@notesnook/mobile",
"version": "3.4.5", "version": "3.4.10",
"hasInstallScript": true, "hasInstallScript": true,
"license": "GPL-3.0-or-later", "license": "GPL-3.0-or-later",
"dependencies": { "dependencies": {
@@ -191,6 +191,7 @@
"version": "2.1.3", "version": "2.1.3",
"license": "GPL-3.0-or-later", "license": "GPL-3.0-or-later",
"dependencies": { "dependencies": {
"@notesnook/common": "^2.1.3",
"@notesnook/core": "file:../core", "@notesnook/core": "file:../core",
"@readme/data-urls": "^3.0.0", "@readme/data-urls": "^3.0.0",
"dayjs": "1.11.13", "dayjs": "1.11.13",
@@ -333,7 +334,10 @@
"papaparse": "^5.5.3", "papaparse": "^5.5.3",
"prism-themes": "^1.9.0", "prism-themes": "^1.9.0",
"prosemirror-codemark": "^0.4.2", "prosemirror-codemark": "^0.4.2",
"prosemirror-view": "1.34.2", "prosemirror-model": "1.25.11",
"prosemirror-state": "1.4.4",
"prosemirror-transform": "1.12.0",
"prosemirror-view": "1.42.2",
"re-resizable": "^6.9.18", "re-resizable": "^6.9.18",
"react-colorful": "^5.6.1", "react-colorful": "^5.6.1",
"redent": "^4.0.0", "redent": "^4.0.0",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@notesnook/mobile", "name": "@notesnook/mobile",
"version": "3.4.9", "version": "3.4.10",
"private": true, "private": true,
"license": "GPL-3.0-or-later", "license": "GPL-3.0-or-later",
"scripts": { "scripts": {

View File

@@ -0,0 +1,3 @@
- Minor bug fixes and improvements
Thank you for using Notesnook!