Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit af05044

Browse files
committedMar 14, 2025
Version 1.0.4
1 parent 92ecfc7 commit af05044

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
@@ -298,7 +298,7 @@ class DashboardViewModel(): WindowFocusListener {
298298
}
299299

300300
private fun getPackageVersion(){
301-
val currentAppVersion = "1.0.3"
301+
val currentAppVersion = "1.0.4"
302302

303303
viewModelScope.launch(dispatchers.mainImmediate) {
304304
// 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.3",
394+
text = "Version 1.0.4",
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.3"
111+
packageVersion = "1.0.4"
112112

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

0 commit comments

Comments
 (0)
Please sign in to comment.