diff --git a/artwork/webstore/large_promo.pxm b/artwork/webstore/large_promo.pxm index 8e361c3e..9efbb187 100644 Binary files a/artwork/webstore/large_promo.pxm and b/artwork/webstore/large_promo.pxm differ diff --git a/stylebot/background/updates.js b/stylebot/background/updates.js index 40d25343..0b324db9 100644 --- a/stylebot/background/updates.js +++ b/stylebot/background/updates.js @@ -22,9 +22,13 @@ function updateVersion(callback) { * Show notification for version update */ function showUpdateNotification() { - var notification = webkitNotifications.createHTMLNotification( - 'notification/index.html' - ); - notification.show(); + try { + var notification = webkitNotifications.createHTMLNotification( + 'notification/index.html' + ); + notification.show(); + } catch(e) { + console.log(e); + } } diff --git a/stylebot/manifest.json b/stylebot/manifest.json index 87db6231..e1c11b9e 100644 --- a/stylebot/manifest.json +++ b/stylebot/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name" : "Stylebot", - "version" : "2", + "version" : "2.0.1", "description" : "Change the appearance of websites instantly. Preview and install styles created by users for your favorite websites",