Skip to content

Commit

Permalink
feat: fix wrong logo config update
Browse files Browse the repository at this point in the history
Signed-off-by: seven <[email protected]>
  • Loading branch information
Blankll committed Jan 20, 2024
1 parent 989c082 commit 3dfbed9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion forge.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = {
},
{
name: '@electron-forge/maker-dmg',
config: { icon: iconPNG },
config: { icon: 'dockit.icns' },
},
{
name: '@electron-forge/maker-deb',
Expand Down
Binary file added public/dockit.icns
Binary file not shown.
2 changes: 1 addition & 1 deletion src/electron/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const BrowserWindowOptions: BrowserWindowConstructorOptions = {
devTools: isDev,
webSecurity: false,
},
icon: path.resolve(__dirname, '../dockit.png'),
icon: path.resolve(__dirname, '../../dockit.png'),
};

const bypassCors = (mainWindow: BrowserWindow) => {
Expand Down

0 comments on commit 3dfbed9

Please sign in to comment.