Removed Rpm package type and set desktop version to 0.9.0 (except for DMG where major version < 1 are not allowed)
This commit is contained in:
parent
d12cb7269b
commit
802bab9c38
|
@ -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")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue