Changed version to 1.4.1

This commit is contained in:
Abdelilah El Aissaoui 2024-11-03 13:23:32 +01:00
parent 01b0827057
commit edcefd7a38
2 changed files with 5 additions and 5 deletions

View File

@ -12,17 +12,17 @@ plugins {
kotlin("jvm") version "2.0.0" kotlin("jvm") version "2.0.0"
kotlin("plugin.serialization") version "2.0.20" kotlin("plugin.serialization") version "2.0.20"
id("com.google.devtools.ksp") version "2.0.20-1.0.24" id("com.google.devtools.ksp") version "2.0.20-1.0.24"
id("org.jetbrains.compose") version "1.7.0-beta02" id("org.jetbrains.compose") version "1.7.0"
id("org.jetbrains.kotlin.plugin.compose") version "2.0.20" id("org.jetbrains.kotlin.plugin.compose") version "2.0.20"
} }
// Remember to update Constants.APP_VERSION when changing this version // Remember to update Constants.APP_VERSION when changing this version
val projectVersion = "1.4.0" val projectVersion = "1.4.1"
val projectName = "Gitnuro" val projectName = "Gitnuro"
// Required for JPackage, as it doesn't accept additional suffixes after the version. // Required for JPackage, as it doesn't accept additional suffixes after the version.
val projectVersionSimplified = "1.4.0" val projectVersionSimplified = "1.4.1"
val rustGeneratedSource = "${layout.buildDirectory.get()}/generated/source/uniffi/main/com/jetpackduba/gitnuro/java" val rustGeneratedSource = "${layout.buildDirectory.get()}/generated/source/uniffi/main/com/jetpackduba/gitnuro/java"

View File

@ -22,8 +22,8 @@ object AppConstants {
const val APP_NAME = "Gitnuro" const val APP_NAME = "Gitnuro"
const val APP_DESCRIPTION = const val APP_DESCRIPTION =
"Gitnuro is a Git client that allows you to manage multiple repositories with a modern experience and live visual representation of your repositories' state." "Gitnuro is a Git client that allows you to manage multiple repositories with a modern experience and live visual representation of your repositories' state."
const val APP_VERSION = "1.4.0" const val APP_VERSION = "1.4.1"
const val APP_VERSION_CODE = 14 const val APP_VERSION_CODE = 15
const val VERSION_CHECK_URL = "https://raw.githubusercontent.com/JetpackDuba/Gitnuro/main/latest.json" const val VERSION_CHECK_URL = "https://raw.githubusercontent.com/JetpackDuba/Gitnuro/main/latest.json"
} }