Merge pull request 'Use Vynte icons for installers and app icons' (#9) from fix-icons into main

Reviewed-on: https://git.internal.vyntehome.com/vynte/vynte-connect/pulls/9
This commit was merged in pull request #9.
This commit is contained in:
2026-06-01 09:15:00 -05:00
4 changed files with 16 additions and 4 deletions
+15 -4
View File
@@ -10,14 +10,25 @@ import { FuseV1Options, FuseVersion } from '@electron/fuses';
const config: ForgeConfig = {
packagerConfig: {
asar: true,
extraResource: ['resources']
extraResource: ['resources'],
icon: 'resources/VynteIcon'
},
rebuildConfig: {},
makers: [
new MakerSquirrel({}),
new MakerSquirrel({
setupIcon: 'resources/VynteIcon.ico'
}),
new MakerZIP({}, ['darwin']),
new MakerRpm({}),
new MakerDeb({}),
new MakerRpm({
options: {
icon: 'resources/VynteIcon.png'
}
}),
new MakerDeb({
options: {
icon: 'resources/VynteIcon.png'
}
}),
],
plugins: [
new VitePlugin({
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

+1
View File
@@ -153,6 +153,7 @@ function createWindow() {
alwaysOnTop: true,
skipTaskbar: true,
backgroundColor: '#191b20',
icon: resourcePath("VynteIcon.png"),
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
contextIsolation: true