Skip to content

Commit

Permalink
Fixes icon for linux (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmdh committed Mar 26, 2021
1 parent be15dd0 commit 0767cec
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
Binary file modified build/icon.ico
Binary file not shown.
Binary file modified build/icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions package.json
Expand Up @@ -87,6 +87,9 @@
"dist/**/*",
"!node_modules${/*}"
],
"extraFiles": [
"build/**/*"
],
"directories": {
"output": "release"
},
Expand Down
3 changes: 2 additions & 1 deletion src/main/main.js
Expand Up @@ -36,7 +36,8 @@ function createWindow() {
contextIsolation: false
},
show: false,
title: "Kit"
title: "Kit",
icon: join(__dirname + process.platform === "win32" ? "build/icon.ico" : "build/icon.png")
});

winState.manage(win);
Expand Down

0 comments on commit 0767cec

Please sign in to comment.