Skip to content

Commit

Permalink
Version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ariel10aguero committed Jan 18, 2025
1 parent a732857 commit 730da75
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ class DashboardViewModel(): WindowFocusListener {
}

private fun getPackageVersion(){
val currentAppVersion = "1.0.0"
val currentAppVersion = "1.0.1"

viewModelScope.launch(dispatchers.mainImmediate) {
// TODO V2 getAppVersions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ fun DashboardSidebarUI(
Spacer(modifier = Modifier.height(16.dp))

Text(
text = "Version 1.0.0",
text = "Version 1.0.1",
style = androidx.compose.material3.MaterialTheme.typography.bodySmall,
color = MaterialTheme.colorScheme.tertiary,
modifier = Modifier.align(Alignment.Start)
Expand Down
2 changes: 1 addition & 1 deletion desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ compose.desktop {

targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "Sphinx"
packageVersion = "1.0.0"
packageVersion = "1.0.1"

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

0 comments on commit 730da75

Please sign in to comment.