Github Client - Viewer for Notifications and News Feed
Built with node-webkit.
- Viewer for mixed Notifications and News Feed
- Growl Notification(for Mac only, relate issue - Implement desktop notifications)
J
,K
scroll shortcutO
: open in browserCtrl + R
reloadCtrl + f
: toggle search bar - gif
Multi-platform support
- Windows
- Mac OS X
- Linux 32,64bit
- Create New personal access token
- require scopes are
notifications
anduser
- require scopes are
- Open
Config
in Github-Reader.app- Input Github username
- Input personal access token
- Save & Reload
Filter notifications by using filter script
- Create
UserFilterScript.js
- Set
UserFilterScript
file path in config view.
examples/user-filter-example.js: ignore "coveralls" account.
module.exports = function (item) {
if(item.user_name === "coveralls"){
return false;
}
return true;
};
npm install
Run apps with node-webkit.
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
MIT