Skip to content

Commit

Permalink
Added icon to build assets
Browse files Browse the repository at this point in the history
Made a basic icon and added to build-time.

Version altered to reflect this is an experimental branch, and which version it is currently based on.
  • Loading branch information
NovaXeros committed May 23, 2017
1 parent f1caa08 commit 81a4b20
Show file tree
Hide file tree
Showing 17 changed files with 18 additions and 3 deletions.
Binary file added app/assets/icons/mac/neutron.icns
Binary file not shown.
Binary file added app/assets/icons/mac/neutron2.icns
Binary file not shown.
Binary file added app/assets/icons/png/128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/icons/png/16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/icons/png/24x24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/icons/png/256x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/icons/png/32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/icons/png/48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/icons/png/512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/icons/png/64x64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/icons/png/96x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/icons/win/neutron.ico
Binary file not shown.
Binary file added app/assets/icons/win/neutron2.ico
Binary file not shown.
9 changes: 9 additions & 0 deletions app/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
'use strict'

require('babel-register')

const Main = require("./main.js").default

process.env.NODE_ENV = 'production'

new Main()
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "A desktop front-end for Spansh's neutron router.",
"author": "Jesse Bryan <[email protected]>",
"productName": "Neutron",
"version": "0.2.8",
"version": "0.2.8-NXE232336",
"main": "index.js",
"dependencies": {
"babel-preset-es2015": "6.24.1",
Expand Down
3 changes: 2 additions & 1 deletion app/window.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ class Window {
show: false,
title: 'Neutron',
width: 450,
height: 372
height: 372,
icon: path.join(__dirname, 'assets/icons/png/64x64.png')
}

if (process.platform === 'darwin'){
Expand Down
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@
"name": "neutron",
"description": "A desktop front-end for Spansh's neutron router.",
"author": "Jesse Bryan <[email protected]>",
"version": "0.2.8",
"version": "0.2.8-NXE232336",
"xo": {
"space": true,
"semicolon": false
},
"build": {
"win": {
"icon": "app/assets/icons/win/neutron2.ico"
}
},
"dependencies": {
"react": "15.5.4",
"react-dom": "15.5.4"
Expand Down

0 comments on commit 81a4b20

Please sign in to comment.