Skip to content

Commit 297173b

Browse files
committed
v1.0.6
1 parent 0444a98 commit 297173b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

common/src/commonMain/kotlin/chat/sphinx/common/viewmodel/DashboardViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ class DashboardViewModel(): WindowFocusListener {
347347
}
348348

349349
private fun getPackageVersion(){
350-
val currentAppVersion = "1.0.4"
350+
val currentAppVersion = "1.0.6"
351351

352352
viewModelScope.launch(dispatchers.mainImmediate) {
353353
// TODO V2 getAppVersions

common/src/desktopMain/kotlin/chat/sphinx/common/components/DashboardSidebarUI.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ fun DashboardSidebarUI(
391391
Spacer(modifier = Modifier.height(16.dp))
392392

393393
Text(
394-
text = "Version 1.0.4",
394+
text = "Version 1.0.6",
395395
style = androidx.compose.material3.MaterialTheme.typography.bodySmall,
396396
color = MaterialTheme.colorScheme.tertiary,
397397
modifier = Modifier.align(Alignment.Start)

desktop/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ compose.desktop {
108108

109109
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
110110
packageName = "Sphinx"
111-
packageVersion = "1.0.4"
111+
packageVersion = "1.0.6"
112112

113113
val sphinxProperties = Properties().apply {
114114
val localPropertiesFile = project.file("../local.properties")

0 commit comments

Comments
 (0)