Skip to content

Commit a8aa8cc

Browse files
committed
Version 1.0.3
1 parent 34c1289 commit a8aa8cc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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
@@ -323,7 +323,7 @@ class DashboardViewModel(): WindowFocusListener {
323323
}
324324

325325
private fun getPackageVersion(){
326-
val currentAppVersion = "1.0.2"
326+
val currentAppVersion = "1.0.3"
327327

328328
viewModelScope.launch(dispatchers.mainImmediate) {
329329
// TODO V2 getAppVersions

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ fun DashboardSidebarUI(
407407
Spacer(modifier = Modifier.height(16.dp))
408408

409409
Text(
410-
text = "Version 1.0.2",
410+
text = "Version 1.0.3",
411411
style = androidx.compose.material3.MaterialTheme.typography.bodySmall,
412412
color = MaterialTheme.colorScheme.tertiary,
413413
modifier = Modifier.align(Alignment.Start)
@@ -416,7 +416,7 @@ fun DashboardSidebarUI(
416416
Spacer(Modifier.height(8.dp))
417417

418418
Text(
419-
text = "© 2024 Stakwork All rights reserved",
419+
text = "© 2025 Stakwork All rights reserved",
420420
style = androidx.compose.material3.MaterialTheme.typography.bodySmall,
421421
color = place_holder_text,
422422
modifier = Modifier.align(Alignment.CenterHorizontally)

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.2"
111+
packageVersion = "1.0.3"
112112

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

0 commit comments

Comments
 (0)