diff --git a/data/interfaces/default/css/plexpy.css b/data/interfaces/default/css/plexpy.css index 2edde3f0..2caf485c 100644 --- a/data/interfaces/default/css/plexpy.css +++ b/data/interfaces/default/css/plexpy.css @@ -1418,6 +1418,13 @@ a:hover .item-children-poster { width: 40px; margin-right: 20px; } +#new_title h3 { + color: #F9AA03; + font-size: 14px; + line-height: 1.42857143; + font-weight: bold; + margin: 0; +} .settings-alert { float: left; padding: 0; diff --git a/data/interfaces/default/info.html b/data/interfaces/default/info.html index b036b91f..17473a4a 100644 --- a/data/interfaces/default/info.html +++ b/data/interfaces/default/info.html @@ -41,6 +41,7 @@ parent_title Returns the name of the album. grandparent_title Returns the name of the show, or artist. media_index Returns the index number of the episode, or track. parent_media_index Returns the index number of the season. +year Returns the release year of the movie, or show. media_type Returns the type of media. Either 'movie', 'show', 'season', 'episode', 'artist', 'album', or 'track'. rating_key Returns the unique identifier for the media item. @@ -454,8 +455,26 @@ DOCUMENTATION :: END
Are you REALLY sure you want to replace ${query['title']} with
-+
Are you REALLY sure you want to replace +
+ % if query['media_type'] == 'movie':
+ ${query['title']}
${query['year']}
+ % elif query['media_type'] == 'show':
+ ${query['grandparent_title']}
${query['year']}
+ % elif query['media_type'] == 'season':
+ ${query['grandparent_title']}
S${query['parent_media_index']}
+ % elif query['media_type'] == 'episode':
+ ${query['grandparent_title']}
${query['title']}
S${query['parent_media_index']} · E${query['media_index']}
+ % elif query['media_type'] == 'artist':
+ ${query['grandparent_title']}
+ % elif query['media_type'] == 'album':
+ ${query['grandparent_title']}
${query['parent_title']}
+ % elif query['media_type'] == 'track':
+ ${query['grandparent_title']}
${query['title']}
${query['parent_title']}
+ % endif
+
with
+
This is permanent and cannot be undone!