Configured distribution settings for Windows / MSI
This commit is contained in:
parent
3b72d95234
commit
af3dd02509
|
@ -195,7 +195,7 @@ compose.desktop {
|
||||||
modules("java.sql", "java.naming") // java.naming is required by logback
|
modules("java.sql", "java.naming") // java.naming is required by logback
|
||||||
|
|
||||||
packageName = "Bankmeister"
|
packageName = "Bankmeister"
|
||||||
packageVersion = "1.0.0"
|
packageVersion = "1.0.0" // minor version < 1 (DMG) and dashes as in '1.0.0-Alpha-14' (RPM) are not allowed
|
||||||
description = "Datenschutzfreundliche Multi-Banking App für die meisten deutschen Banken"
|
description = "Datenschutzfreundliche Multi-Banking App für die meisten deutschen Banken"
|
||||||
copyright = "© 2024 codinux GmbH & Co.KG. All rights reserved."
|
copyright = "© 2024 codinux GmbH & Co.KG. All rights reserved."
|
||||||
vendor = "codinux GmbH & Co.KG"
|
vendor = "codinux GmbH & Co.KG"
|
||||||
|
@ -207,6 +207,13 @@ compose.desktop {
|
||||||
iconFile = project.file("../docs/res/AppIcons/distributions/AppIcon.icns")
|
iconFile = project.file("../docs/res/AppIcons/distributions/AppIcon.icns")
|
||||||
}
|
}
|
||||||
windows {
|
windows {
|
||||||
|
// a unique ID, which enables users to update an app via installer, when an updated version is newer, than an installed version.
|
||||||
|
// The value must remain constant for a single application. See [the link](https://wixtoolset.org/documentation/manual/v3/howtos/general/generate_guids.html) for details on generating a UUID.
|
||||||
|
upgradeUuid = "F62896E2-382E-4311-9683-1AB3AA4EB9E7"
|
||||||
|
|
||||||
|
menu = true
|
||||||
|
msiPackageVersion = "0.9.0"
|
||||||
|
|
||||||
iconFile = project.file("../docs/res/AppIcons/distributions/AppIcon.ico")
|
iconFile = project.file("../docs/res/AppIcons/distributions/AppIcon.ico")
|
||||||
}
|
}
|
||||||
linux {
|
linux {
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 6.6 KiB After Width: | Height: | Size: 100 KiB |
Loading…
Reference in New Issue