Skip to content

Commit 0e77759

Browse files
committedSep 22, 2017
Fix public path in packaged application
1 parent 19aa81a commit 0e77759

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed
 

‎main.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
const {app, BrowserWindow, Tray, Menu} = require('electron');
22
const url = require('url');
33
const notifier = require('node-notifier');
4+
const path = require("path");
45

56
const gbs = require('./config/globals');
67
const core = require('./app/core');
78

89
//Actual backend
910
const backend = require('./app/backend');
1011

12+
let logo = path.join(__dirname, 'public', 'logo.png');
13+
let logoGrey = path.join(__dirname, 'public', 'logo-grey.png');
14+
1115
function createWindow () {
1216
// Create the browser window.
1317
gbs.win = new BrowserWindow({
1418
width: 600,
1519
height: 250,
16-
icon: "public/logo.png",
20+
icon: logo,
1721
webPreferences: {
1822
//nodeIntegration: false
1923
},
@@ -41,7 +45,7 @@ function createWindow () {
4145
}
4246

4347
function generateTray() {
44-
gbs.tray = new Tray('public/logo.png');
48+
gbs.tray = new Tray(logo);
4549

4650
gbs.trayMenu = Menu.buildFromTemplate([
4751
{
@@ -88,7 +92,7 @@ async function launch() {
8892

8993
function updateTrayIcon() {
9094
console.log("Updating tray icon, connected: ", gbs.connected);
91-
let path = gbs.connected ? 'public/logo.png' : 'public/logo-grey.png';
95+
let path = gbs.connected ? logo : logoGrey;
9296
gbs.tray.setImage(path);
9397
}
9498

0 commit comments

Comments
 (0)