Skip to content

Commit 730da75

Browse files
committed
Version 1.0.1
1 parent a732857 commit 730da75

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
@@ -300,7 +300,7 @@ class DashboardViewModel(): WindowFocusListener {
300300
}
301301

302302
private fun getPackageVersion(){
303-
val currentAppVersion = "1.0.0"
303+
val currentAppVersion = "1.0.1"
304304

305305
viewModelScope.launch(dispatchers.mainImmediate) {
306306
// 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
@@ -407,7 +407,7 @@ fun DashboardSidebarUI(
407407
Spacer(modifier = Modifier.height(16.dp))
408408

409409
Text(
410-
text = "Version 1.0.0",
410+
text = "Version 1.0.1",
411411
style = androidx.compose.material3.MaterialTheme.typography.bodySmall,
412412
color = MaterialTheme.colorScheme.tertiary,
413413
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.0"
111+
packageVersion = "1.0.1"
112112

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

0 commit comments

Comments
 (0)