4
0
mirror of https://github.com/AltarikMC/Launcher synced 2024-11-22 06:19:50 +01:00

fix app icon issue

This commit is contained in:
Quentin Legot 2021-04-17 12:03:54 +02:00
parent c5c743f1c2
commit adb1c3f4ed
3 changed files with 4 additions and 7 deletions

BIN
app.ico

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -4,7 +4,7 @@ module.exports = {
packageName: "altarik-launcher",
name: "altarik-launcher",
productName: "altarik-launcher",
icon: path.resolve(__dirname, 'app.ico')
icon: path.resolve(__dirname, 'icon.ico')
},
makers: [
{
@ -12,18 +12,15 @@ module.exports = {
platforms: ['darwin', 'win32'],
config: {
name: "altarik-launcher",
iconUrl: path.resolve(__dirname, 'app.ico'),
iconUrl: path.resolve(__dirname, 'icon.ico'),
//loadingGif: path.resolve(__dirname, 'src/assets/loading.gif'),
setupIcon: path.resolve(__dirname, 'app.ico'),
setupIcon: path.resolve(__dirname, 'icon.ico'),
setupExe: "altarik-launcher-win32-x64.exe"
}
},
{
name: '@electron-forge/maker-zip',
platforms: ['darwin', 'linux'],
config: {
// Config here
}
platforms: ['darwin', 'linux']
}
]
}

BIN
icon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 353 KiB