diff --git a/composeApp/build.gradle.kts b/composeApp/build.gradle.kts index f8c3a6b..9663675 100644 --- a/composeApp/build.gradle.kts +++ b/composeApp/build.gradle.kts @@ -190,12 +190,12 @@ compose.desktop { mainClass = "net.codinux.banking.ui.MainKt" nativeDistributions { - targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb, TargetFormat.Rpm) + targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb) modules("java.sql", "java.naming") // java.naming is required by logback packageName = "Bankmeister" - packageVersion = "1.0.0" // minor version < 1 (DMG) and dashes as in '1.0.0-Alpha-14' (RPM) are not allowed + packageVersion = "0.9.0" // minor version < 1 (DMG) and dashes as in '1.0.0-Alpha-14' (DMG, MSI, RPM) are not allowed description = "Datenschutzfreundliche Multi-Banking App für die meisten deutschen Banken" copyright = "© 2024 codinux GmbH & Co.KG. All rights reserved." vendor = "codinux GmbH & Co.KG" @@ -203,6 +203,7 @@ compose.desktop { macOS { bundleID = "net.codinux.banking.ui" appCategory = "public.app-category.finance" + dmgPackageVersion = "1.0.0" iconFile = project.file("../docs/res/AppIcons/distributions/AppIcon.icns") } @@ -212,7 +213,6 @@ compose.desktop { upgradeUuid = "F62896E2-382E-4311-9683-1AB3AA4EB9E7" menu = true - msiPackageVersion = "0.9.0" iconFile = project.file("../docs/res/AppIcons/distributions/AppIcon.ico") }