This repository has been archived by the owner on Oct 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #203 from tinytacoteam/feature/electron-builder
Switch to electron builder.
- Loading branch information
Showing
28 changed files
with
142 additions
and
909 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
## Getting Involved | ||
|
||
### What's being worked on now | ||
|
||
The core team tracks what is currently being worked on on the [Zazu Project | ||
Board][Zazu Project Board]. | ||
|
||
### Zazu Core | ||
|
||
You can also look through currently open issues in Zazu Core. Often, the ones | ||
not being worked on are marked with a [help wanted][help wanted tag]. tag. | ||
|
||
### Plugins | ||
|
||
Plugin development is also a great way to get involved. Zazu needs plugin to do | ||
anything useful for a user. If you create one, start the repo name with `zazu-` | ||
and feel free to submit it to the plugin directory once you get it working! If | ||
you need help getting started there is documentation on [creating a | ||
plugin][plugin page]. | ||
|
||
## Community | ||
|
||
You can find the community and core developers on [Gitter Chat][Gitter Chat]. | ||
|
||
## Core Team Guidelines | ||
|
||
If you're part of Zazu's core team there are a few guidelines for you as well. | ||
|
||
When starting work, please update the [Zazu Project Board][Zazu Project Board] | ||
with your current task. When you create a pull request, add a reviewer who is | ||
also on the core team. | ||
|
||
If you get added as a reviewer and you don't have time to get to it in the next | ||
day or two, feel free to comment or re-assign the ticket, things come up, we | ||
understand! [: | ||
|
||
If there is no reviewer on a pull request, from a non-core member for example, | ||
assign it to yourself and take it from there. | ||
|
||
Lastly, if you approve of the change, merge the pull request yourself. | ||
|
||
[Zazu Project Board]: https://github.com/orgs/tinytacoteam/projects/1 | ||
[helped wanted tag]: https://github.com/tinytacoteam/zazu/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted%22 | ||
[plugin page]: http://zazuapp.org/documentation/plugins/ | ||
[Gitter Chat]: https://gitter.im/tinytacoteam/zazu |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
{ | ||
"name": "zazu", | ||
"productName": "Zazu", | ||
"identifier": "com.tinytacoteam.zazu", | ||
"version": "0.4.0", | ||
"description": "A cross platform productivity application.", | ||
"version": "0.3.2", | ||
"author": "Blaine Schmeisser <[email protected]>", | ||
"main": "background.js", | ||
"email": "[email protected]", | ||
"author": "Tiny Taco Team <[email protected]>", | ||
"homepage": "http://zazuapp.org", | ||
"license": "MIT", | ||
"main": "background.js", | ||
"dependencies": { | ||
"auto-launch": "^2.1.0", | ||
"babel-register": "^6.18.0", | ||
|
@@ -29,16 +28,5 @@ | |
"babel-preset-es2015": "^6.18.0", | ||
"babel-preset-react": "^6.16.0", | ||
"babelify": "^7.3.0" | ||
}, | ||
"packageNameTemplate": "{{name}}-v{{version}}-{{platform}}-{{arch}}", | ||
"osx": { | ||
"build": "1", | ||
"identifier": "com.tinytacoteam.zazu", | ||
"LSApplicationCategoryType": "public.app-category.productivity", | ||
"//codeSignIdentitiy": { | ||
"dmg": "Developer ID Application: Company Name (APPIDENTITY)", | ||
"MAS": "3rd Party Mac Developer Application: Company Name (APPIDENTITY)", | ||
"MASInstaller": "3rd Party Mac Developer Installer: Company Name (APPIDENTITY)" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,57 @@ | ||
{ | ||
"version": "0.4.0", | ||
"build": { | ||
"productName": "Zazu", | ||
"appId": "com.tinytacoteam.zazu", | ||
"publish": [ | ||
"github" | ||
], | ||
"win": { | ||
"target": [ | ||
"nsis" | ||
], | ||
"icon": "resources/windows/icon.ico" | ||
}, | ||
"nsis": { | ||
"oneClick": true, | ||
"installerHeaderIcon": "resources/windows/setup-icon.ico" | ||
}, | ||
"linux": { | ||
"target": [ | ||
"deb" | ||
] | ||
}, | ||
"mac": { | ||
"target": [ | ||
"dmg" | ||
], | ||
"icon": "resources/osx/icon.icns", | ||
"category": "public.app-category.productivity" | ||
}, | ||
"dmg": { | ||
"icon": "resources/osx/dmg-icon.icns", | ||
"background": "resources/osx/dmg-background.png" | ||
}, | ||
"directories": { | ||
"buildResources": "resources" | ||
} | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+ssh://[email protected]/tinytacoteam/zazu.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/tinytacoteam/zazu/issues" | ||
}, | ||
"devDependencies": { | ||
"asar": "^0.10.0", | ||
"chai": "^3.5.0", | ||
"cheerio": "^0.20.0", | ||
"cross-env": "^2.0.0", | ||
"cucumber": "^1.2.2", | ||
"electron": "~1.3.1", | ||
"electron-builder": "^11.5.2", | ||
"electron-mocha": "^1.0.0", | ||
"electron-prebuilt": "~1.3.1", | ||
"eslint": "2.3.0", | ||
"eslint-config-standard": "5.1.0", | ||
"eslint-plugin-promise": "1.1.0", | ||
|
@@ -31,9 +76,8 @@ | |
"scripts": { | ||
"prepush": "npm run lint && npm test", | ||
"postinstall": "cd app && npm install", | ||
"dev-release": "gulp release --env=production", | ||
"prerelease": "npm install", | ||
"release": "npm run dev-release", | ||
"release": "cross-env DEBUG=electron-builder build --x64 --publish onTag", | ||
"start": "cross-env NODE_ENV=development electron ./app", | ||
"test": "cross-env NODE_ENV=test electron-mocha --recursive test/app", | ||
"cucumber": "cucumberjs", | ||
|
File renamed without changes
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.