Skip to content

Commit

Permalink
Fix icon on build
Browse files Browse the repository at this point in the history
  • Loading branch information
lgeertsen committed Mar 16, 2020
1 parent f1d0ee3 commit 1089e71
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Binary file added build/pulsar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion main/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ import {
import Server from "./Server";
const server = new Server();

const updateServer = "hazel.lgeertsen.now.sh";
const updateServer = "https://hazel-cyan.now.sh/";
const feed = `${updateServer}/update/${process.platform}/${app.getVersion()}`;

console.log(feed);

autoUpdater.setFeedURL(feed);

// import {PythonShell} from 'python-shell';
Expand Down Expand Up @@ -57,6 +59,7 @@ if (isProd) {
minWidth: 1200,
minHeight: 800,
frame: true,
title: "Pulsar",
icon: path.join(__dirname, '../main/pulsar.png')
});

Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"name": "pulsar",
"description": "Pulsar | A Pipeline Tool",
"version": "0.0.1",
"version": "0.0.2",
"author": "Lee Geertsen <lgeertsen@artfx.fr>",
"main": "app/background.js",
"scripts": {
Expand All @@ -17,6 +17,9 @@
},
"build": {
"productName": "Pulsar",
"win": {
"icon": "build/pulsar.png"
},
"extraFiles": [
".pulsar.json",
"nodes"
Expand Down

0 comments on commit 1089e71

Please sign in to comment.