Skip to content

Commit

Permalink
✨ add things for build
Browse files Browse the repository at this point in the history
  • Loading branch information
HoverBaum committed Jul 27, 2016
1 parent 46f6722 commit b00fdc0
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 33 deletions.
Binary file added build/icon.icns
Binary file not shown.
Binary file added build/icon.ico
Binary file not shown.
11 changes: 11 additions & 0 deletions docs/packageing.md
@@ -0,0 +1,11 @@
# Icons

## Windows

Followed http://zduck.com/2014/creating-ico-icon-for-windows-app/ to create a .ico file.

## Mac

Holy cow I have no idea what I am doing.

USed https://iconverticons.com/online/ for .icns apperently it could also have done the .ico
73 changes: 40 additions & 33 deletions package.json
@@ -1,35 +1,42 @@
{
"name": "BlankUp-electron",
"version": "1.0.0",
"description": "BlankUp wrapped in Electron.",
"main": "app/main.js",
"scripts": {
"start": "electron .",
"stylus": "node node_modules/stylus/bin/stylus styl/style.styl --out app/css --use url --with \"{limit: false}\" --watch",
"dev": "node ./node_modules/concurrently/src/main.js --kill-others \"npm run stylus\" \"npm start\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/HoverBaum/BlankUp-Electron.git"
},
"keywords": [
"Markdown",
"editor",
"Electron"
],
"author": "GitHub",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/HoverBaum/BlankUp-Electron/issues"
},
"homepage": "https://github.com/HoverBaum/BlankUp-Electron",
"devDependencies": {
"electron-prebuilt": "^1.2.0",
"electron-reload": "^1.0.0"
},
"dependencies": {
"BlankUp": "^0.2.0",
"choo": "^3.0.0",
"font-awesome": "^4.6.3"
}
"name": "BlankUp-electron",
"version": "1.0.0",
"description": "BlankUp wrapped in Electron.",
"main": "app/main.js",
"scripts": {
"start": "electron .",
"stylus": "node node_modules/stylus/bin/stylus styl/style.styl --out app/css --use url --with \"{limit: false}\" --watch",
"dev": "node ./node_modules/concurrently/src/main.js --kill-others \"npm run stylus\" \"npm start\"",
"postinstall": "install-app-deps",
"pack": "build --dir",
"dist": "build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HoverBaum/BlankUp-Electron.git"
},
"keywords": [
"Markdown",
"editor",
"Electron"
],
"author": "GitHub",
"license": "MIT",
"bugs": {
"url": "https://github.com/HoverBaum/BlankUp-Electron/issues"
},
"homepage": "https://github.com/HoverBaum/BlankUp-Electron",
"devDependencies": {
"electron-prebuilt": "^1.2.0",
"electron-reload": "^1.0.0"
},
"dependencies": {
"BlankUp": "^0.2.0",
"choo": "^3.0.0",
"font-awesome": "^4.6.3"
},
"build": {
"appId": "de.hendrikwallbaum.blankUpElectron",
"app-category-type": "public.app-category.productivity"
}
}

0 comments on commit b00fdc0

Please sign in to comment.