Skip to content

Commit

Permalink
Bump version to 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelFQC committed Jan 24, 2018
1 parent b2d4db4 commit c2ed5ff
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion background.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function update() {

browser.notifications.create({
type: "basic",
iconUrl: browser.extension.getURL("icons/github.png"),
iconUrl: browser.extension.getURL("icons/48/github.png"),
title: count === 1
? `There is 1 new notification`
: `There are ${badgeText} new notifications`,
Expand Down
Binary file added icons/48/github.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
7 changes: 4 additions & 3 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,20 @@
"manifest_version": 2,
"name": "GitHub Notifier",
"description": "Get your notifications from GitHub",
"version": "1.1.1",
"version": "1.2.2",
"developer": {
"name": "Angel Fernando Quiroz Campos",
"url": "https://angelfqc.wordpress.com"
},
"icons": {
"48": "icons/github.png"
"48": "icons/48/github.png",
"64": "icons/64/github.png"
},
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icons/github.png"
"default_icon": "icons/48/github.png"
},
"permissions": ["*://api.github.com/notifications", "tabs", "storage", "notifications"],
"options_ui": {
Expand Down

0 comments on commit c2ed5ff

Please sign in to comment.