Skip to content

Commit 7b33376

Browse files
committed
App version update to 1.2.5 (26)
1 parent a5dfc04 commit 7b33376

5 files changed

Lines changed: 9 additions & 10 deletions

File tree

iosApp/iosApp.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@
323323
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
324324
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
325325
CODE_SIGN_STYLE = Automatic;
326-
CURRENT_PROJECT_VERSION = 24;
326+
CURRENT_PROJECT_VERSION = 26;
327327
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
328328
DEVELOPMENT_TEAM = "";
329329
ENABLE_PREVIEWS = YES;
@@ -337,7 +337,7 @@
337337
"$(inherited)",
338338
"@executable_path/Frameworks",
339339
);
340-
MARKETING_VERSION = 1.2.3;
340+
MARKETING_VERSION = 1.2.5;
341341
OTHER_LDFLAGS = (
342342
"$(inherited)",
343343
"-framework",
@@ -360,7 +360,7 @@
360360
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
361361
ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = YES;
362362
CODE_SIGN_STYLE = Automatic;
363-
CURRENT_PROJECT_VERSION = 24;
363+
CURRENT_PROJECT_VERSION = 26;
364364
DEVELOPMENT_ASSET_PATHS = "\"iosApp/Preview Content\"";
365365
DEVELOPMENT_TEAM = "";
366366
ENABLE_PREVIEWS = YES;
@@ -374,7 +374,7 @@
374374
"$(inherited)",
375375
"@executable_path/Frameworks",
376376
);
377-
MARKETING_VERSION = 1.2.3;
377+
MARKETING_VERSION = 1.2.5;
378378
OTHER_LDFLAGS = (
379379
"$(inherited)",
380380
"-framework",

iosApp/iosApp/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
<key>CFBundlePackageType</key>
1818
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.2.3</string>
20+
<string>1.2.5</string>
2121
<key>CFBundleVersion</key>
22-
<string>24</string>
22+
<string>26</string>
2323
<key>LSRequiresIPhoneOS</key>
2424
<true/>
2525
<key>LSSupportsOpeningDocumentsInPlace</key>

shared/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ android {
170170
applicationId = "com.module.notelycompose.android"
171171
minSdk = libs.versions.android.minSdk.get().toInt()
172172
targetSdk = libs.versions.android.targetSdk.get().toInt()
173-
versionCode = 24
174-
versionName = "1.2.3"
173+
versionCode = 26
174+
versionName = "1.2.5"
175175
}
176176
buildFeatures {
177177
compose = true

shared/src/commonMain/kotlin/com/module/notelycompose/export/presentation/ExportSelectionViewModel.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ class ExportSelectionViewModel(
100100
when {
101101
result.isSuccess -> ExportingFileState.Success
102102
else -> {
103-
ExportingFileState.Idle
104103
if(result.exceptionOrNull() is NoFolderSelectedException) {
105104
ExportingFileState.NoFolderSelected
106105
} else {

shared/src/commonMain/kotlin/com/module/notelycompose/export/ui/ExportingFileStateHost.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ internal fun ExportingFileStateHost(
6868
}
6969
},
7070
title = { Text(stringResource(Res.string.error)) },
71-
text = { Text(state.message) }
71+
text = { Text(stringResource(Res.string.batch_export_settings_error_occurred)) }
7272
)
7373
}
7474
}

0 commit comments

Comments
 (0)