Skip to content
This repository has been archived by the owner on Oct 13, 2024. It is now read-only.

Commit

Permalink
Installers tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
ztimms73 committed Oct 27, 2023
1 parent a9d37fc commit e02d3e9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,21 @@ compose.desktop {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Exe, TargetFormat.AppImage)
packageName = "kotatsu-dl"
packageVersion = "1.0.0"
modules("java.instrument", "jdk.unsupported")
val iconsRoot = project.file("packaging/icons")
macOS {
// macOS specific options
iconFile.set(iconsRoot.resolve("icon.icns"))
}
windows {
menu = true
menuGroup = "kotatsu-dl"
shortcut = true
perUserInstall = true
iconFile.set(iconsRoot.resolve("icon.ico"))
}
linux {
menuGroup = "Network"
iconFile.set(project.file("src/jvmMain/resources/icon_large.png"))
iconFile.set(iconsRoot.resolve("icon.png"))
}
}
buildTypes.release {
Expand Down
Binary file added packaging/icons/icon.icns
Binary file not shown.
Binary file added packaging/icons/icon.ico
Binary file not shown.
File renamed without changes

0 comments on commit e02d3e9

Please sign in to comment.