fix path for system tray

This commit is contained in:
Eva Ho 2023-07-06 14:11:26 -04:00 committed by Jeffrey Morgan
parent ea9f0e7dbf
commit bba1cc933d
6 changed files with 4 additions and 3 deletions

View file

Before

Width:  |  Height:  |  Size: 442 B

After

Width:  |  Height:  |  Size: 442 B

View file

Before

Width:  |  Height:  |  Size: 889 B

After

Width:  |  Height:  |  Size: 889 B

View file

Before

Width:  |  Height:  |  Size: 407 B

After

Width:  |  Height:  |  Size: 407 B

View file

Before

Width:  |  Height:  |  Size: 810 B

After

Width:  |  Height:  |  Size: 810 B

View file

@ -19,11 +19,12 @@ const config: ForgeConfig = {
packagerConfig: {
appVersion: process.env.VERSION || packageJson.version,
asar: true,
icon: './images/icon',
icon: './assets/icon.icns',
extraResource: [
'../ollama',
'./images/ollama_icon_dark_16x16.png',
'./images/ollama_icon_bright_16x16.png',
'../ggml-metal.metal',
path.join(__dirname, './assets/ollama_icon_dark_16x16@2x.png'),
path.join(__dirname, './assets/ollama_icon_bright_16x16@2x.png'),
...(process.platform === 'darwin' ? ['../ggml-metal.metal'] : []),
],
...(process.env.SIGN