Skip to content

Latest commit

 

History

History
80 lines (53 loc) · 2.37 KB

readme.md

File metadata and controls

80 lines (53 loc) · 2.37 KB

github-reader Build Status

Github Client - Viewer for Notifications and News Feed

ScreenShot

Built with node-webkit.

Features

Installation

Download latest binary

Multi-platform support

  • Windows
  • Mac OS X
  • Linux 32,64bit

Config

token

config

  • Open Config in Github-Reader.app
    • Input Github username
    • Input personal access token
  • Save & Reload

UserFilterScript

Filter notifications by using filter script

2015-03-21_13-20-50

  1. Create UserFilterScript.js
  2. 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;
};

Develop

npm install

Run apps with node-webkit.

Contributing

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

License

MIT