diff --git a/data/interfaces/default/configuration_table.html b/data/interfaces/default/configuration_table.html index 7a1cde15..013ad141 100644 --- a/data/interfaces/default/configuration_table.html +++ b/data/interfaces/default/configuration_table.html @@ -22,11 +22,11 @@ DOCUMENTATION :: END % if plexpy.CURRENT_VERSION: Git Branch: - ${plexpy.CONFIG.GIT_BRANCH} + ${plexpy.CONFIG.GIT_BRANCH} Git Commit Hash: - ${plexpy.CURRENT_VERSION} + ${plexpy.CURRENT_VERSION} % endif @@ -74,18 +74,18 @@ DOCUMENTATION :: END Resources: - GitHub Source | - GitHub Issues | - FeatHub Feature Requests | - PlexPy Wiki | - PlexPy FAQ + GitHub Source | + GitHub Issues | + FeatHub Feature Requests | + PlexPy Wiki | + PlexPy FAQ Support: Plex Forums | - PlexPy Gitter Chat | + PlexPy Gitter Chat | /r/Plex Discord Server | PlexPy Discord Server diff --git a/plexpy/config.py b/plexpy/config.py index f228056c..4e5f57bb 100644 --- a/plexpy/config.py +++ b/plexpy/config.py @@ -170,7 +170,7 @@ _CONFIG_DEFINITIONS = { 'GIT_BRANCH': (str, 'General', 'master'), 'GIT_PATH': (str, 'General', ''), 'GIT_TOKEN': (str, 'General', ''), - 'GIT_USER': (str, 'General', 'drzoidberg33'), + 'GIT_USER': (str, 'General', 'JonnyWong16'), 'GRAPH_TYPE': (str, 'General', 'plays'), 'GRAPH_DAYS': (int, 'General', 30), 'GRAPH_TAB': (str, 'General', 'tabs-1'), @@ -801,4 +801,9 @@ class Config(object): if self.CONFIG_VERSION == '5': self.MONITOR_PMS_UPDATES = 0 - self.CONFIG_VERSION = '6' \ No newline at end of file + self.CONFIG_VERSION = '6' + + if self.CONFIG_VERSION == '6': + if self.GIT_USER.lower() == 'drzoidberg33': + self.GIT_USER = 'JonnyWong16' + self.CONFIG_VERSION = '7' \ No newline at end of file diff --git a/plexpy/notifiers.py b/plexpy/notifiers.py index 0bff8a62..e1e6944c 100644 --- a/plexpy/notifiers.py +++ b/plexpy/notifiers.py @@ -626,9 +626,9 @@ class PrettyMetadata(object): self.poster_url = self.metadata.get('poster_url','') if not self.poster_url: if self.metadata['media_type'] in ['artist', 'track']: - self.poster_url = 'https://raw.githubusercontent.com/drzoidberg33/plexpy/master/data/interfaces/default/images/cover.png' + self.poster_url = 'https://raw.githubusercontent.com/%s/plexpy/master/data/interfaces/default/images/cover.png' % plexpy.CONFIG.GIT_USER else: - self.poster_url = 'https://raw.githubusercontent.com/drzoidberg33/plexpy/master/data/interfaces/default/images/poster.png' + self.poster_url = 'https://raw.githubusercontent.com/%s/plexpy/master/data/interfaces/default/images/poster.png' % plexpy.CONFIG.GIT_USER return self.poster_url def get_poster_link(self):