Merge pull request #161 from resin-io/misc/display-name-package-json

Move display name setting from Makefile to package.json
This commit is contained in:
Juan Cruz Viotti 2016-02-29 14:50:47 -04:00
commit 2d621ae216
2 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@ ELECTRON_BUILDER=./node_modules/.bin/electron-builder
ELECTRON_IGNORE=$(shell cat package.ignore | tr "\\n" "|" | sed "s/.$$//")
ELECTRON_VERSION=0.36.8
ETCHER_VERSION=$(shell node -e "console.log(require('./package.json').version)")
APPLICATION_NAME="Etcher"
APPLICATION_NAME=$(shell node -e "console.log(require('./package.json').displayName)")
etcher-release/Etcher-darwin-x64: .
$(ELECTRON_PACKAGER) . $(APPLICATION_NAME) \

View File

@ -1,5 +1,6 @@
{
"name": "etcher",
"displayName": "Etcher",
"version": "0.0.1",
"main": "lib/etcher.js",
"description": "An image burner with support for Windows, OS X and GNU/Linux.",