Releases: azu/github-reader
Releases · azu/github-reader
1.4.6
1.4.5
1.3.4
1.3.3
1.3.2
UserFilterScript
New Feature
UserFilterScript
filter notification by using filter script
- Create
UserFilterScript
- 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
Release 1.2.1
Release 1.2.0
* **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))