Move default Electron icons outside asar

Electron doesn't seem to want to load icons from within `asar`s, so this changes
the default icons (used for window and tray) so that they are just regular files
on disk and updates the reference to match.

Part of https://github.com/vector-im/riot-web/issues/9897
This commit is contained in:
J. Ryan Stinnett 2019-06-18 16:12:38 +01:00
parent f10e7ac224
commit 292427c275
2 changed files with 6 additions and 3 deletions

View file

@ -156,10 +156,10 @@
"electronVersion": "4.2.4",
"files": [
"node_modules/**",
"src/**",
"img/**"
"src/**"
],
"extraResources": [
{ "from": "electron_app/img", "to": "img" },
"webapp/**/*",
"origin_migrator/**/*"
],