fix path for system tray
Before Width: | Height: | Size: 442 B After Width: | Height: | Size: 442 B |
Before Width: | Height: | Size: 889 B After Width: | Height: | Size: 889 B |
Before Width: | Height: | Size: 407 B After Width: | Height: | Size: 407 B |
Before Width: | Height: | Size: 810 B After Width: | Height: | Size: 810 B |
|
@ -19,11 +19,12 @@ const config: ForgeConfig = {
|
||||||
packagerConfig: {
|
packagerConfig: {
|
||||||
appVersion: process.env.VERSION || packageJson.version,
|
appVersion: process.env.VERSION || packageJson.version,
|
||||||
asar: true,
|
asar: true,
|
||||||
icon: './images/icon',
|
icon: './assets/icon.icns',
|
||||||
extraResource: [
|
extraResource: [
|
||||||
'../ollama',
|
'../ollama',
|
||||||
'./images/ollama_icon_dark_16x16.png',
|
'../ggml-metal.metal',
|
||||||
'./images/ollama_icon_bright_16x16.png',
|
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.platform === 'darwin' ? ['../ggml-metal.metal'] : []),
|
||||||
],
|
],
|
||||||
...(process.env.SIGN
|
...(process.env.SIGN
|
||||||
|
|