Skip to content

Commit

Permalink
fix: put icon in correct build location
Browse files Browse the repository at this point in the history
  • Loading branch information
mscharley committed Sep 20, 2022
1 parent 0a79ae3 commit e965fca
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
File renamed without changes
Binary file removed build/icons/512x512.png
Binary file not shown.
3 changes: 2 additions & 1 deletion electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ productName: 'Notes'
appId: 'com.github.mscharley.notes-nc'
files:
- 'package.json'
- 'build/icons/*'
- 'build/**/*'
- '!build/**/*.kra'
- 'share/**/*'
- 'ts-build/**/*'
- '!node_modules/**/*'
Expand Down
1 change: 1 addition & 0 deletions src/main/MainWindow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export class MainWindow implements OnReadyHandler {
width: this.devtools.isDev ? 1524 : 1024,
height: 768,
backgroundColor: '#ffffff',
icon: path.join(__dirname, '../../build/icon.png'),
webPreferences: {
contextIsolation: true,
disableBlinkFeatures: 'Auxclick',
Expand Down

0 comments on commit e965fca

Please sign in to comment.