From e58f3fd9cd11c9537be0328ea334bdf2f890d6c0 Mon Sep 17 00:00:00 2001 From: Brendann <bjtaylor_93@hotmail.com> Date: Sat, 8 Nov 2014 20:55:51 +0800 Subject: [PATCH] Update growl.py with missing registration of update notification Update CHANGES.md Added line to growl registration which adds common.NOTIFY_GIT_UPDATE as a sickrage notification type. growl on some systems will not show notification unless it is registered. --- CHANGES.md | 1 + sickbeard/notifiers/growl.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 3e564015..484e45a9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -47,6 +47,7 @@ * Add handler for when Trakt returns no results for Add Show/Add Trending Show page * Fix image links when anchor child images are not found at Trakt on Add Show/Add Trending Show page * Add image to be used when Trakt posters are void on Add Show/Add Trending Show page +* Fix growl registration not sending sickrage update notification registration. [develop changelog] * Change improve display of progress bars in the Downloads columns of the show list page diff --git a/sickbeard/notifiers/growl.py b/sickbeard/notifiers/growl.py index 47ea6ef3..b1c3be86 100644 --- a/sickbeard/notifiers/growl.py +++ b/sickbeard/notifiers/growl.py @@ -179,7 +179,8 @@ class GrowlNotifier: register.add_notification('Test', True) register.add_notification(common.notifyStrings[common.NOTIFY_SNATCH], True) register.add_notification(common.notifyStrings[common.NOTIFY_DOWNLOAD], True) - + register.add_notification(common.notifyStrings[common.NOTIFY_GIT_UPDATE], True) + if opts['password']: register.set_password(opts['password'])