61 lines
1.6 KiB
YAML
61 lines
1.6 KiB
YAML
productName: "App Name"
|
|
appId: "net.company.appname"
|
|
asar: true # Some things may not work on Windows if this is disabled
|
|
|
|
# macOS
|
|
mac:
|
|
darkModeSupport: true
|
|
category: "public.app-category.utilities"
|
|
icon: "build/assets/icons/macOS.icns"
|
|
target:
|
|
- "dmg"
|
|
|
|
dmg:
|
|
background: "build/assets/backgrounds/DMG-Installer.png"
|
|
icon: "build/assets/icons/macOS.icns"
|
|
|
|
# Windows
|
|
win:
|
|
icon: "build/assets/icons/Windows.png"
|
|
target:
|
|
- "appx" # Microsoft Store
|
|
- "nsis" # Executable Setup
|
|
|
|
appx:
|
|
applicationId: "net.company.appname"
|
|
identityName: "00000Company.AppName"
|
|
publisher: "CN=000A00A0-A00A-0A00-AAA0-0AAA00A000AA"
|
|
publisherDisplayName: "Full Company Name"
|
|
backgroundColor: "#313237"
|
|
|
|
nsis:
|
|
shortcutName: "App Name"
|
|
uninstallDisplayName: "App Name"
|
|
artifactName: "App Name - Setup.exe"
|
|
oneClick: false # If you want a silent installer, enable this and ignore options below
|
|
installerSidebar: "build/assets/backgrounds/EXE-Setup-Sidebar.bmp" # Must be a BMP: https://cloudconvert.com/png-to-bmp
|
|
displayLanguageSelector: true
|
|
allowElevation: false
|
|
allowToChangeInstallationDirectory: true
|
|
createDesktopShortcut: false
|
|
deleteAppDataOnUninstall: true
|
|
|
|
# Linux
|
|
linux:
|
|
icon: "build/assets/icons/Linux.png"
|
|
category: Network
|
|
maintainer: "net.company.appname"
|
|
vendor: "Full Company Name"
|
|
description: "The description of the application."
|
|
target:
|
|
- "snap"
|
|
- "AppImage"
|
|
|
|
snap:
|
|
allowNativeWayland: true
|
|
confinement: "strict"
|
|
|
|
# Update Server
|
|
# publish:
|
|
# provider: "generic"
|
|
# url: "https://distribute.korbsstudio.com/applications/app-name/latest/"
|