diff --git a/CHANGES.md b/CHANGES.md index 99bbb134..ccaf846e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -135,6 +135,7 @@ * Change try all episode names with 'real', 'repack', 'proper' * Add tip to search settings/media search about improved matching with optional regex library * Change use value of "Update shows during hour" in General Settings straight after it is saved instead of after restart +* Change add tips for what to use for Growl notifications on Windows [develop changelog] @@ -153,6 +154,7 @@ * Fix error after SG is updated and where Slack notifier is not enabled * Change reduce number of DB calls for extra_info_no_name * Add parse repack, proper level to recent search flow +* Change reenable Trakt Notifier to update collections at end of PP ### 0.12.37 (2017-11-12 10:35:00 UTC) diff --git a/gui/slick/interfaces/default/config_notifications.tmpl b/gui/slick/interfaces/default/config_notifications.tmpl index ed41191c..cc2abf91 100644 --- a/gui/slick/interfaces/default/config_notifications.tmpl +++ b/gui/slick/interfaces/default/config_notifications.tmpl @@ -1167,7 +1167,7 @@

Growl

-

Notification system for OS X.

+

Self-hosted private device to device notification system made for OS X, available on Windows. Snarl on Windows and Growl for Android.

diff --git a/sickbeard/notifiers/trakt.py b/sickbeard/notifiers/trakt.py index daf3d43d..c94184ea 100644 --- a/sickbeard/notifiers/trakt.py +++ b/sickbeard/notifiers/trakt.py @@ -28,6 +28,13 @@ class TraktNotifier(BaseNotifier): """ A "notifier" for trakt.tv which keeps track of what has and hasn't been added to your library. """ + @classmethod + def is_enabled_library(cls): + if sickbeard.TRAKT_ACCOUNTS: + for tid, locations in sickbeard.TRAKT_UPDATE_COLLECTION.items(): + if tid in sickbeard.TRAKT_ACCOUNTS.keys(): + return True + return False def update_library(self, ep_obj=None, **kwargs):