Skip to content

Releases: azu/github-reader

1.4.6

11 Jan 12:40
@azu azu
Compare
Choose a tag to compare
Release 1.4.6

1.4.5

04 Jan 09:23
@azu azu
Compare
Choose a tag to compare
Release 1.4.5

1.3.4

07 Jun 06:03
@azu azu
Compare
Choose a tag to compare
Release 1.3.4

1.3.3

07 Jun 05:42
@azu azu
Compare
Choose a tag to compare
Release 1.3.3

1.3.2

21 Mar 05:26
@azu azu
Compare
Choose a tag to compare
Release 1.3.2

UserFilterScript

21 Mar 04:18
@azu azu
Compare
Choose a tag to compare

New Feature

UserFilterScript

filter notification by using filter script

2015-03-21_13-20-50

  1. Create UserFilterScript
  2. Set UserFilterScript file path in config view.

Example: ignore "coveralls" account.

/*
item=
{
            "id": event.id,// github global event id
            "date": event.created_at,
            "user_name": event.actor.login,
            "avatar_url": event.actor.avatar_url,
            "repo_name": repository name,
            "title": String,
            "html_url": URL
            "body": String
}
 */
/**
 * return true == preserve item, return false == ignore item
 * @param item
 * @returns {boolean}
 */
module.exports = function (item) {
    if(item.user_name === "coveralls"){
        return false;
    }
    return true;
};

1.3.0

21 Mar 04:08
@azu azu
Compare
Choose a tag to compare
Release 1.3.0

Release 1.2.1

07 Jan 01:37
@azu azu
Compare
Choose a tag to compare

1.2.1 (2015-01-07)

Bug Fixes

1.2.0 (2015-01-07)

Bug Fixes

  • growl: fix to check items at first (a8016a16)

Features

  • growl: when click the growl, then open the issue url and focus app (1badd141)

Release 1.2.0

07 Jan 01:21
@azu azu
Compare
Choose a tag to compare
* **growl:** fix to check items at first ([a8016a16](https://github.com/azu/github-reader/commit/a8016a16ac769fe3f51cebd80406aaaae1b4eb41))

* **growl:** when click the growl, then open the issue url and focus app ([1badd141](https://github.com/azu/github-reader/commit/1badd141ab0e3fa5deb6fc6c69475b9ae69a038a))

1.1.5

19 Nov 13:10
@azu azu
Compare
Choose a tag to compare
Release 1.1.5