diff --git a/resources/lib/plex_tv.py b/resources/lib/plex_tv.py
index cfc7d13c..84c7b076 100644
--- a/resources/lib/plex_tv.py
+++ b/resources/lib/plex_tv.py
@@ -228,8 +228,11 @@ def _sign_in_with_pin():
"""
Returns the user xml answer from plex.tv or None if unsuccessful
"""
- from .windows import signin
- back = signin.Background.create()
+ from .windows import signin, background
+
+ background.setSplash(False)
+ back = background.Background.create()
+
try:
pre = signin.PreSignInWindow.open()
try:
diff --git a/resources/lib/utils.py b/resources/lib/utils.py
index c580a2a4..d300393d 100644
--- a/resources/lib/utils.py
+++ b/resources/lib/utils.py
@@ -56,7 +56,18 @@ def garbageCollect():
def setGlobalProperty(key, val):
- xbmcgui.Window(10000).setProperty('script.plex.{0}'.format(key), val)
+ xbmcgui.Window(10000).setProperty(
+ 'plugin.video.plexkodiconnect.{0}'.format(key), val)
+
+
+def setGlobalBoolProperty(key, boolean):
+ xbmcgui.Window(10000).setProperty(
+ 'plugin.video.plexkodiconnect.{0}'.format(key), boolean and '1' or '')
+
+
+def getGlobalProperty(key):
+ return xbmc.getInfoLabel(
+ 'Window(10000).Property(plugin.video.plexkodiconnect.{0})'.format(key))
def reboot_kodi(message=None):
diff --git a/resources/lib/windows/background.py b/resources/lib/windows/background.py
new file mode 100644
index 00000000..77919832
--- /dev/null
+++ b/resources/lib/windows/background.py
@@ -0,0 +1,38 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+from __future__ import absolute_import, division, unicode_literals
+from . import kodigui
+from .. import utils, variables as v
+
+utils.setGlobalProperty('background.busy', '')
+utils.setGlobalProperty('background.shutdown', '')
+utils.setGlobalProperty('background.splash', '')
+
+
+class BackgroundWindow(kodigui.BaseWindow):
+ xmlFile = 'script-plex-background.xml'
+ path = v.ADDON_PATH
+ theme = 'Main'
+ res = '1080i'
+ width = 1920
+ height = 1080
+
+ def __init__(self, *args, **kwargs):
+ kodigui.BaseWindow.__init__(self, *args, **kwargs)
+ self.function = kwargs.get('function')
+
+ def onFirstInit(self):
+ self.function()
+ self.doClose()
+
+
+def setBusy(on=True):
+ utils.setGlobalProperty('background.busy', on and '1' or '')
+
+
+def setSplash(on=True):
+ utils.setGlobalProperty('background.splash', on and '1' or '')
+
+
+def setShutdown(on=True):
+ utils.setGlobalProperty('background.shutdown', on and '1' or '')
diff --git a/resources/lib/windows/signin.py b/resources/lib/windows/signin.py
index c3d2cd9f..8e96c8a4 100644
--- a/resources/lib/windows/signin.py
+++ b/resources/lib/windows/signin.py
@@ -104,10 +104,10 @@ class PinLoginWindow(kodigui.BaseWindow):
kodigui.BaseWindow.__init__(self, *args, **kwargs)
def setPin(self, pin):
- self.setProperty('pin.image.0', 'script.plex/sign_in/digits/{0}.png'.format(pin[0].upper()))
- self.setProperty('pin.image.1', 'script.plex/sign_in/digits/{0}.png'.format(pin[1].upper()))
- self.setProperty('pin.image.2', 'script.plex/sign_in/digits/{0}.png'.format(pin[2].upper()))
- self.setProperty('pin.image.3', 'script.plex/sign_in/digits/{0}.png'.format(pin[3].upper()))
+ self.setProperty('pin.image.0', 'plugin.video.plexkodiconnect/sign_in/digits/{0}.png'.format(pin[0].upper()))
+ self.setProperty('pin.image.1', 'plugin.video.plexkodiconnect/sign_in/digits/{0}.png'.format(pin[1].upper()))
+ self.setProperty('pin.image.2', 'plugin.video.plexkodiconnect/sign_in/digits/{0}.png'.format(pin[2].upper()))
+ self.setProperty('pin.image.3', 'plugin.video.plexkodiconnect/sign_in/digits/{0}.png'.format(pin[3].upper()))
def setLinking(self):
self.setProperty('linking', '1')
diff --git a/resources/skins/Main/1080i/script-plex-album.xml b/resources/skins/Main/1080i/script-plex-album.xml
index 736ecc65..4b226df1 100644
--- a/resources/skins/Main/1080i/script-plex-album.xml
+++ b/resources/skins/Main/1080i/script-plex-album.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -89,8 +89,8 @@
174
139
font12
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
@@ -102,8 +102,8 @@
174
139
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -115,8 +115,8 @@
174
139
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -133,7 +133,7 @@
0
1380
945
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
20000000
@@ -156,7 +156,7 @@
120
24
- !StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ !StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
0
0
50
@@ -168,12 +168,12 @@
- StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
0
21
35
35
- script.plex/indicators/playing-circle.png
+ plugin.video.plexkodiconnect/indicators/playing-circle.png
FFE5A00D
@@ -208,7 +208,7 @@
73
930
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -237,7 +237,7 @@
120
24
- !StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ !StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
0
0
50
@@ -249,12 +249,12 @@
- StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
0
21
35
35
- script.plex/indicators/playing-circle.png
+ plugin.video.plexkodiconnect/indicators/playing-circle.png
FFE5A00D
@@ -289,7 +289,7 @@
73
930
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -303,18 +303,18 @@
-40
1130
156
- script.plex/square-rounded-shadow.png
+ plugin.video.plexkodiconnect/square-rounded-shadow.png
0
0
1044
76
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
FFE5A00D
- !StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ !StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
48
0
50
@@ -326,12 +326,12 @@
- StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
48
21
35
35
- script.plex/indicators/playing-circle.png
+ plugin.video.plexkodiconnect/indicators/playing-circle.png
FF000000
@@ -386,9 +386,9 @@
874
101
true
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
-
false
@@ -412,7 +412,7 @@
0
1920
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -436,8 +436,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -463,8 +463,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -486,7 +486,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -557,9 +557,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -581,7 +581,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -594,7 +594,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -609,7 +609,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
diff --git a/resources/skins/Main/1080i/script-plex-artist.xml b/resources/skins/Main/1080i/script-plex-artist.xml
index 02b8811d..dca6452d 100644
--- a/resources/skins/Main/1080i/script-plex-artist.xml
+++ b/resources/skins/Main/1080i/script-plex-artist.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -54,8 +54,8 @@
174
139
font12
- script.plex/buttons/info-focus.png
- script.plex/buttons/info.png
+ plugin.video.plexkodiconnect/buttons/info-focus.png
+ plugin.video.plexkodiconnect/buttons/info.png
@@ -67,8 +67,8 @@
174
139
font12
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
@@ -80,8 +80,8 @@
174
139
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -93,8 +93,8 @@
174
139
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -109,7 +109,7 @@
0
519
519
- $INFO[Window.Property(thumb)]
+ $INFO[Window.Property(thumb)]
scale
@@ -159,7 +159,7 @@
0
1920
360
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
20000000
@@ -239,7 +239,7 @@
-40
295
295
- script.plex/square-rounded-shadow.png
+ plugin.video.plexkodiconnect/square-rounded-shadow.png
0
@@ -288,7 +288,7 @@
-5
225
225
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -311,7 +311,7 @@
0
1920
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -335,8 +335,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -362,8 +362,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -385,7 +385,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -456,9 +456,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -480,7 +480,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -493,7 +493,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -508,7 +508,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
diff --git a/resources/skins/Main/1080i/script-plex-background.xml b/resources/skins/Main/1080i/script-plex-background.xml
index 7d28bf2f..42640926 100644
--- a/resources/skins/Main/1080i/script-plex-background.xml
+++ b/resources/skins/Main/1080i/script-plex-background.xml
@@ -9,29 +9,29 @@
0xff111111
- !String.IsEmpty(Window(10000).Property(script.plex.background.splash))
+ !String.IsEmpty(Window(10000).Property(plugin.video.plexkodiconnect.background.splash))
710
459
500
162
- script.plex/splash.png
+ plugin.video.plexkodiconnect/splash.png
- !String.IsEmpty(Window(10000).Property(script.plex.background.busy))
+ !String.IsEmpty(Window(10000).Property(plugin.video.plexkodiconnect.background.busy))
812
135
300
97
- script.plex/user_select/plex.png
+ plugin.video.plexkodiconnect/user_select/plex.png
840
465
240
150
- script.plex/busy-back.png
+ plugin.video.plexkodiconnect/busy-back.png
A0FFFFFF
@@ -39,18 +39,18 @@
521
90
38
- script.plex/busy.gif
+ plugin.video.plexkodiconnect/busy.gif
- !String.IsEmpty(Window(10000).Property(script.plex.background.shutdown))
+ !String.IsEmpty(Window(10000).Property(plugin.video.plexkodiconnect.background.shutdown))
840
465
240
150
- script.plex/busy-back.png
+ plugin.video.plexkodiconnect/busy-back.png
A0FFFFFF
@@ -58,7 +58,7 @@
521
90
38
- script.plex/busy.gif
+ plugin.video.plexkodiconnect/busy.gif
diff --git a/resources/skins/Main/1080i/script-plex-busy.xml b/resources/skins/Main/1080i/script-plex-busy.xml
index a65efd70..5cf96635 100644
--- a/resources/skins/Main/1080i/script-plex-busy.xml
+++ b/resources/skins/Main/1080i/script-plex-busy.xml
@@ -13,7 +13,7 @@
465
240
150
- script.plex/busy-back.png
+ plugin.video.plexkodiconnect/busy-back.png
A0FFFFFF
@@ -21,7 +21,7 @@
521
90
38
- script.plex/busy.gif
+ plugin.video.plexkodiconnect/busy.gif
diff --git a/resources/skins/Main/1080i/script-plex-dropdown.xml b/resources/skins/Main/1080i/script-plex-dropdown.xml
index b6319076..50a0eb60 100644
--- a/resources/skins/Main/1080i/script-plex-dropdown.xml
+++ b/resources/skins/Main/1080i/script-plex-dropdown.xml
@@ -27,7 +27,7 @@
-40
380
146
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
0
@@ -50,7 +50,7 @@
0
300
66
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
String.IsEmpty(ListItem.Property(first)) + String.IsEmpty(ListItem.Property(last)) + String.IsEmpty(ListItem.Property(only))
@@ -58,7 +58,7 @@
0
300
66
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
!String.IsEmpty(ListItem.Property(last))
@@ -66,7 +66,7 @@
0
300
66
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
!String.IsEmpty(ListItem.Property(only))
@@ -74,7 +74,7 @@
0
300
66
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
String.IsEmpty(ListItem.Property(with.indicator))
@@ -116,7 +116,7 @@
64
300
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -126,7 +126,7 @@
0
300
66
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
String.IsEmpty(ListItem.Property(first)) + String.IsEmpty(ListItem.Property(last)) + String.IsEmpty(ListItem.Property(only))
@@ -134,7 +134,7 @@
0
300
66
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
!String.IsEmpty(ListItem.Property(last))
@@ -142,7 +142,7 @@
0
300
66
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
!String.IsEmpty(ListItem.Property(only))
@@ -150,7 +150,7 @@
0
300
66
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
String.IsEmpty(ListItem.Property(with.indicator))
@@ -192,10 +192,10 @@
64
300
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
-
\ No newline at end of file
+
diff --git a/resources/skins/Main/1080i/script-plex-dropdown_header.xml b/resources/skins/Main/1080i/script-plex-dropdown_header.xml
index daabe73c..8d6af115 100644
--- a/resources/skins/Main/1080i/script-plex-dropdown_header.xml
+++ b/resources/skins/Main/1080i/script-plex-dropdown_header.xml
@@ -26,7 +26,7 @@
-106
720
146
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
!String.IsEmpty(Window.Property(header))
@@ -37,7 +37,7 @@
0
640
132
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
20
@@ -72,7 +72,7 @@
0
600
66
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
String.IsEmpty(ListItem.Property(first)) + String.IsEmpty(ListItem.Property(last)) + String.IsEmpty(ListItem.Property(only))
@@ -80,7 +80,7 @@
0
600
66
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
!String.IsEmpty(ListItem.Property(last))
@@ -88,7 +88,7 @@
0
600
66
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
!String.IsEmpty(ListItem.Property(only))
@@ -96,7 +96,7 @@
0
600
66
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
String.IsEmpty(ListItem.Property(with.indicator))
@@ -138,7 +138,7 @@
64
600
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -148,7 +148,7 @@
0
600
66
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
String.IsEmpty(ListItem.Property(first)) + String.IsEmpty(ListItem.Property(last)) + String.IsEmpty(ListItem.Property(only))
@@ -156,7 +156,7 @@
0
600
66
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
!String.IsEmpty(ListItem.Property(last))
@@ -164,7 +164,7 @@
0
600
66
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
!String.IsEmpty(ListItem.Property(only))
@@ -172,7 +172,7 @@
0
600
66
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
String.IsEmpty(ListItem.Property(with.indicator))
@@ -214,10 +214,10 @@
64
600
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
-
\ No newline at end of file
+
diff --git a/resources/skins/Main/1080i/script-plex-episodes.xml b/resources/skins/Main/1080i/script-plex-episodes.xml
index afccef8c..f096c085 100644
--- a/resources/skins/Main/1080i/script-plex-episodes.xml
+++ b/resources/skins/Main/1080i/script-plex-episodes.xml
@@ -13,7 +13,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -67,8 +67,8 @@
176
140
font12
- script.plex/buttons/info-focus.png
- script.plex/buttons/info.png
+ plugin.video.plexkodiconnect/buttons/info-focus.png
+ plugin.video.plexkodiconnect/buttons/info.png
@@ -80,8 +80,8 @@
176
140
font12
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
@@ -93,8 +93,8 @@
176
140
font12
- script.plex/buttons/settings-focus.png
- script.plex/buttons/settings.png
+ plugin.video.plexkodiconnect/buttons/settings-focus.png
+ plugin.video.plexkodiconnect/buttons/settings.png
@@ -106,8 +106,8 @@
176
140
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -119,8 +119,8 @@
176
140
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -136,7 +136,7 @@
0
657
393
- script.plex/thumb_fallbacks/show.png
+ plugin.video.plexkodiconnect/thumb_fallbacks/show.png
scale
@@ -153,7 +153,7 @@
0
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
@@ -207,9 +207,9 @@
FFFFFFFF
FFFFFFFF
15
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
-
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+
@@ -244,7 +244,7 @@
6
134
22
- script.plex/stars/$INFO[Container(400).ListItem.Property(rating.stars)].png
+ plugin.video.plexkodiconnect/stars/$INFO[Container(400).ListItem.Property(rating.stars)].png
!String.IsEmpty(Container(400).ListItem.Property(video.res))
@@ -257,8 +257,8 @@
FFFFFFFF
FFFFFFFF
15
- script.plex/white-square-rounded-top-padded.png
- script.plex/white-square-rounded-top-padded.png
+ plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
+ plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
@@ -277,7 +277,7 @@
2
63
30
- $INFO[Container(400).ListItem.Property(rating.image)]
+ $INFO[Container(400).ListItem.Property(rating.image)]
keep
@@ -326,9 +326,9 @@
FFFFFFFF
FFFFFFFF
15
- script.plex/white-square-rounded-top-padded.png
- script.plex/white-square-rounded-top-padded.png
-
+ plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
+ plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
+
auto
@@ -350,9 +350,9 @@
FFFFFFFF
FFFFFFFF
15
- script.plex/white-square-rounded-top-padded.png
- script.plex/white-square-rounded-top-padded.png
-
+ plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
+ plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
+
!String.IsEmpty(Container(400).ListItem.Property(subtitles))
@@ -382,7 +382,7 @@
557
1
8
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -391,7 +391,7 @@
565
1920
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -414,7 +414,7 @@
0
1920
360
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -471,7 +471,7 @@
0
299
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -489,7 +489,7 @@
0
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
false
@@ -533,7 +533,7 @@
-40
389
258
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -563,7 +563,7 @@
0
299
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -581,7 +581,7 @@
0
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
Control.HasFocus(400)
@@ -640,7 +640,7 @@
0
309
178
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -739,7 +739,7 @@
-40
389
258
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -791,7 +791,7 @@
0
309
178
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -810,7 +810,7 @@
0
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -866,7 +866,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -909,7 +909,7 @@
-40
324
441
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -938,7 +938,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -968,7 +968,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -987,7 +987,7 @@
20
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -999,7 +999,7 @@
left
center
FFFFFFFF
-
+
0
@@ -1024,14 +1024,14 @@
0
244
244
- script.plex/thumb_fallbacks/role.png
+ plugin.video.plexkodiconnect/thumb_fallbacks/role.png
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -1080,7 +1080,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -1090,14 +1090,14 @@
0
244
244
- script.plex/thumb_fallbacks/role.png
+ plugin.video.plexkodiconnect/thumb_fallbacks/role.png
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -1133,7 +1133,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -1157,7 +1157,7 @@
0
1920
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -1181,8 +1181,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -1199,8 +1199,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -1222,7 +1222,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -1293,9 +1293,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -1317,7 +1317,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -1330,7 +1330,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -1345,7 +1345,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
diff --git a/resources/skins/Main/1080i/script-plex-home.xml b/resources/skins/Main/1080i/script-plex-home.xml
index 9a68b7cf..d8ef675b 100644
--- a/resources/skins/Main/1080i/script-plex-home.xml
+++ b/resources/skins/Main/1080i/script-plex-home.xml
@@ -13,7 +13,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -26,7 +26,7 @@
- Conditional
+ Conditional
@@ -191,7 +191,7 @@
0
238
117
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
FF1F1F1F
@@ -210,7 +210,7 @@
13.5
90
90
- script.plex/home/type/home.png
+ plugin.video.plexkodiconnect/home/type/home.png
keep
@@ -249,7 +249,7 @@
-40
318
197
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
UnFocus
@@ -257,7 +257,7 @@
0
238
117
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
FF1F1F1F
@@ -266,7 +266,7 @@
0
238
117
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
FFE5A00D
@@ -276,7 +276,7 @@
0
238
117
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
FFCC7B19
@@ -297,7 +297,7 @@
0
90
90
- script.plex/home/type/home.png
+ plugin.video.plexkodiconnect/home/type/home.png
keep
@@ -307,7 +307,7 @@
-40
170
170
- script.plex/home/type/home-selected.png
+ plugin.video.plexkodiconnect/home/type/home-selected.png
keep
@@ -337,7 +337,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -376,7 +376,7 @@
0
532
299
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -384,7 +384,7 @@
99.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -392,7 +392,7 @@
85.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -419,7 +419,7 @@
0
532
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -437,7 +437,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -448,7 +448,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -456,7 +456,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -516,7 +516,7 @@
-40
622
389
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -528,7 +528,7 @@
0
532
299
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -536,7 +536,7 @@
99.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -544,7 +544,7 @@
85.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -571,7 +571,7 @@
0
532
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -589,7 +589,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -600,7 +600,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -608,7 +608,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -655,7 +655,7 @@
0
542
309
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -678,7 +678,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -717,7 +717,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -725,7 +725,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -733,7 +733,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -760,7 +760,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -801,7 +801,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -810,7 +810,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -818,7 +818,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -853,7 +853,7 @@
-40
334
451
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -865,7 +865,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -873,7 +873,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -881,7 +881,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -908,7 +908,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -949,7 +949,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -958,7 +958,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -966,7 +966,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -988,7 +988,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -1011,7 +1011,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -1050,7 +1050,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -1058,7 +1058,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -1066,7 +1066,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -1093,7 +1093,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -1134,7 +1134,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -1143,7 +1143,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -1151,7 +1151,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -1186,7 +1186,7 @@
-40
334
451
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -1198,7 +1198,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -1206,7 +1206,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -1214,7 +1214,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -1241,7 +1241,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -1282,7 +1282,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -1291,7 +1291,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -1299,7 +1299,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -1321,7 +1321,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -1344,7 +1344,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -1383,7 +1383,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -1391,7 +1391,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -1399,7 +1399,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -1426,7 +1426,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -1467,7 +1467,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -1476,7 +1476,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -1484,7 +1484,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -1519,7 +1519,7 @@
-40
334
451
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -1531,7 +1531,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -1539,7 +1539,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -1547,7 +1547,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -1574,7 +1574,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -1615,7 +1615,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -1624,7 +1624,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -1632,7 +1632,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -1654,7 +1654,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -1677,7 +1677,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -1716,7 +1716,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -1724,7 +1724,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -1732,7 +1732,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -1759,7 +1759,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -1800,7 +1800,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -1809,7 +1809,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -1817,7 +1817,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -1852,7 +1852,7 @@
-40
334
451
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -1864,7 +1864,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -1872,7 +1872,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -1880,7 +1880,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -1907,7 +1907,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -1948,7 +1948,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -1957,7 +1957,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -1965,7 +1965,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -1987,7 +1987,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -2010,7 +2010,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -2049,7 +2049,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -2057,7 +2057,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -2065,7 +2065,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -2092,7 +2092,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -2147,7 +2147,7 @@
-40
324
324
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -2159,7 +2159,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -2167,7 +2167,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -2175,7 +2175,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -2202,7 +2202,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -2244,7 +2244,7 @@
0
254
254
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -2266,7 +2266,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -2305,7 +2305,7 @@
0
532
299
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -2313,7 +2313,7 @@
99.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -2321,7 +2321,7 @@
85.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -2348,7 +2348,7 @@
0
532
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -2366,7 +2366,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -2377,7 +2377,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -2385,7 +2385,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -2445,7 +2445,7 @@
-40
622
389
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -2457,7 +2457,7 @@
0
532
299
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -2465,7 +2465,7 @@
99.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -2473,7 +2473,7 @@
85.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -2500,7 +2500,7 @@
0
532
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -2518,7 +2518,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -2529,7 +2529,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -2537,7 +2537,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -2584,7 +2584,7 @@
0
542
309
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -2607,7 +2607,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -2646,7 +2646,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -2654,7 +2654,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -2662,7 +2662,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -2689,7 +2689,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -2730,7 +2730,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -2739,7 +2739,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -2747,7 +2747,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -2782,7 +2782,7 @@
-40
334
451
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -2794,7 +2794,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -2802,7 +2802,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -2810,7 +2810,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -2837,7 +2837,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -2878,7 +2878,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -2887,7 +2887,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -2895,7 +2895,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -2917,7 +2917,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -2940,7 +2940,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -2979,7 +2979,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -2987,7 +2987,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -2995,7 +2995,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -3022,7 +3022,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -3063,7 +3063,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -3072,7 +3072,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -3080,7 +3080,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -3115,7 +3115,7 @@
-40
334
451
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -3127,7 +3127,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -3135,7 +3135,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -3143,7 +3143,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -3170,7 +3170,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -3211,7 +3211,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -3220,7 +3220,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -3228,7 +3228,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -3250,7 +3250,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -3273,7 +3273,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -3312,7 +3312,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -3320,7 +3320,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -3328,7 +3328,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -3355,7 +3355,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -3410,7 +3410,7 @@
-40
324
324
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -3422,7 +3422,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -3430,7 +3430,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -3438,7 +3438,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -3465,7 +3465,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -3507,7 +3507,7 @@
0
254
254
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -3530,7 +3530,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -3569,7 +3569,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -3577,7 +3577,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -3585,7 +3585,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -3612,7 +3612,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -3667,7 +3667,7 @@
-40
324
324
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -3679,7 +3679,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -3687,7 +3687,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -3695,7 +3695,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -3722,7 +3722,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -3764,7 +3764,7 @@
0
254
254
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -3787,7 +3787,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -3826,7 +3826,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -3834,7 +3834,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -3842,7 +3842,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -3869,7 +3869,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -3924,7 +3924,7 @@
-40
324
324
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -3936,7 +3936,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -3944,7 +3944,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -3952,7 +3952,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -3979,7 +3979,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -4021,7 +4021,7 @@
0
254
254
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -4044,7 +4044,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -4083,7 +4083,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -4091,7 +4091,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -4099,7 +4099,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -4126,7 +4126,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -4181,7 +4181,7 @@
-40
324
324
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -4193,7 +4193,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -4201,7 +4201,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -4209,7 +4209,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -4236,7 +4236,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -4278,7 +4278,7 @@
0
254
254
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -4301,7 +4301,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -4340,7 +4340,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -4348,7 +4348,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -4356,7 +4356,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -4383,7 +4383,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -4438,7 +4438,7 @@
-40
324
324
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -4450,7 +4450,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -4458,7 +4458,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -4466,7 +4466,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -4493,7 +4493,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -4535,7 +4535,7 @@
0
254
254
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -4558,7 +4558,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -4597,7 +4597,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -4605,7 +4605,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -4613,7 +4613,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -4640,7 +4640,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -4695,7 +4695,7 @@
-40
324
324
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -4707,7 +4707,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -4715,7 +4715,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -4723,7 +4723,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -4750,7 +4750,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -4792,7 +4792,7 @@
0
254
254
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -4815,7 +4815,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -4854,7 +4854,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -4862,7 +4862,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -4870,7 +4870,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -4897,7 +4897,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -4952,7 +4952,7 @@
-40
324
324
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -4964,7 +4964,7 @@
0
244
244
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -4972,7 +4972,7 @@
72
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -4980,7 +4980,7 @@
58
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -5007,7 +5007,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -5049,7 +5049,7 @@
0
254
254
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -5072,7 +5072,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -5111,7 +5111,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -5119,7 +5119,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -5127,7 +5127,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -5154,7 +5154,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -5195,7 +5195,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -5204,7 +5204,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -5212,7 +5212,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -5247,7 +5247,7 @@
-40
334
451
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -5259,7 +5259,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -5267,7 +5267,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -5275,7 +5275,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -5302,7 +5302,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -5343,7 +5343,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -5352,7 +5352,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -5360,7 +5360,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -5382,7 +5382,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -5405,7 +5405,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -5444,7 +5444,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -5452,7 +5452,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -5460,7 +5460,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -5487,7 +5487,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -5528,7 +5528,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -5537,7 +5537,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -5545,7 +5545,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -5580,7 +5580,7 @@
-40
334
451
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -5592,7 +5592,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -5600,7 +5600,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -5608,7 +5608,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -5635,7 +5635,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -5676,7 +5676,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -5685,7 +5685,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -5693,7 +5693,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -5715,7 +5715,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -5738,7 +5738,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -5777,7 +5777,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -5785,7 +5785,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -5793,7 +5793,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -5820,7 +5820,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -5861,7 +5861,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -5870,7 +5870,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -5878,7 +5878,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -5913,7 +5913,7 @@
-40
334
451
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -5925,7 +5925,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -5933,7 +5933,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -5941,7 +5941,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -5968,7 +5968,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -6009,7 +6009,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -6018,7 +6018,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -6026,7 +6026,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -6048,7 +6048,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -6071,7 +6071,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -6110,7 +6110,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -6118,7 +6118,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -6126,7 +6126,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -6153,7 +6153,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -6194,7 +6194,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -6203,7 +6203,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -6211,7 +6211,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -6246,7 +6246,7 @@
-40
334
451
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -6258,7 +6258,7 @@
0
244
361
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -6266,7 +6266,7 @@
130.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -6274,7 +6274,7 @@
116.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -6301,7 +6301,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -6342,7 +6342,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -6351,7 +6351,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -6359,7 +6359,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -6381,7 +6381,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -6403,7 +6403,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -6442,7 +6442,7 @@
0
532
299
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -6450,7 +6450,7 @@
99.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -6458,7 +6458,7 @@
85.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -6485,7 +6485,7 @@
0
532
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -6503,7 +6503,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -6514,7 +6514,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -6522,7 +6522,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -6582,7 +6582,7 @@
-40
622
389
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -6594,7 +6594,7 @@
0
532
299
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -6602,7 +6602,7 @@
99.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -6610,7 +6610,7 @@
85.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -6637,7 +6637,7 @@
0
532
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -6655,7 +6655,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -6666,7 +6666,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -6674,7 +6674,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -6721,7 +6721,7 @@
0
542
309
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -6743,7 +6743,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -6782,7 +6782,7 @@
0
532
299
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -6790,7 +6790,7 @@
99.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -6798,7 +6798,7 @@
85.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -6825,7 +6825,7 @@
0
532
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -6843,7 +6843,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -6854,7 +6854,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -6862,7 +6862,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -6922,7 +6922,7 @@
-40
622
389
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -6934,7 +6934,7 @@
0
532
299
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -6942,7 +6942,7 @@
99.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -6950,7 +6950,7 @@
85.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -6977,7 +6977,7 @@
0
532
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -6995,7 +6995,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -7006,7 +7006,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -7014,7 +7014,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -7061,7 +7061,7 @@
0
542
309
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -7083,7 +7083,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -7122,7 +7122,7 @@
0
532
299
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -7130,7 +7130,7 @@
99.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -7138,7 +7138,7 @@
85.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -7165,7 +7165,7 @@
0
532
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -7183,7 +7183,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -7194,7 +7194,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -7202,7 +7202,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -7262,7 +7262,7 @@
-40
622
389
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -7274,7 +7274,7 @@
0
532
299
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -7282,7 +7282,7 @@
99.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -7290,7 +7290,7 @@
85.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -7317,7 +7317,7 @@
0
532
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -7335,7 +7335,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -7346,7 +7346,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -7354,7 +7354,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -7401,7 +7401,7 @@
0
542
309
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -7423,7 +7423,7 @@
12
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -7462,7 +7462,7 @@
0
532
299
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -7470,7 +7470,7 @@
99.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -7478,7 +7478,7 @@
85.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -7505,7 +7505,7 @@
0
532
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -7523,7 +7523,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -7534,7 +7534,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -7542,7 +7542,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -7602,7 +7602,7 @@
-40
622
389
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -7614,7 +7614,7 @@
0
532
299
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
String.IsEmpty(ListItem.Property(is.updating))
@@ -7622,7 +7622,7 @@
99.5
61
100
- script.plex/indicators/chevron-white.png
+ plugin.video.plexkodiconnect/indicators/chevron-white.png
!String.IsEmpty(ListItem.Property(is.updating))
@@ -7630,7 +7630,7 @@
85.5
128
128
- script.plex/home/busy.gif
+ plugin.video.plexkodiconnect/home/busy.gif
@@ -7657,7 +7657,7 @@
0
532
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -7675,7 +7675,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -7686,7 +7686,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -7694,7 +7694,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -7741,7 +7741,7 @@
0
542
309
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -7769,7 +7769,7 @@
- Conditional
+ Conditional
201
0
0
@@ -7777,12 +7777,12 @@
135
VisibleChange
- ControlGroup(200).HasFocus(0) + !String.IsEmpty(Window(10000).Property(script.plex.off.sections))
+ ControlGroup(200).HasFocus(0) + !String.IsEmpty(Window(10000).Property(plugin.video.plexkodiconnect.off.sections))
0
0
1920
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -7797,8 +7797,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -7810,7 +7810,7 @@
left
center
FFFFFFFF
-
+
@@ -7830,7 +7830,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -7901,9 +7901,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -7925,7 +7925,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
576
@@ -7953,7 +7953,7 @@
FFFFFFFF
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -7984,7 +7984,7 @@
27
15
13
- script.plex/indicators/dropdown-triangle.png
+ plugin.video.plexkodiconnect/indicators/dropdown-triangle.png
99FFFFFF
@@ -7993,7 +7993,7 @@
27
15
13
- script.plex/indicators/dropdown-triangle.png
+ plugin.video.plexkodiconnect/indicators/dropdown-triangle.png
FF222222
@@ -8005,14 +8005,14 @@
-40
580
146
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
432
-13
15
13
- script.plex/indicators/dropdown-triangle.png
+ plugin.video.plexkodiconnect/indicators/dropdown-triangle.png
FF1F1F1F
@@ -8037,7 +8037,7 @@
0
500
100
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
String.IsEmpty(ListItem.Property(first)) + String.IsEmpty(ListItem.Property(last)) + String.IsEmpty(ListItem.Property(only))
@@ -8045,7 +8045,7 @@
0
500
100
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
!String.IsEmpty(ListItem.Property(last))
@@ -8053,7 +8053,7 @@
0
500
100
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
!String.IsEmpty(ListItem.Property(only))
@@ -8061,7 +8061,7 @@
0
500
100
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
!String.IsEmpty(ListItem.Label2)
@@ -8107,7 +8107,7 @@
38
24
24
- script.plex/home/device/$INFO[ListItem.Property(status)]
+ plugin.video.plexkodiconnect/home/device/$INFO[ListItem.Property(status)]
!String.IsEmpty(ListItem.Property(status)) + !String.IsEmpty(ListItem.Property(current))
@@ -8115,7 +8115,7 @@
38
24
24
- script.plex/home/device/$INFO[ListItem.Property(status)]
+ plugin.video.plexkodiconnect/home/device/$INFO[ListItem.Property(status)]
!String.IsEmpty(ListItem.Property(current))
@@ -8123,7 +8123,7 @@
38
31
24
- script.plex/home/device/check.png
+ plugin.video.plexkodiconnect/home/device/check.png
@@ -8134,7 +8134,7 @@
0
500
100
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
String.IsEmpty(ListItem.Property(first)) + String.IsEmpty(ListItem.Property(last)) + String.IsEmpty(ListItem.Property(only))
@@ -8142,7 +8142,7 @@
0
500
100
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
!String.IsEmpty(ListItem.Property(last))
@@ -8150,7 +8150,7 @@
0
500
100
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
!String.IsEmpty(ListItem.Property(only))
@@ -8158,7 +8158,7 @@
0
500
100
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
!String.IsEmpty(ListItem.Label2)
@@ -8204,7 +8204,7 @@
38
24
24
- script.plex/home/device/focus-$INFO[ListItem.Property(status)]
+ plugin.video.plexkodiconnect/home/device/focus-$INFO[ListItem.Property(status)]
!String.IsEmpty(ListItem.Property(status)) + !String.IsEmpty(ListItem.Property(current))
@@ -8212,7 +8212,7 @@
38
24
24
- script.plex/home/device/focus-$INFO[ListItem.Property(status)]
+ plugin.video.plexkodiconnect/home/device/focus-$INFO[ListItem.Property(status)]
!String.IsEmpty(ListItem.Property(current))
@@ -8220,7 +8220,7 @@
38
31
24
- script.plex/home/device/check.png
+ plugin.video.plexkodiconnect/home/device/check.png
@@ -8232,8 +8232,8 @@
8
860
-
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
-
-
false
@@ -8252,7 +8252,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -8268,7 +8268,7 @@
14
40
39
- $INFO[Window.Property(user.avatar)]
+ $INFO[Window.Property(user.avatar)]
String.IsEmpty(Window.Property(user.avatar))
@@ -8288,7 +8288,7 @@
27
15
13
- script.plex/indicators/dropdown-triangle.png
+ plugin.video.plexkodiconnect/indicators/dropdown-triangle.png
99FFFFFF
@@ -8297,7 +8297,7 @@
27
15
13
- script.plex/indicators/dropdown-triangle.png
+ plugin.video.plexkodiconnect/indicators/dropdown-triangle.png
FF222222
@@ -8309,14 +8309,14 @@
-40
380
146
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
226
-13
15
13
- script.plex/indicators/dropdown-triangle.png
+ plugin.video.plexkodiconnect/indicators/dropdown-triangle.png
FF1F1F1F
@@ -8339,7 +8339,7 @@
0
300
66
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
String.IsEmpty(ListItem.Property(first)) + String.IsEmpty(ListItem.Property(last)) + String.IsEmpty(ListItem.Property(only))
@@ -8347,7 +8347,7 @@
0
300
66
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
!String.IsEmpty(ListItem.Property(last))
@@ -8355,7 +8355,7 @@
0
300
66
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
!String.IsEmpty(ListItem.Property(only))
@@ -8363,7 +8363,7 @@
0
300
66
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -8384,7 +8384,7 @@
0
300
66
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
String.IsEmpty(ListItem.Property(first)) + String.IsEmpty(ListItem.Property(last)) + String.IsEmpty(ListItem.Property(only))
@@ -8392,7 +8392,7 @@
0
300
66
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
!String.IsEmpty(ListItem.Property(last))
@@ -8400,7 +8400,7 @@
0
300
66
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
!String.IsEmpty(ListItem.Property(only))
@@ -8408,7 +8408,7 @@
0
300
66
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -8444,7 +8444,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -8459,7 +8459,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -8476,7 +8476,7 @@
font30
center
FFFFFFFF
-
+
false
@@ -8487,7 +8487,7 @@
font30
center
FFCCCCCC
-
+
@@ -8501,7 +8501,7 @@
0
240
150
- script.plex/busy-back.png
+ plugin.video.plexkodiconnect/busy-back.png
A0FFFFFF
@@ -8509,7 +8509,7 @@
56
90
38
- script.plex/busy.gif
+ plugin.video.plexkodiconnect/busy.gif
diff --git a/resources/skins/Main/1080i/script-plex-info.xml b/resources/skins/Main/1080i/script-plex-info.xml
index e36cc22e..5228e698 100644
--- a/resources/skins/Main/1080i/script-plex-info.xml
+++ b/resources/skins/Main/1080i/script-plex-info.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -130,9 +130,9 @@
6
718
true
- script.plex/white-square.png
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
-
-
false
@@ -167,7 +167,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -238,9 +238,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -262,7 +262,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
diff --git a/resources/skins/Main/1080i/script-plex-listview-16x9-chunked.xml b/resources/skins/Main/1080i/script-plex-listview-16x9-chunked.xml
index 032b1d47..03c0f85d 100644
--- a/resources/skins/Main/1080i/script-plex-listview-16x9-chunked.xml
+++ b/resources/skins/Main/1080i/script-plex-listview-16x9-chunked.xml
@@ -14,7 +14,7 @@
1920
1080
1000
- $INFO[Window.Property(background)]
+ $INFO[Window.Property(background)]
@@ -34,7 +34,7 @@
0
1170
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
20000000
@@ -63,7 +63,7 @@
-3
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -74,7 +74,7 @@
0
54
42
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -110,7 +110,7 @@
72
915
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -130,7 +130,7 @@
-2
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -141,7 +141,7 @@
0
54
42
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -177,7 +177,7 @@
72
915
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -191,14 +191,14 @@
-40
1085
156
- script.plex/square-rounded-shadow.png
+ plugin.video.plexkodiconnect/square-rounded-shadow.png
0
0
1005
76
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
FFE5A00D
@@ -209,7 +209,7 @@
0
48
48
- script.plex/indicators/unwatched-rounded.png
+ plugin.video.plexkodiconnect/indicators/unwatched-rounded.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -221,7 +221,7 @@
0
57
46
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -257,7 +257,7 @@
- !StringCompare(Window(10000).Property(script.plex.item.type),episode)
+ !StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.item.type),episode)
1128
33
@@ -266,9 +266,9 @@
101
951
true
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
-
false
@@ -277,7 +277,7 @@
151
- StringCompare(Window(10000).Property(script.plex.item.type),episode)
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.item.type),episode)
1128
33
10
@@ -287,7 +287,7 @@
0
10
879
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -298,7 +298,7 @@
0
10
10
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
Control.HasFocus(951) | !String.IsEmpty(Window.Property(dragging))
@@ -306,7 +306,7 @@
0
10
10
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
@@ -329,7 +329,7 @@
1920
1080
1000
- $INFO[Window.Property(background)]
+ $INFO[Window.Property(background)]
@@ -355,8 +355,8 @@
126
100
font12
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
@@ -368,8 +368,8 @@
126
100
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -382,8 +382,8 @@
126
100
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -395,8 +395,8 @@
126
100
font12
- script.plex/buttons/chapters-focus.png
- script.plex/buttons/chapters.png
+ plugin.video.plexkodiconnect/buttons/chapters-focus.png
+ plugin.video.plexkodiconnect/buttons/chapters.png
@@ -412,7 +412,7 @@
630
355
500
- $INFO[Container(101).ListItem.Property(art)]
+ $INFO[Container(101).ListItem.Property(art)]
scale
@@ -422,7 +422,7 @@
630
355
500
- $INFO[Container(101).ListItem.Property(art)]
+ $INFO[Container(101).ListItem.Property(art)]
scale
@@ -452,7 +452,7 @@
435
630
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -468,7 +468,7 @@
- StringCompare(Window(10000).Property(script.plex.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))
151
1830
150
@@ -492,7 +492,7 @@
0
0
- !StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))
+ !StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))
0
0
34
@@ -504,14 +504,14 @@
- StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))
0
0
34
34
99FFFFFF
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -538,7 +538,7 @@
0
0
- !StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))
+ !StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))
0
0
34
@@ -550,14 +550,14 @@
- StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))
0
0
34
34
99FFFFFF
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -584,7 +584,7 @@
34
34
FFE5A00D
- script.plex/white-outline-rounded.png
+ plugin.video.plexkodiconnect/white-outline-rounded.png
@@ -619,8 +619,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -646,8 +646,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -670,7 +670,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -741,9 +741,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -786,7 +786,7 @@
FF000000
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -819,7 +819,7 @@
FFFFFFFF
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -833,7 +833,7 @@
FF000000
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -856,7 +856,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -869,7 +869,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -884,7 +884,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
diff --git a/resources/skins/Main/1080i/script-plex-listview-16x9.xml b/resources/skins/Main/1080i/script-plex-listview-16x9.xml
index 97bd5646..a7c4d757 100644
--- a/resources/skins/Main/1080i/script-plex-listview-16x9.xml
+++ b/resources/skins/Main/1080i/script-plex-listview-16x9.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -36,7 +36,7 @@
630
355
500
- $INFO[Container(101).ListItem.Property(art)]
+ $INFO[Container(101).ListItem.Property(art)]
scale
@@ -46,7 +46,7 @@
630
355
500
- $INFO[Container(101).ListItem.Property(art)]
+ $INFO[Container(101).ListItem.Property(art)]
scale
@@ -76,7 +76,7 @@
435
630
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -119,8 +119,8 @@
126
100
font12
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
@@ -132,8 +132,8 @@
126
100
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -146,8 +146,8 @@
126
100
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -159,8 +159,8 @@
126
100
font12
- script.plex/buttons/chapters-focus.png
- script.plex/buttons/chapters.png
+ plugin.video.plexkodiconnect/buttons/chapters-focus.png
+ plugin.video.plexkodiconnect/buttons/chapters.png
@@ -177,7 +177,7 @@
0
1170
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
20000000
@@ -205,7 +205,7 @@
-3
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -216,7 +216,7 @@
0
54
42
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -252,7 +252,7 @@
72
915
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -272,7 +272,7 @@
-2
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -283,7 +283,7 @@
0
54
42
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -319,7 +319,7 @@
72
915
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -333,14 +333,14 @@
-40
1085
156
- script.plex/square-rounded-shadow.png
+ plugin.video.plexkodiconnect/square-rounded-shadow.png
0
0
1005
76
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
FFE5A00D
@@ -351,7 +351,7 @@
0
48
48
- script.plex/indicators/unwatched-rounded.png
+ plugin.video.plexkodiconnect/indicators/unwatched-rounded.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -363,7 +363,7 @@
0
57
46
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -406,9 +406,9 @@
879
101
true
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
-
false
@@ -420,7 +420,7 @@
- StringCompare(Window(10000).Property(script.plex.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))
151
1830
150
@@ -444,7 +444,7 @@
0
0
- !StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))
+ !StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))
0
0
34
@@ -456,14 +456,14 @@
- StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))
0
0
34
34
99FFFFFF
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -490,7 +490,7 @@
0
0
- !StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))
+ !StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))
0
0
34
@@ -502,14 +502,14 @@
- StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))
0
0
34
34
99FFFFFF
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -536,7 +536,7 @@
34
34
FFE5A00D
- script.plex/white-outline-rounded.png
+ plugin.video.plexkodiconnect/white-outline-rounded.png
@@ -571,8 +571,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -598,8 +598,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -622,7 +622,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -693,9 +693,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -738,7 +738,7 @@
FF000000
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -771,7 +771,7 @@
FFFFFFFF
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -785,7 +785,7 @@
FF000000
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -808,7 +808,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -821,7 +821,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -836,7 +836,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
diff --git a/resources/skins/Main/1080i/script-plex-listview-square-chunked.xml b/resources/skins/Main/1080i/script-plex-listview-square-chunked.xml
index 9c7b2ffb..58666b52 100644
--- a/resources/skins/Main/1080i/script-plex-listview-square-chunked.xml
+++ b/resources/skins/Main/1080i/script-plex-listview-square-chunked.xml
@@ -14,7 +14,7 @@
1920
1080
1000
- $INFO[Window.Property(background)]
+ $INFO[Window.Property(background)]
@@ -34,7 +34,7 @@
0
1170
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
20000000
@@ -63,7 +63,7 @@
-3
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -74,7 +74,7 @@
0
54
42
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -123,7 +123,7 @@
72
915
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -143,7 +143,7 @@
-2
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -154,7 +154,7 @@
0
54
42
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -207,7 +207,7 @@
72
915
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -221,14 +221,14 @@
-40
1085
156
- script.plex/square-rounded-shadow.png
+ plugin.video.plexkodiconnect/square-rounded-shadow.png
0
0
1005
76
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
FFE5A00D
@@ -239,7 +239,7 @@
0
48
48
- script.plex/indicators/unwatched-rounded.png
+ plugin.video.plexkodiconnect/indicators/unwatched-rounded.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -251,7 +251,7 @@
0
57
46
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -300,7 +300,7 @@
- !StringCompare(Window(10000).Property(script.plex.item.type),album)
+ !StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.item.type),album)
1128
33
@@ -309,9 +309,9 @@
101
951
true
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
-
false
@@ -320,7 +320,7 @@
151
- StringCompare(Window(10000).Property(script.plex.item.type),album)
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.item.type),album)
1128
33
10
@@ -330,7 +330,7 @@
0
10
879
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -341,7 +341,7 @@
0
10
10
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
Control.HasFocus(951) | !String.IsEmpty(Window.Property(dragging))
@@ -349,7 +349,7 @@
0
10
10
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
@@ -372,7 +372,7 @@
1920
1080
1000
- $INFO[Window.Property(background)]
+ $INFO[Window.Property(background)]
@@ -397,8 +397,8 @@
126
100
font12
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
@@ -410,8 +410,8 @@
126
100
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -424,8 +424,8 @@
126
100
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -438,8 +438,8 @@
126
100
font12
- script.plex/buttons/chapters-focus.png
- script.plex/buttons/chapters.png
+ plugin.video.plexkodiconnect/buttons/chapters-focus.png
+ plugin.video.plexkodiconnect/buttons/chapters.png
@@ -455,7 +455,7 @@
0
630
355
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
@@ -463,7 +463,7 @@
630
355
500
- $INFO[Container(101).ListItem.Thumb]
+ $INFO[Container(101).ListItem.Thumb]
keep
@@ -474,7 +474,7 @@
355
355
500
- $INFO[Container(101).ListItem.Thumb]
+ $INFO[Container(101).ListItem.Thumb]
scale
@@ -521,7 +521,7 @@
435
630
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -537,7 +537,7 @@
- StringCompare(Window(10000).Property(script.plex.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))
151
1830
150
@@ -561,7 +561,7 @@
0
0
- !StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))
+ !StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))
0
0
34
@@ -573,14 +573,14 @@
- StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))
0
0
34
34
99FFFFFF
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -607,7 +607,7 @@
0
0
- !StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))
+ !StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))
0
0
34
@@ -619,14 +619,14 @@
- StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))
0
0
34
34
99FFFFFF
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -653,7 +653,7 @@
34
34
FFE5A00D
- script.plex/white-outline-rounded.png
+ plugin.video.plexkodiconnect/white-outline-rounded.png
@@ -688,8 +688,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -715,8 +715,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -739,7 +739,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -810,9 +810,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -855,7 +855,7 @@
FF000000
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -888,7 +888,7 @@
FFFFFFFF
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -902,7 +902,7 @@
FF000000
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -925,7 +925,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -938,7 +938,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -953,7 +953,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
diff --git a/resources/skins/Main/1080i/script-plex-listview-square.xml b/resources/skins/Main/1080i/script-plex-listview-square.xml
index 2543bbfb..afe6aacf 100644
--- a/resources/skins/Main/1080i/script-plex-listview-square.xml
+++ b/resources/skins/Main/1080i/script-plex-listview-square.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -36,7 +36,7 @@
0
630
355
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
@@ -44,7 +44,7 @@
630
355
500
- $INFO[Container(101).ListItem.Thumb]
+ $INFO[Container(101).ListItem.Thumb]
keep
@@ -55,7 +55,7 @@
355
355
500
- $INFO[Container(101).ListItem.Thumb]
+ $INFO[Container(101).ListItem.Thumb]
scale
@@ -102,7 +102,7 @@
435
630
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -144,8 +144,8 @@
126
100
font12
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
@@ -157,8 +157,8 @@
126
100
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -171,8 +171,8 @@
126
100
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -185,8 +185,8 @@
126
100
font12
- script.plex/buttons/chapters-focus.png
- script.plex/buttons/chapters.png
+ plugin.video.plexkodiconnect/buttons/chapters-focus.png
+ plugin.video.plexkodiconnect/buttons/chapters.png
@@ -203,7 +203,7 @@
0
1170
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
20000000
@@ -231,7 +231,7 @@
-3
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -242,7 +242,7 @@
0
54
42
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -291,7 +291,7 @@
72
915
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -311,7 +311,7 @@
-2
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -322,7 +322,7 @@
0
54
42
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -375,7 +375,7 @@
72
915
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -389,14 +389,14 @@
-40
1085
156
- script.plex/square-rounded-shadow.png
+ plugin.video.plexkodiconnect/square-rounded-shadow.png
0
0
1005
76
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
FFE5A00D
@@ -407,7 +407,7 @@
0
48
48
- script.plex/indicators/unwatched-rounded.png
+ plugin.video.plexkodiconnect/indicators/unwatched-rounded.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -419,7 +419,7 @@
0
57
46
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -475,9 +475,9 @@
879
101
true
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
-
false
@@ -489,7 +489,7 @@
- StringCompare(Window(10000).Property(script.plex.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))
151
1830
150
@@ -513,7 +513,7 @@
0
0
- !StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))
+ !StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))
0
0
34
@@ -525,14 +525,14 @@
- StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))
0
0
34
34
99FFFFFF
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -559,7 +559,7 @@
0
0
- !StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))
+ !StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))
0
0
34
@@ -571,14 +571,14 @@
- StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))
0
0
34
34
99FFFFFF
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -605,7 +605,7 @@
34
34
FFE5A00D
- script.plex/white-outline-rounded.png
+ plugin.video.plexkodiconnect/white-outline-rounded.png
@@ -640,8 +640,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -667,8 +667,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -691,7 +691,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -762,9 +762,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -807,7 +807,7 @@
FF000000
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -840,7 +840,7 @@
FFFFFFFF
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -854,7 +854,7 @@
FF000000
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -877,7 +877,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -890,7 +890,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -905,7 +905,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
diff --git a/resources/skins/Main/1080i/script-plex-music_current_playlist.xml b/resources/skins/Main/1080i/script-plex-music_current_playlist.xml
index 2e2b16b7..967c2e2c 100644
--- a/resources/skins/Main/1080i/script-plex-music_current_playlist.xml
+++ b/resources/skins/Main/1080i/script-plex-music_current_playlist.xml
@@ -13,7 +13,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
false
@@ -31,7 +31,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
D0404040
@@ -58,7 +58,7 @@
75
669
669
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
20FFFFFF
@@ -127,7 +127,7 @@
0
1101
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
20000000
@@ -148,7 +148,7 @@
120
24
- !StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ !StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
0
0
50
@@ -160,12 +160,12 @@
- StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
0
32.5
35
35
- script.plex/indicators/playing-circle.png
+ plugin.video.plexkodiconnect/indicators/playing-circle.png
FFE5A00D
@@ -219,7 +219,7 @@
97
861
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -233,7 +233,7 @@
120
24
- !StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ !StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
0
0
50
@@ -245,12 +245,12 @@
- StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
0
32.5
35
35
- script.plex/indicators/playing-circle.png
+ plugin.video.plexkodiconnect/indicators/playing-circle.png
FFE5A00D
@@ -304,7 +304,7 @@
97
861
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -318,18 +318,18 @@
-40
1055
180
- script.plex/square-rounded-shadow.png
+ plugin.video.plexkodiconnect/square-rounded-shadow.png
0
0
975
100
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
FFE5A00D
- !StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ !StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
48
0
50
@@ -341,12 +341,12 @@
- StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
48
32.5
35
35
- script.plex/indicators/playing-circle.png
+ plugin.video.plexkodiconnect/indicators/playing-circle.png
FF000000
@@ -408,9 +408,9 @@
1014
101
true
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
-
false
@@ -463,7 +463,7 @@
0
125
101
- script.plex/buttons/repeat.png
+ plugin.video.plexkodiconnect/buttons/repeat.png
Playlist.IsRepeat | !String.IsEmpty(Window.Property(pq.repeat))
@@ -471,7 +471,7 @@
0
125
101
- script.plex/buttons/repeat.png
+ plugin.video.plexkodiconnect/buttons/repeat.png
Playlist.IsRepeatOne
@@ -479,7 +479,7 @@
0
125
101
- script.plex/buttons/repeat-one.png
+ plugin.video.plexkodiconnect/buttons/repeat-one.png
@@ -490,7 +490,7 @@
0
125
101
- script.plex/buttons/repeat-focus.png
+ plugin.video.plexkodiconnect/buttons/repeat-focus.png
Playlist.IsRepeat | !String.IsEmpty(Window.Property(pq.repeat))
@@ -498,7 +498,7 @@
0
125
101
- script.plex/buttons/repeat-focus.png
+ plugin.video.plexkodiconnect/buttons/repeat-focus.png
Playlist.IsRepeatOne
@@ -506,7 +506,7 @@
0
125
101
- script.plex/buttons/repeat-one-focus.png
+ plugin.video.plexkodiconnect/buttons/repeat-one-focus.png
@@ -519,11 +519,11 @@
125
101
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
Playlist.IsRandom
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
PlayerControl(RandomOn)
PlayerControl(RandomOff)
@@ -557,7 +557,7 @@
0
125
101
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
Control.HasFocus(422)
@@ -565,7 +565,7 @@
0
125
101
- script.plex/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
@@ -576,7 +576,7 @@
0
125
101
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
Control.HasFocus(422)
@@ -584,7 +584,7 @@
0
125
101
- script.plex/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
@@ -597,8 +597,8 @@
125
101
font12
- script.plex/buttons/next-focus.png
- script.plex/buttons/next.png
+ plugin.video.plexkodiconnect/buttons/next-focus.png
+ plugin.video.plexkodiconnect/buttons/next.png
@@ -608,11 +608,11 @@
125
101
font12
- script.plex/buttons/pause-focus.png
- script.plex/buttons/pause.png
+ plugin.video.plexkodiconnect/buttons/pause-focus.png
+ plugin.video.plexkodiconnect/buttons/pause.png
Player.Paused | Player.Forwarding | Player.Rewinding
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
PlayerControl(Play)
@@ -624,8 +624,8 @@
125
101
font12
- script.plex/buttons/stop-focus.png
- script.plex/buttons/stop.png
+ plugin.video.plexkodiconnect/buttons/stop-focus.png
+ plugin.video.plexkodiconnect/buttons/stop.png
PlayerControl(Stop)
@@ -637,8 +637,8 @@
125
101
font12
- script.plex/buttons/next-focus.png
- script.plex/buttons/next.png
+ plugin.video.plexkodiconnect/buttons/next-focus.png
+ plugin.video.plexkodiconnect/buttons/next.png
@@ -649,8 +649,8 @@
125
101
font12
- script.plex/buttons/pqueue-focus.png
- script.plex/buttons/pqueue.png
+ plugin.video.plexkodiconnect/buttons/pqueue-focus.png
+ plugin.video.plexkodiconnect/buttons/pqueue.png
Close
@@ -661,8 +661,8 @@
125
101
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -679,8 +679,8 @@
10
100
400
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -690,7 +690,7 @@
1
1
8
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFE5A00D
@@ -700,9 +700,9 @@
2
819
6
- script.plex/transparent-6px.png
+ plugin.video.plexkodiconnect/transparent-6px.png
-
- script.plex/white-square-6px.png
+ plugin.video.plexkodiconnect/white-square-6px.png
-
-
Player.Progress
@@ -714,9 +714,9 @@
2
819
6
- script.plex/transparent-6px.png
+ plugin.video.plexkodiconnect/transparent-6px.png
-
- script.plex/white-square-6px.png
+ plugin.video.plexkodiconnect/white-square-6px.png
-
-
Player.Progress
@@ -730,7 +730,7 @@
6
true
-
- script.plex/white-square-6px.png
+ plugin.video.plexkodiconnect/white-square-6px.png
-
seek
-->
@@ -742,7 +742,7 @@
942
1
6
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
-->
@@ -759,7 +759,7 @@
0
101
39
- script.plex/indicators/player-selection-time_box.png
+ plugin.video.plexkodiconnect/indicators/player-selection-time_box.png
D0000000
@@ -780,7 +780,7 @@
39
15
7
- script.plex/indicators/player-selection-time_arrow.png
+ plugin.video.plexkodiconnect/indicators/player-selection-time_arrow.png
D0000000
diff --git a/resources/skins/Main/1080i/script-plex-music_player.xml b/resources/skins/Main/1080i/script-plex-music_player.xml
index c2a115d7..c3c20bf9 100644
--- a/resources/skins/Main/1080i/script-plex-music_player.xml
+++ b/resources/skins/Main/1080i/script-plex-music_player.xml
@@ -13,7 +13,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
false
@@ -31,7 +31,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
D0404040
@@ -50,7 +50,7 @@
75
786
786
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
20FFFFFF
@@ -142,7 +142,7 @@
0
1920
140
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -154,7 +154,7 @@
0
1920
140
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -238,7 +238,7 @@
0
125
101
- script.plex/buttons/repeat.png
+ plugin.video.plexkodiconnect/buttons/repeat.png
Playlist.IsRepeat | !String.IsEmpty(Window.Property(pq.repeat))
@@ -246,7 +246,7 @@
0
125
101
- script.plex/buttons/repeat.png
+ plugin.video.plexkodiconnect/buttons/repeat.png
Playlist.IsRepeatOne
@@ -254,7 +254,7 @@
0
125
101
- script.plex/buttons/repeat-one.png
+ plugin.video.plexkodiconnect/buttons/repeat-one.png
@@ -265,7 +265,7 @@
0
125
101
- script.plex/buttons/repeat-focus.png
+ plugin.video.plexkodiconnect/buttons/repeat-focus.png
Playlist.IsRepeat | !String.IsEmpty(Window.Property(pq.repeat))
@@ -273,7 +273,7 @@
0
125
101
- script.plex/buttons/repeat-focus.png
+ plugin.video.plexkodiconnect/buttons/repeat-focus.png
Playlist.IsRepeatOne
@@ -281,7 +281,7 @@
0
125
101
- script.plex/buttons/repeat-one-focus.png
+ plugin.video.plexkodiconnect/buttons/repeat-one-focus.png
@@ -296,11 +296,11 @@
125
101
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
Playlist.IsRandom
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
PlayerControl(RandomOn)
PlayerControl(RandomOff)
@@ -334,7 +334,7 @@
0
125
101
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
Control.HasFocus(422)
@@ -342,7 +342,7 @@
0
125
101
- script.plex/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
@@ -353,7 +353,7 @@
0
125
101
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
Control.HasFocus(422)
@@ -361,7 +361,7 @@
0
125
101
- script.plex/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
@@ -376,8 +376,8 @@
125
101
font12
- script.plex/buttons/next-focus.png
- script.plex/buttons/next.png
+ plugin.video.plexkodiconnect/buttons/next-focus.png
+ plugin.video.plexkodiconnect/buttons/next.png
@@ -389,11 +389,11 @@
125
101
font12
- script.plex/buttons/pause-focus.png
- script.plex/buttons/pause.png
+ plugin.video.plexkodiconnect/buttons/pause-focus.png
+ plugin.video.plexkodiconnect/buttons/pause.png
Player.Paused | Player.Forwarding | Player.Rewinding
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
PlayerControl(Play)
@@ -407,8 +407,8 @@
125
101
font12
- script.plex/buttons/stop-focus.png
- script.plex/buttons/stop.png
+ plugin.video.plexkodiconnect/buttons/stop-focus.png
+ plugin.video.plexkodiconnect/buttons/stop.png
PlayerControl(Stop)
@@ -422,8 +422,8 @@
125
101
font12
- script.plex/buttons/next-focus.png
- script.plex/buttons/next.png
+ plugin.video.plexkodiconnect/buttons/next-focus.png
+ plugin.video.plexkodiconnect/buttons/next.png
@@ -437,8 +437,8 @@
125
101
font12
- script.plex/buttons/pqueue-focus.png
- script.plex/buttons/pqueue.png
+ plugin.video.plexkodiconnect/buttons/pqueue-focus.png
+ plugin.video.plexkodiconnect/buttons/pqueue.png
@@ -450,8 +450,8 @@
125
101
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -467,8 +467,8 @@
1920
10
400
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -478,7 +478,7 @@
1
1
8
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFE5A00D
@@ -488,9 +488,9 @@
2
1920
6
- script.plex/transparent-6px.png
+ plugin.video.plexkodiconnect/transparent-6px.png
-
- script.plex/white-square-6px.png
+ plugin.video.plexkodiconnect/white-square-6px.png
-
-
Player.Progress
@@ -502,9 +502,9 @@
2
1920
6
- script.plex/transparent-6px.png
+ plugin.video.plexkodiconnect/transparent-6px.png
-
- script.plex/white-square-6px.png
+ plugin.video.plexkodiconnect/white-square-6px.png
-
-
Player.Progress
@@ -518,7 +518,7 @@
6
true
-
- script.plex/white-square-6px.png
+ plugin.video.plexkodiconnect/white-square-6px.png
-
seek
-->
@@ -530,7 +530,7 @@
942
1
6
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
-->
@@ -547,7 +547,7 @@
0
101
39
- script.plex/indicators/player-selection-time_box.png
+ plugin.video.plexkodiconnect/indicators/player-selection-time_box.png
D0000000
@@ -568,7 +568,7 @@
39
15
7
- script.plex/indicators/player-selection-time_arrow.png
+ plugin.video.plexkodiconnect/indicators/player-selection-time_arrow.png
D0000000
diff --git a/resources/skins/Main/1080i/script-plex-options_dialog.xml b/resources/skins/Main/1080i/script-plex-options_dialog.xml
index ce442546..08248549 100644
--- a/resources/skins/Main/1080i/script-plex-options_dialog.xml
+++ b/resources/skins/Main/1080i/script-plex-options_dialog.xml
@@ -11,7 +11,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
!String.IsEmpty(Window.Property(initialized))
@@ -22,21 +22,21 @@
-40
830
440
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
0
0
750
360
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
0
750
80
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
@@ -44,7 +44,7 @@
31
19
19
- script.plex/indicators/circle-19.png
+ plugin.video.plexkodiconnect/indicators/circle-19.png
@@ -90,8 +90,8 @@
auto
143
font10
- script.plex/buttons/blank-focus.png
- script.plex/buttons/blank.png
+ plugin.video.plexkodiconnect/buttons/blank-focus.png
+ plugin.video.plexkodiconnect/buttons/blank.png
70
FF000000
FF000000
@@ -106,8 +106,8 @@
auto
143
font10
- script.plex/buttons/blank-focus.png
- script.plex/buttons/blank.png
+ plugin.video.plexkodiconnect/buttons/blank-focus.png
+ plugin.video.plexkodiconnect/buttons/blank.png
70
FF000000
FF000000
@@ -122,8 +122,8 @@
auto
143
font10
- script.plex/buttons/blank-focus.png
- script.plex/buttons/blank.png
+ plugin.video.plexkodiconnect/buttons/blank-focus.png
+ plugin.video.plexkodiconnect/buttons/blank.png
70
FF000000
FF000000
@@ -133,4 +133,4 @@
-
\ No newline at end of file
+
diff --git a/resources/skins/Main/1080i/script-plex-photo.xml b/resources/skins/Main/1080i/script-plex-photo.xml
index cad029b6..a799680c 100644
--- a/resources/skins/Main/1080i/script-plex-photo.xml
+++ b/resources/skins/Main/1080i/script-plex-photo.xml
@@ -7,7 +7,7 @@
250
100
- SetProperty(photo,script.plex/home/background-fallback.png)
+ SetProperty(photo,plugin.video.plexkodiconnect/home/background-fallback.png)
@@ -15,7 +15,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -38,7 +38,7 @@
1920
1080
200
- $INFO[Window.Property(photo)]
+ $INFO[Window.Property(photo)]
keep
@@ -72,7 +72,7 @@
940
1920
140
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -103,11 +103,11 @@
125
101
font12
- script.plex/buttons/repeat-focus.png
- script.plex/buttons/repeat.png
+ plugin.video.plexkodiconnect/buttons/repeat-focus.png
+ plugin.video.plexkodiconnect/buttons/repeat.png
!String.IsEmpty(Window.Property(pq.repeat))
- script.plex/buttons/repeat-focus.png
- script.plex/buttons/repeat.png
+ plugin.video.plexkodiconnect/buttons/repeat-focus.png
+ plugin.video.plexkodiconnect/buttons/repeat.png
@@ -118,8 +118,8 @@
125
101
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -133,11 +133,11 @@
125
101
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
!String.IsEmpty(Window.Property(pq.shuffled))
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -148,8 +148,8 @@
125
101
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -162,8 +162,8 @@
125
101
font12
- script.plex/buttons/rotate-focus.png
- script.plex/buttons/rotate.png
+ plugin.video.plexkodiconnect/buttons/rotate-focus.png
+ plugin.video.plexkodiconnect/buttons/rotate.png
@@ -178,8 +178,8 @@
125
101
font12
- script.plex/buttons/next-focus.png
- script.plex/buttons/next.png
+ plugin.video.plexkodiconnect/buttons/next-focus.png
+ plugin.video.plexkodiconnect/buttons/next.png
@@ -190,8 +190,8 @@
125
101
font12
- script.plex/buttons/next-focus.png
- script.plex/buttons/next.png
+ plugin.video.plexkodiconnect/buttons/next-focus.png
+ plugin.video.plexkodiconnect/buttons/next.png
@@ -203,11 +203,11 @@
125
101
font12
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
!String.IsEmpty(Window.Property(playing))
- script.plex/buttons/pause-focus.png
- script.plex/buttons/pause.png
+ plugin.video.plexkodiconnect/buttons/pause-focus.png
+ plugin.video.plexkodiconnect/buttons/pause.png
@@ -219,8 +219,8 @@
125
101
font12
- script.plex/buttons/stop-focus.png
- script.plex/buttons/stop.png
+ plugin.video.plexkodiconnect/buttons/stop-focus.png
+ plugin.video.plexkodiconnect/buttons/stop.png
@@ -233,8 +233,8 @@
125
101
font12
- script.plex/buttons/next-focus.png
- script.plex/buttons/next.png
+ plugin.video.plexkodiconnect/buttons/next-focus.png
+ plugin.video.plexkodiconnect/buttons/next.png
@@ -244,8 +244,8 @@
0
125
101
- script.plex/buttons/next-focus.png
- script.plex/buttons/next.png
+ plugin.video.plexkodiconnect/buttons/next-focus.png
+ plugin.video.plexkodiconnect/buttons/next.png
@@ -259,11 +259,11 @@
125
101
font12
- script.plex/buttons/square2x2-focus.png
- script.plex/buttons/square2x2.png
+ plugin.video.plexkodiconnect/buttons/square2x2-focus.png
+ plugin.video.plexkodiconnect/buttons/square2x2.png
!String.IsEmpty(Window.Property(show.pqueue))
- script.plex/buttons/square2x2-focus.png
- script.plex/buttons/square2x2-focus.png
+ plugin.video.plexkodiconnect/buttons/square2x2-focus.png
+ plugin.video.plexkodiconnect/buttons/square2x2-focus.png
SetProperty(show.pqueue,1)
SetProperty(show.pqueue,)
@@ -277,11 +277,11 @@
125
101
font12
- script.plex/buttons/info-focus.png
- script.plex/buttons/info.png
+ plugin.video.plexkodiconnect/buttons/info-focus.png
+ plugin.video.plexkodiconnect/buttons/info.png
!String.IsEmpty(Window.Property(show.info))
- script.plex/buttons/info-focus.png
- script.plex/buttons/info-focus.png
+ plugin.video.plexkodiconnect/buttons/info-focus.png
+ plugin.video.plexkodiconnect/buttons/info-focus.png
SetProperty(show.info,1)
SetProperty(show.info,)
@@ -296,8 +296,8 @@
125
101
font12
- script.plex/buttons/tags-focus.png
- script.plex/buttons/tags.png
+ plugin.video.plexkodiconnect/buttons/tags-focus.png
+ plugin.video.plexkodiconnect/buttons/tags.png
@@ -310,8 +310,8 @@
125
101
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -337,7 +337,7 @@
1080
1920
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -364,14 +364,14 @@
0
123
123
- script.plex/thumb_fallbacks/photo.png
+ plugin.video.plexkodiconnect/thumb_fallbacks/photo.png
0
0
123
123
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -391,14 +391,14 @@
0
123
123
- script.plex/thumb_fallbacks/photo.png
+ plugin.video.plexkodiconnect/thumb_fallbacks/photo.png
0
0
123
123
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -410,7 +410,7 @@
1080
135
135
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -426,7 +426,7 @@
0
450
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
4C000000
@@ -449,8 +449,8 @@
450
37
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
00000000
left
center
@@ -461,8 +461,8 @@
450
37
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
00000000
left
center
@@ -484,8 +484,8 @@
450
21
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
99000000
@@ -498,8 +498,8 @@
0
450
37
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
99000000
left
center
@@ -512,7 +512,7 @@
6
29
24
- script.plex/indicators/camera.png
+ plugin.video.plexkodiconnect/indicators/camera.png
A0FFFFFF
@@ -520,8 +520,8 @@
!String.IsEmpty(Window.Property(camera.lens))
450
37
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
99000000
left
center
@@ -540,8 +540,8 @@
0
450
37
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
99000000
left
center
@@ -567,8 +567,8 @@
FF000000
5
-3
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
@@ -577,8 +577,8 @@
450
21
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
99000000
@@ -592,7 +592,7 @@
0
450
1
- script.plex/indicators/info-sep.png
+ plugin.video.plexkodiconnect/indicators/info-sep.png
99000000
@@ -600,7 +600,7 @@
0
394
1
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
999B9B9B
@@ -609,8 +609,8 @@
1
450
21
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
99000000
@@ -619,8 +619,8 @@
22
450
37
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
99000000
left
center
@@ -634,8 +634,8 @@
59
450
21
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
99000000
@@ -650,7 +650,7 @@
0
450
152
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
661F1F1F
@@ -668,16 +668,16 @@
diff --git a/resources/skins/Main/1080i/script-plex-pin_login.xml b/resources/skins/Main/1080i/script-plex-pin_login.xml
index a49a85a6..f2192f0c 100644
--- a/resources/skins/Main/1080i/script-plex-pin_login.xml
+++ b/resources/skins/Main/1080i/script-plex-pin_login.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/sign_in/pin-display.jpg
+ plugin.video.plexkodiconnect/sign_in/pin-display.jpg
String.IsEmpty(Window.Property(pin.image.0)) + String.IsEmpty(Window.Property(linking))
@@ -22,7 +22,7 @@
0
1920
1080
- script.plex/sign_in/generating-code.jpg
+ plugin.video.plexkodiconnect/sign_in/generating-code.jpg
!String.IsEmpty(Window.Property(linking))
@@ -30,7 +30,7 @@
0
1920
1080
- script.plex/sign_in/linking-account.jpg
+ plugin.video.plexkodiconnect/sign_in/linking-account.jpg
diff --git a/resources/skins/Main/1080i/script-plex-playlist.xml b/resources/skins/Main/1080i/script-plex-playlist.xml
index 5eba3f09..c7fce819 100644
--- a/resources/skins/Main/1080i/script-plex-playlist.xml
+++ b/resources/skins/Main/1080i/script-plex-playlist.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -89,8 +89,8 @@
174
139
font12
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
@@ -102,8 +102,8 @@
174
139
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -116,8 +116,8 @@
174
139
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -134,7 +134,7 @@
0
1170
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
20000000
@@ -155,7 +155,7 @@
120
24
- String.IsEmpty(ListItem.Property(track.ID)) | !StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ String.IsEmpty(ListItem.Property(track.ID)) | !StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
0
0
50
@@ -167,12 +167,12 @@
- !String.IsEmpty(ListItem.Property(track.ID)) + StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ !String.IsEmpty(ListItem.Property(track.ID)) + StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
0
32.5
35
35
- script.plex/indicators/playing-circle.png
+ plugin.video.plexkodiconnect/indicators/playing-circle.png
FFE5A00D
@@ -228,7 +228,7 @@
-1
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
226
@@ -274,7 +274,7 @@
97
930
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -288,7 +288,7 @@
120
24
- String.IsEmpty(ListItem.Property(track.ID)) | !StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ String.IsEmpty(ListItem.Property(track.ID)) | !StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
0
0
50
@@ -300,12 +300,12 @@
- !String.IsEmpty(ListItem.Property(track.ID)) + StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ !String.IsEmpty(ListItem.Property(track.ID)) + StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
0
32.5
35
35
- script.plex/indicators/playing-circle.png
+ plugin.video.plexkodiconnect/indicators/playing-circle.png
FFE5A00D
@@ -361,7 +361,7 @@
-1
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
226
@@ -407,7 +407,7 @@
97
930
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -421,14 +421,14 @@
-40
1124
180
- script.plex/square-rounded-shadow.png
+ plugin.video.plexkodiconnect/square-rounded-shadow.png
0
0
999
100
- script.plex/white-square-left-rounded.png
+ plugin.video.plexkodiconnect/white-square-left-rounded.png
FFE5A00D
@@ -436,11 +436,11 @@
0
45
100
- script.plex/buttons/more-vertical.png
+ plugin.video.plexkodiconnect/buttons/more-vertical.png
99FFFFFF
- String.IsEmpty(ListItem.Property(track.ID)) | !StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ String.IsEmpty(ListItem.Property(track.ID)) | !StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
48
0
50
@@ -452,12 +452,12 @@
- !String.IsEmpty(ListItem.Property(track.ID)) + StringCompare(ListItem.Property(track.ID),Window(10000).Property(script.plex.track.ID))
+ !String.IsEmpty(ListItem.Property(track.ID)) + StringCompare(ListItem.Property(track.ID),Window(10000).Property(plugin.video.plexkodiconnect.track.ID))
48
32.5
35
35
- script.plex/indicators/playing-circle.png
+ plugin.video.plexkodiconnect/indicators/playing-circle.png
FF000000
@@ -514,7 +514,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
313
@@ -568,9 +568,9 @@
879
101
true
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
-
false
@@ -594,7 +594,7 @@
0
1920
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -618,8 +618,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -630,7 +630,7 @@
left
center
FFFFFFFF
-
+
40
@@ -645,8 +645,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -668,7 +668,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -739,9 +739,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -763,7 +763,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -776,7 +776,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -791,7 +791,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
diff --git a/resources/skins/Main/1080i/script-plex-playlists.xml b/resources/skins/Main/1080i/script-plex-playlists.xml
index 7862a72e..103a6d75 100644
--- a/resources/skins/Main/1080i/script-plex-playlists.xml
+++ b/resources/skins/Main/1080i/script-plex-playlists.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -47,7 +47,7 @@
left
center
FFFFFFFF
-
+
0
@@ -123,7 +123,7 @@
-19
318
318
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
21
@@ -171,7 +171,7 @@
16
248
248
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -193,7 +193,7 @@
0
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
661F1F1F
@@ -205,7 +205,7 @@
left
center
FFFFFFFF
-
+
-21.5
@@ -280,7 +280,7 @@
-15.5
617
383
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
41.5
@@ -328,7 +328,7 @@
20.5
547
313
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -351,7 +351,7 @@
0
1920
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -375,8 +375,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -387,7 +387,7 @@
left
center
FFFFFFFF
-
+
40
@@ -402,8 +402,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -425,7 +425,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -496,9 +496,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -520,7 +520,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -533,7 +533,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -548,7 +548,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
diff --git a/resources/skins/Main/1080i/script-plex-plex_pass.xml b/resources/skins/Main/1080i/script-plex-plex_pass.xml
index b4af8df4..48814207 100644
--- a/resources/skins/Main/1080i/script-plex-plex_pass.xml
+++ b/resources/skins/Main/1080i/script-plex-plex_pass.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/sign_in/plexpass.jpg
+ plugin.video.plexkodiconnect/sign_in/plexpass.jpg
diff --git a/resources/skins/Main/1080i/script-plex-posters.xml b/resources/skins/Main/1080i/script-plex-posters.xml
index 33ccf467..809f27e9 100644
--- a/resources/skins/Main/1080i/script-plex-posters.xml
+++ b/resources/skins/Main/1080i/script-plex-posters.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -55,8 +55,8 @@
126
100
font12
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
@@ -68,8 +68,8 @@
126
100
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -82,8 +82,8 @@
126
100
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -95,8 +95,8 @@
126
100
font12
- script.plex/buttons/chapters-focus.png
- script.plex/buttons/chapters.png
+ plugin.video.plexkodiconnect/buttons/chapters-focus.png
+ plugin.video.plexkodiconnect/buttons/chapters.png
@@ -152,7 +152,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -171,7 +171,7 @@
0
45
45
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -180,7 +180,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -188,7 +188,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -235,7 +235,7 @@
-40
334
451
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -264,7 +264,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -283,7 +283,7 @@
0
45
45
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
!String.IsEmpty(ListItem.Property(unwatched.count))
@@ -292,7 +292,7 @@
0
51
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -300,7 +300,7 @@
0
50
38
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -334,7 +334,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -345,7 +345,7 @@
- StringCompare(Window(10000).Property(script.plex.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))
151
1780
150
@@ -369,7 +369,7 @@
0
0
- !StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))
+ !StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))
0
0
34
@@ -381,14 +381,14 @@
- StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))
0
0
34
34
99FFFFFF
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -415,7 +415,7 @@
0
0
- !StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))
+ !StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))
0
0
34
@@ -427,14 +427,14 @@
- StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))
0
0
34
34
99FFFFFF
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -461,7 +461,7 @@
34
34
FFE5A00D
- script.plex/white-outline-rounded.png
+ plugin.video.plexkodiconnect/white-outline-rounded.png
@@ -476,9 +476,9 @@
12
910
true
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
-
false
@@ -502,7 +502,7 @@
0
1920
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -526,8 +526,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -553,8 +553,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -577,7 +577,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -648,9 +648,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -692,7 +692,7 @@
FF000000
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -725,7 +725,7 @@
FFFFFFFF
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -739,7 +739,7 @@
FF000000
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -762,7 +762,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -779,7 +779,7 @@
font30
center
FFFFFFFF
-
+
false
@@ -790,7 +790,7 @@
font30
center
FFCCCCCC
-
+
@@ -807,7 +807,7 @@
font30
center
FFFFFFFF
-
+
false
@@ -818,7 +818,7 @@
font30
center
FFCCCCCC
-
+
@@ -831,7 +831,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -846,7 +846,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
diff --git a/resources/skins/Main/1080i/script-plex-pre_play.xml b/resources/skins/Main/1080i/script-plex-pre_play.xml
index 405f2895..69efc668 100644
--- a/resources/skins/Main/1080i/script-plex-pre_play.xml
+++ b/resources/skins/Main/1080i/script-plex-pre_play.xml
@@ -13,7 +13,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -62,12 +62,12 @@
176
140
font12
- script.plex/buttons/info-focus.png
- script.plex/buttons/info.png
+ plugin.video.plexkodiconnect/buttons/info-focus.png
+ plugin.video.plexkodiconnect/buttons/info.png
@@ -88,8 +88,8 @@
176
140
font12
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
@@ -102,8 +102,8 @@
176
140
font12
- script.plex/buttons/trailer-focus.png
- script.plex/buttons/trailer.png
+ plugin.video.plexkodiconnect/buttons/trailer-focus.png
+ plugin.video.plexkodiconnect/buttons/trailer.png
@@ -115,8 +115,8 @@
176
140
font12
- script.plex/buttons/settings-focus.png
- script.plex/buttons/settings.png
+ plugin.video.plexkodiconnect/buttons/settings-focus.png
+ plugin.video.plexkodiconnect/buttons/settings.png
@@ -128,8 +128,8 @@
176
140
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -146,7 +146,7 @@
0
347
518
- script.plex/thumb_fallbacks/movie.png
+ plugin.video.plexkodiconnect/thumb_fallbacks/movie.png
scale
@@ -168,7 +168,7 @@
0
347
315
- script.plex/thumb_fallbacks/show.png
+ plugin.video.plexkodiconnect/thumb_fallbacks/show.png
scale
@@ -176,7 +176,7 @@
323
347
195
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
scale
@@ -238,7 +238,7 @@
6
134
22
- script.plex/stars/$INFO[Window.Property(rating.stars)].png
+ plugin.video.plexkodiconnect/stars/$INFO[Window.Property(rating.stars)].png
!String.IsEmpty(Window.Property(video.res))
@@ -251,8 +251,8 @@
FFFFFFFF
FFFFFFFF
15
- script.plex/white-square-rounded-top-padded.png
- script.plex/white-square-rounded-top-padded.png
+ plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
+ plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
@@ -266,9 +266,9 @@
FFFFFFFF
FFFFFFFF
15
- script.plex/white-square-rounded-top-padded.png
- script.plex/white-square-rounded-top-padded.png
-
+ plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
+ plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
+
@@ -286,7 +286,7 @@
2
63
30
- $INFO[Window.Property(rating.image)]
+ $INFO[Window.Property(rating.image)]
keep
@@ -356,9 +356,9 @@
FFFFFFFF
FFFFFFFF
15
- script.plex/white-square-rounded-top-padded.png
- script.plex/white-square-rounded-top-padded.png
-
+ plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
+ plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
+
auto
@@ -380,9 +380,9 @@
FFFFFFFF
FFFFFFFF
15
- script.plex/white-square-rounded-top-padded.png
- script.plex/white-square-rounded-top-padded.png
-
+ plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
+ plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
+
!String.IsEmpty(Window.Property(subtitles))
@@ -411,7 +411,7 @@
557
1
8
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -420,7 +420,7 @@
565
1920
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -443,7 +443,7 @@
0
1920
360
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -455,7 +455,7 @@
left
center
FFFFFFFF
-
+
0
@@ -521,7 +521,7 @@
-40
389
258
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -559,7 +559,7 @@
0
309
178
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -578,7 +578,7 @@
0
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -634,7 +634,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -677,7 +677,7 @@
-40
324
441
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -706,7 +706,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -736,7 +736,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -755,7 +755,7 @@
20
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -767,7 +767,7 @@
left
center
FFFFFFFF
-
+
0
@@ -792,14 +792,14 @@
0
244
244
- script.plex/thumb_fallbacks/role.png
+ plugin.video.plexkodiconnect/thumb_fallbacks/role.png
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -848,7 +848,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -858,14 +858,14 @@
0
244
244
- script.plex/thumb_fallbacks/role.png
+ plugin.video.plexkodiconnect/thumb_fallbacks/role.png
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -901,7 +901,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -925,7 +925,7 @@
0
1920
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -949,8 +949,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -967,8 +967,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -990,7 +990,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -1061,9 +1061,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -1085,7 +1085,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -1098,7 +1098,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -1113,7 +1113,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
diff --git a/resources/skins/Main/1080i/script-plex-pre_signin.xml b/resources/skins/Main/1080i/script-plex-pre_signin.xml
index 1a7689c9..68156690 100644
--- a/resources/skins/Main/1080i/script-plex-pre_signin.xml
+++ b/resources/skins/Main/1080i/script-plex-pre_signin.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/sign_in/pre-signin.jpg
+ plugin.video.plexkodiconnect/sign_in/pre-signin.jpg
diff --git a/resources/skins/Main/1080i/script-plex-refresh_code.xml b/resources/skins/Main/1080i/script-plex-refresh_code.xml
index 057f47d4..8fc5c097 100644
--- a/resources/skins/Main/1080i/script-plex-refresh_code.xml
+++ b/resources/skins/Main/1080i/script-plex-refresh_code.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/sign_in/refresh-code.jpg
+ plugin.video.plexkodiconnect/sign_in/refresh-code.jpg
diff --git a/resources/skins/Main/1080i/script-plex-search.xml b/resources/skins/Main/1080i/script-plex-search.xml
index dc99029c..f5f31b33 100644
--- a/resources/skins/Main/1080i/script-plex-search.xml
+++ b/resources/skins/Main/1080i/script-plex-search.xml
@@ -14,21 +14,21 @@
0
564
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
135
564
810
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
945
564
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -42,8 +42,8 @@
900
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
Close
@@ -57,7 +57,7 @@
left
center
FFFFFFFF
-
+
@@ -76,7 +76,7 @@
0
151
60
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
StringCompare(Window.Property(search.section),all)
@@ -85,7 +85,7 @@
0
151
60
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
false
@@ -111,7 +111,7 @@
center
center
FFFFFFFF
-
+
@@ -122,7 +122,7 @@
0
74
60
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
StringCompare(Window.Property(search.section),movie)
@@ -130,7 +130,7 @@
0
74
60
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -141,7 +141,7 @@
0
74
60
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
StringCompare(Window.Property(search.section),show)
@@ -149,7 +149,7 @@
0
74
60
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -160,7 +160,7 @@
0
74
60
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
StringCompare(Window.Property(search.section),artist)
@@ -168,7 +168,7 @@
0
74
60
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -179,7 +179,7 @@
0
74
60
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
StringCompare(Window.Property(search.section),photo)
@@ -187,7 +187,7 @@
0
74
60
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -212,9 +212,9 @@
center
FF000000
00000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
-
+
@@ -236,7 +236,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -260,7 +260,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -284,7 +284,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -308,7 +308,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -329,7 +329,7 @@
20
22
20
- script.plex/home/type/movie.png
+ plugin.video.plexkodiconnect/home/type/movie.png
@@ -347,7 +347,7 @@
20
24
20
- script.plex/home/type/show.png
+ plugin.video.plexkodiconnect/home/type/show.png
@@ -365,7 +365,7 @@
20
18
20
- script.plex/home/type/artist.png
+ plugin.video.plexkodiconnect/home/type/artist.png
@@ -383,7 +383,7 @@
20
22
20
- script.plex/home/type/photo.png
+ plugin.video.plexkodiconnect/home/type/photo.png
@@ -400,7 +400,7 @@
0
459
60
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
@@ -417,7 +417,7 @@
font13
30
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
-
no
@@ -452,42 +452,42 @@
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
77
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
154
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
231
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
308
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
385
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -499,42 +499,42 @@
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
77
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
154
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
231
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
308
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
385
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -546,42 +546,42 @@
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
77
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
154
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
231
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
308
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
385
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -593,42 +593,42 @@
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
77
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
154
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
231
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
308
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
385
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -640,42 +640,42 @@
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
77
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
154
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
231
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
308
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
385
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -687,42 +687,42 @@
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
77
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
154
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
231
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
308
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
385
0
74
74
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -749,7 +749,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -773,7 +773,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -797,7 +797,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -821,7 +821,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -845,7 +845,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -869,7 +869,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -898,7 +898,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -922,7 +922,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -946,7 +946,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -970,7 +970,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -994,7 +994,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1018,7 +1018,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1047,7 +1047,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1071,7 +1071,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1095,7 +1095,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1119,7 +1119,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1143,7 +1143,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1167,7 +1167,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1196,7 +1196,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1220,7 +1220,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1244,7 +1244,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1268,7 +1268,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1292,7 +1292,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1316,7 +1316,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1345,7 +1345,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1369,7 +1369,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1393,7 +1393,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1417,7 +1417,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1441,7 +1441,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1465,7 +1465,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1494,7 +1494,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1518,7 +1518,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1542,7 +1542,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1566,7 +1566,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1590,7 +1590,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1614,7 +1614,7 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
@@ -1633,21 +1633,21 @@
0
151
60
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
154
0
151
60
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
308
0
151
60
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
@@ -1668,9 +1668,9 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
-
+
@@ -1691,9 +1691,9 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
-
+
@@ -1714,9 +1714,9 @@
center
center
FF000000
- script.plex/white-square-rounded-with-shadow.png
+ plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
-
-
+
@@ -1736,7 +1736,7 @@
right
center
FFFFFFFF
-
+
480
@@ -1748,7 +1748,7 @@
0
39
39
- script.plex/indicators/spinner.png
+ plugin.video.plexkodiconnect/indicators/spinner.png
@@ -1766,7 +1766,7 @@
center
center
FFFFFFFF
-
+
@@ -2066,7 +2066,7 @@
-40
270
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -2107,7 +2107,7 @@
0
190
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -2198,7 +2198,7 @@
-40
360
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -2238,7 +2238,7 @@
0
280
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -2329,7 +2329,7 @@
-40
390
259
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -2369,7 +2369,7 @@
0
310
179
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -2417,14 +2417,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -2468,7 +2468,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -2478,14 +2478,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -2516,7 +2516,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -2533,7 +2533,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -2615,7 +2615,7 @@
-40
270
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -2655,7 +2655,7 @@
0
190
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -2672,7 +2672,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -2754,7 +2754,7 @@
-40
360
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -2794,7 +2794,7 @@
0
280
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -2811,7 +2811,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -2893,7 +2893,7 @@
-40
390
259
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -2933,7 +2933,7 @@
0
310
179
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -2950,7 +2950,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -2989,14 +2989,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -3040,7 +3040,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -3050,14 +3050,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -3088,7 +3088,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -3105,7 +3105,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -3187,7 +3187,7 @@
-40
270
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -3227,7 +3227,7 @@
0
190
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -3244,7 +3244,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -3326,7 +3326,7 @@
-40
360
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -3366,7 +3366,7 @@
0
280
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -3383,7 +3383,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -3465,7 +3465,7 @@
-40
390
259
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -3505,7 +3505,7 @@
0
310
179
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -3522,7 +3522,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -3561,14 +3561,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -3612,7 +3612,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -3622,14 +3622,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -3660,7 +3660,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -3677,7 +3677,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -3759,7 +3759,7 @@
-40
270
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -3799,7 +3799,7 @@
0
190
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -3816,7 +3816,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -3898,7 +3898,7 @@
-40
360
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -3938,7 +3938,7 @@
0
280
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -3955,7 +3955,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -4037,7 +4037,7 @@
-40
390
259
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -4077,7 +4077,7 @@
0
310
179
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -4094,7 +4094,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -4133,14 +4133,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -4184,7 +4184,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -4194,14 +4194,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -4232,7 +4232,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -4249,7 +4249,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -4331,7 +4331,7 @@
-40
270
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -4371,7 +4371,7 @@
0
190
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -4388,7 +4388,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -4470,7 +4470,7 @@
-40
360
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -4510,7 +4510,7 @@
0
280
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -4527,7 +4527,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -4609,7 +4609,7 @@
-40
390
259
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -4649,7 +4649,7 @@
0
310
179
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -4666,7 +4666,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -4705,14 +4705,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -4756,7 +4756,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -4766,14 +4766,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -4804,7 +4804,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -4821,7 +4821,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -4903,7 +4903,7 @@
-40
270
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -4943,7 +4943,7 @@
0
190
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -4960,7 +4960,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -5042,7 +5042,7 @@
-40
360
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -5082,7 +5082,7 @@
0
280
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -5099,7 +5099,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -5181,7 +5181,7 @@
-40
390
259
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -5221,7 +5221,7 @@
0
310
179
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -5238,7 +5238,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -5277,14 +5277,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -5328,7 +5328,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -5338,14 +5338,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -5376,7 +5376,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -5393,7 +5393,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -5475,7 +5475,7 @@
-40
270
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -5515,7 +5515,7 @@
0
190
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -5532,7 +5532,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -5614,7 +5614,7 @@
-40
360
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -5654,7 +5654,7 @@
0
280
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -5671,7 +5671,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -5753,7 +5753,7 @@
-40
390
259
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -5793,7 +5793,7 @@
0
310
179
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -5810,7 +5810,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -5849,14 +5849,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -5900,7 +5900,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -5910,14 +5910,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -5948,7 +5948,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -5965,7 +5965,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -6047,7 +6047,7 @@
-40
270
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -6087,7 +6087,7 @@
0
190
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -6104,7 +6104,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -6186,7 +6186,7 @@
-40
360
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -6226,7 +6226,7 @@
0
280
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -6243,7 +6243,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -6325,7 +6325,7 @@
-40
390
259
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -6365,7 +6365,7 @@
0
310
179
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -6382,7 +6382,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -6421,14 +6421,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -6472,7 +6472,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -6482,14 +6482,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -6520,7 +6520,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -6537,7 +6537,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -6619,7 +6619,7 @@
-40
270
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -6659,7 +6659,7 @@
0
190
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -6676,7 +6676,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -6758,7 +6758,7 @@
-40
360
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -6798,7 +6798,7 @@
0
280
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -6815,7 +6815,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -6897,7 +6897,7 @@
-40
390
259
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -6937,7 +6937,7 @@
0
310
179
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -6954,7 +6954,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -6993,14 +6993,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -7044,7 +7044,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -7054,14 +7054,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -7092,7 +7092,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -7109,7 +7109,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -7191,7 +7191,7 @@
-40
270
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -7231,7 +7231,7 @@
0
190
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -7248,7 +7248,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -7330,7 +7330,7 @@
-40
360
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -7370,7 +7370,7 @@
0
280
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -7387,7 +7387,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -7469,7 +7469,7 @@
-40
390
259
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -7509,7 +7509,7 @@
0
310
179
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -7526,7 +7526,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -7565,14 +7565,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -7616,7 +7616,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -7626,14 +7626,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -7664,7 +7664,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -7681,7 +7681,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -7763,7 +7763,7 @@
-40
270
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -7803,7 +7803,7 @@
0
190
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -7820,7 +7820,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -7902,7 +7902,7 @@
-40
360
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -7942,7 +7942,7 @@
0
280
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -7959,7 +7959,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -8041,7 +8041,7 @@
-40
390
259
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -8081,7 +8081,7 @@
0
310
179
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -8098,7 +8098,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -8137,14 +8137,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -8188,7 +8188,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -8198,14 +8198,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -8236,7 +8236,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -8253,7 +8253,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -8335,7 +8335,7 @@
-40
270
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -8375,7 +8375,7 @@
0
190
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -8392,7 +8392,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -8474,7 +8474,7 @@
-40
360
360
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -8514,7 +8514,7 @@
0
280
280
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -8531,7 +8531,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -8613,7 +8613,7 @@
-40
390
259
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -8653,7 +8653,7 @@
0
310
179
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -8670,7 +8670,7 @@
0
1236
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF282828
@@ -8708,14 +8708,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -8759,7 +8759,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -8769,14 +8769,14 @@
0
244
244
- $INFO[ListItem.Property(thumb.fallback)]
+ $INFO[ListItem.Property(thumb.fallback)]
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -8807,7 +8807,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -8817,4 +8817,4 @@
-
\ No newline at end of file
+
diff --git a/resources/skins/Main/1080i/script-plex-seasons.xml b/resources/skins/Main/1080i/script-plex-seasons.xml
index 0ff67885..310fb5f2 100644
--- a/resources/skins/Main/1080i/script-plex-seasons.xml
+++ b/resources/skins/Main/1080i/script-plex-seasons.xml
@@ -13,7 +13,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -65,8 +65,8 @@
126
100
font12
- script.plex/buttons/info-focus.png
- script.plex/buttons/info.png
+ plugin.video.plexkodiconnect/buttons/info-focus.png
+ plugin.video.plexkodiconnect/buttons/info.png
@@ -77,8 +77,8 @@
126
100
font12
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
@@ -89,8 +89,8 @@
126
100
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -101,8 +101,8 @@
126
100
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -117,7 +117,7 @@
0
347
518
- script.plex/thumb_fallbacks/movie.png
+ plugin.video.plexkodiconnect/thumb_fallbacks/movie.png
scale
@@ -170,7 +170,7 @@
4
134
22
- script.plex/stars/$INFO[Window.Property(rating.stars)].png
+ plugin.video.plexkodiconnect/stars/$INFO[Window.Property(rating.stars)].png
@@ -188,7 +188,7 @@
2
63
30
- $INFO[Window.Property(rating.image)]
+ $INFO[Window.Property(rating.image)]
keep
@@ -259,8 +259,8 @@
FFFFFFFF
FFFFFFFF
15
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
@@ -283,8 +283,8 @@
FFFFFFFF
FFFFFFFF
15
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
@@ -324,7 +324,7 @@
557
1
8
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -333,7 +333,7 @@
565
1920
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -356,7 +356,7 @@
0
1920
360
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -399,7 +399,7 @@
0
45
40
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -407,7 +407,7 @@
0
44
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -453,7 +453,7 @@
-40
248
326
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -480,7 +480,7 @@
0
45
40
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -488,7 +488,7 @@
0
44
39
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFCC7B19
@@ -521,7 +521,7 @@
0
168
246
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -620,7 +620,7 @@
-40
389
258
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -672,7 +672,7 @@
0
309
178
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -691,7 +691,7 @@
0
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -747,7 +747,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -790,7 +790,7 @@
-40
324
441
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -819,7 +819,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -849,7 +849,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -868,7 +868,7 @@
20
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -880,7 +880,7 @@
left
center
FFFFFFFF
-
+
0
@@ -905,14 +905,14 @@
0
244
244
- script.plex/thumb_fallbacks/role.png
+ plugin.video.plexkodiconnect/thumb_fallbacks/role.png
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -945,7 +945,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -955,14 +955,14 @@
0
244
244
- script.plex/thumb_fallbacks/role.png
+ plugin.video.plexkodiconnect/thumb_fallbacks/role.png
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -982,7 +982,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -1006,7 +1006,7 @@
0
1920
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -1030,8 +1030,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -1048,8 +1048,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -1071,7 +1071,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -1142,9 +1142,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -1166,7 +1166,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -1179,7 +1179,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -1194,7 +1194,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
diff --git a/resources/skins/Main/1080i/script-plex-seek_dialog.xml b/resources/skins/Main/1080i/script-plex-seek_dialog.xml
index 4249d512..48e34d64 100644
--- a/resources/skins/Main/1080i/script-plex-seek_dialog.xml
+++ b/resources/skins/Main/1080i/script-plex-seek_dialog.xml
@@ -32,7 +32,7 @@
0
1920
1080
- script.plex/player-fade.png
+ plugin.video.plexkodiconnect/player-fade.png
FF080808
@@ -45,7 +45,7 @@
0
1920
140
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -53,7 +53,7 @@
940
1920
140
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -145,7 +145,7 @@
center
center
FFCC7B19
-
+
@@ -157,7 +157,7 @@
0
1920
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -166,7 +166,7 @@
1
1
8
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFE5A00D
@@ -174,7 +174,7 @@
2
1
6
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FFAC5B00
@@ -192,7 +192,7 @@
0
324
184
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -246,7 +246,7 @@
0
125
101
- script.plex/buttons/repeat.png
+ plugin.video.plexkodiconnect/buttons/repeat.png
Playlist.IsRepeat | !String.IsEmpty(Window.Property(pq.repeat))
@@ -254,7 +254,7 @@
0
125
101
- script.plex/buttons/repeat.png
+ plugin.video.plexkodiconnect/buttons/repeat.png
Playlist.IsRepeatOne | !String.IsEmpty(Window.Property(pq.repeat.one))
@@ -262,7 +262,7 @@
0
125
101
- script.plex/buttons/repeat-one.png
+ plugin.video.plexkodiconnect/buttons/repeat-one.png
@@ -273,7 +273,7 @@
0
125
101
- script.plex/buttons/repeat-focus.png
+ plugin.video.plexkodiconnect/buttons/repeat-focus.png
Playlist.IsRepeat | !String.IsEmpty(Window.Property(pq.repeat))
@@ -281,7 +281,7 @@
0
125
101
- script.plex/buttons/repeat-focus.png
+ plugin.video.plexkodiconnect/buttons/repeat-focus.png
Playlist.IsRepeatOne | !String.IsEmpty(Window.Property(pq.repeat.one))
@@ -289,7 +289,7 @@
0
125
101
- script.plex/buttons/repeat-one-focus.png
+ plugin.video.plexkodiconnect/buttons/repeat-one-focus.png
@@ -304,11 +304,11 @@
125
101
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
!String.IsEmpty(Window.Property(pq.shuffled))
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -319,8 +319,8 @@
125
101
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -333,8 +333,8 @@
125
101
font12
- script.plex/buttons/settings-focus.png
- script.plex/buttons/settings.png
+ plugin.video.plexkodiconnect/buttons/settings-focus.png
+ plugin.video.plexkodiconnect/buttons/settings.png
@@ -349,8 +349,8 @@
125
101
font12
- script.plex/buttons/next-focus.png
- script.plex/buttons/next.png
+ plugin.video.plexkodiconnect/buttons/next-focus.png
+ plugin.video.plexkodiconnect/buttons/next.png
@@ -361,8 +361,8 @@
125
101
font12
- script.plex/buttons/next-focus.png
- script.plex/buttons/next.png
+ plugin.video.plexkodiconnect/buttons/next-focus.png
+ plugin.video.plexkodiconnect/buttons/next.png
@@ -374,8 +374,8 @@
125
101
font12
- script.plex/buttons/skip-forward-focus.png
- script.plex/buttons/skip-forward.png
+ plugin.video.plexkodiconnect/buttons/skip-forward-focus.png
+ plugin.video.plexkodiconnect/buttons/skip-forward.png
@@ -407,7 +407,7 @@
0
125
101
- script.plex/buttons/pause.png
+ plugin.video.plexkodiconnect/buttons/pause.png
Player.Paused | Player.Forwarding | Player.Rewinding
@@ -415,7 +415,7 @@
0
125
101
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play.png
@@ -426,7 +426,7 @@
0
125
101
- script.plex/buttons/pause-focus.png
+ plugin.video.plexkodiconnect/buttons/pause-focus.png
Player.Paused | Player.Forwarding | Player.Rewinding
@@ -434,7 +434,7 @@
0
125
101
- script.plex/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
@@ -448,8 +448,8 @@
125
101
font12
- script.plex/buttons/stop-focus.png
- script.plex/buttons/stop.png
+ plugin.video.plexkodiconnect/buttons/stop-focus.png
+ plugin.video.plexkodiconnect/buttons/stop.png
PlayerControl(Stop)
@@ -462,8 +462,8 @@
125
101
font12
- script.plex/buttons/skip-forward-focus.png
- script.plex/buttons/skip-forward.png
+ plugin.video.plexkodiconnect/buttons/skip-forward-focus.png
+ plugin.video.plexkodiconnect/buttons/skip-forward.png
@@ -476,8 +476,8 @@
125
101
font12
- script.plex/buttons/next-focus.png
- script.plex/buttons/next.png
+ plugin.video.plexkodiconnect/buttons/next-focus.png
+ plugin.video.plexkodiconnect/buttons/next.png
@@ -487,8 +487,8 @@
0
125
101
- script.plex/buttons/next-focus.png
- script.plex/buttons/next.png
+ plugin.video.plexkodiconnect/buttons/next-focus.png
+ plugin.video.plexkodiconnect/buttons/next.png
@@ -503,8 +503,8 @@
125
101
font12
- script.plex/buttons/pqueue-focus.png
- script.plex/buttons/pqueue.png
+ plugin.video.plexkodiconnect/buttons/pqueue-focus.png
+ plugin.video.plexkodiconnect/buttons/pqueue.png
@@ -518,8 +518,8 @@
125
101
font12
- script.plex/buttons/pqueue-focus.png
- script.plex/buttons/pqueue.png
+ plugin.video.plexkodiconnect/buttons/pqueue-focus.png
+ plugin.video.plexkodiconnect/buttons/pqueue.png
@@ -532,8 +532,8 @@
125
101
font12
- script.plex/buttons/subtitle-focus.png
- script.plex/buttons/subtitle.png
+ plugin.video.plexkodiconnect/buttons/subtitle-focus.png
+ plugin.video.plexkodiconnect/buttons/subtitle.png
@@ -564,7 +564,7 @@
5
2320
6
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -585,7 +585,7 @@
0
16
16
- script.plex/indicators/seek-selection-marker.png
+ plugin.video.plexkodiconnect/indicators/seek-selection-marker.png
FF606060
@@ -598,7 +598,7 @@
0
16
16
- script.plex/indicators/seek-selection-marker.png
+ plugin.video.plexkodiconnect/indicators/seek-selection-marker.png
FF606060
@@ -607,7 +607,7 @@
0
16
16
- script.plex/indicators/seek-selection-marker.png
+ plugin.video.plexkodiconnect/indicators/seek-selection-marker.png
FFE5A00D
@@ -627,7 +627,7 @@
0
101
39
- script.plex/indicators/player-selection-time_box.png
+ plugin.video.plexkodiconnect/indicators/player-selection-time_box.png
D0000000
@@ -648,7 +648,7 @@
39
15
7
- script.plex/indicators/player-selection-time_arrow.png
+ plugin.video.plexkodiconnect/indicators/player-selection-time_arrow.png
D0000000
diff --git a/resources/skins/Main/1080i/script-plex-settings.xml b/resources/skins/Main/1080i/script-plex-settings.xml
index 871a0f15..c7cce8e6 100644
--- a/resources/skins/Main/1080i/script-plex-settings.xml
+++ b/resources/skins/Main/1080i/script-plex-settings.xml
@@ -13,7 +13,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -36,7 +36,7 @@
135
1077
945
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
32111111
@@ -44,7 +44,7 @@
810
1920
270
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
32000000
@@ -53,7 +53,7 @@
810
780
270
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
32111111
@@ -62,7 +62,7 @@
135
879
945
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
66111111
@@ -114,7 +114,7 @@
75
414
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
661F1F1F
@@ -127,7 +127,7 @@
0
590
155
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
Control.HasFocus(75)
@@ -135,7 +135,7 @@
40
510
75
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
!Control.HasFocus(75)
@@ -143,7 +143,7 @@
40
510
75
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
!Control.HasFocus(75)
@@ -151,7 +151,7 @@
66
16
23
- script.plex/settings/expanded.png
+ plugin.video.plexkodiconnect/settings/expanded.png
FF000000
@@ -227,7 +227,7 @@
75
600
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
661F1F1F
@@ -240,7 +240,7 @@
0
45
45
- script.plex/settings/checkbox.png
+ plugin.video.plexkodiconnect/settings/checkbox.png
!String.IsEmpty(ListItem.Property(checkbox.checked))
@@ -248,7 +248,7 @@
0
45
45
- script.plex/settings/checkmark.png
+ plugin.video.plexkodiconnect/settings/checkmark.png
@@ -260,7 +260,7 @@
0
776
155
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
!Control.HasFocus(125)
@@ -268,7 +268,7 @@
40
696
75
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
Control.HasFocus(125)
@@ -276,7 +276,7 @@
40
696
75
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
Control.HasFocus(125)
@@ -284,7 +284,7 @@
66
16
23
- script.plex/settings/expanded.png
+ plugin.video.plexkodiconnect/settings/expanded.png
FF000000
@@ -345,7 +345,7 @@
75
600
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
661F1F1F
@@ -358,7 +358,7 @@
0
45
45
- script.plex/settings/checkbox.png
+ plugin.video.plexkodiconnect/settings/checkbox.png
!String.IsEmpty(ListItem.Property(checkbox.checked))
@@ -366,7 +366,7 @@
0
45
45
- script.plex/settings/checkmark.png
+ plugin.video.plexkodiconnect/settings/checkmark.png
@@ -379,9 +379,9 @@
9
525
true
- script.plex/white-square-rounded-4r.png
- script.plex/white-square-rounded-4r.png
- script.plex/white-square-rounded-4r.png
+ plugin.video.plexkodiconnect/white-square-rounded-4r.png
+ plugin.video.plexkodiconnect/white-square-rounded-4r.png
+ plugin.video.plexkodiconnect/white-square-rounded-4r.png
-
-
false
@@ -439,7 +439,7 @@
75
594
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
661F1F1F
@@ -452,7 +452,7 @@
0
45
45
- script.plex/settings/checkmark.png
+ plugin.video.plexkodiconnect/settings/checkmark.png
@@ -462,14 +462,14 @@
0
610
155
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
40
40
690
75
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
88
@@ -495,7 +495,7 @@
0
45
45
- script.plex/settings/checkmark.png
+ plugin.video.plexkodiconnect/settings/checkmark.png
@@ -508,9 +508,9 @@
9
525
true
- script.plex/white-square-rounded-4r.png
- script.plex/white-square-rounded-4r.png
- script.plex/white-square-rounded-4r.png
+ plugin.video.plexkodiconnect/white-square-rounded-4r.png
+ plugin.video.plexkodiconnect/white-square-rounded-4r.png
+ plugin.video.plexkodiconnect/white-square-rounded-4r.png
-
-
false
@@ -534,7 +534,7 @@
0
1920
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -558,8 +558,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -590,7 +590,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -661,9 +661,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -685,7 +685,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
diff --git a/resources/skins/Main/1080i/script-plex-settings_select_dialog.xml b/resources/skins/Main/1080i/script-plex-settings_select_dialog.xml
index f619fa16..43a4fb41 100644
--- a/resources/skins/Main/1080i/script-plex-settings_select_dialog.xml
+++ b/resources/skins/Main/1080i/script-plex-settings_select_dialog.xml
@@ -15,14 +15,14 @@
-40
680
870
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
0
0
600
80
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
F21F1F1F
@@ -30,7 +30,7 @@
80
600
710
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
F2606060
@@ -73,7 +73,7 @@
0
600
100
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
20
diff --git a/resources/skins/Main/1080i/script-plex-signin_background.xml b/resources/skins/Main/1080i/script-plex-signin_background.xml
index 9701401f..3c01ef56 100644
--- a/resources/skins/Main/1080i/script-plex-signin_background.xml
+++ b/resources/skins/Main/1080i/script-plex-signin_background.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/sign_in/back.jpg
+ plugin.video.plexkodiconnect/sign_in/back.jpg
diff --git a/resources/skins/Main/1080i/script-plex-signin_blank.xml b/resources/skins/Main/1080i/script-plex-signin_blank.xml
index ebf41efb..2b48f0e9 100644
--- a/resources/skins/Main/1080i/script-plex-signin_blank.xml
+++ b/resources/skins/Main/1080i/script-plex-signin_blank.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/sign_in/back.jpg
+ plugin.video.plexkodiconnect/sign_in/back.jpg
diff --git a/resources/skins/Main/1080i/script-plex-squares.xml b/resources/skins/Main/1080i/script-plex-squares.xml
index db3e1d9c..91d2303d 100644
--- a/resources/skins/Main/1080i/script-plex-squares.xml
+++ b/resources/skins/Main/1080i/script-plex-squares.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -56,8 +56,8 @@
126
100
font12
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
@@ -69,8 +69,8 @@
126
100
font12
- script.plex/buttons/shuffle-focus.png
- script.plex/buttons/shuffle.png
+ plugin.video.plexkodiconnect/buttons/shuffle-focus.png
+ plugin.video.plexkodiconnect/buttons/shuffle.png
@@ -83,8 +83,8 @@
126
100
font12
- script.plex/buttons/more-focus.png
- script.plex/buttons/more.png
+ plugin.video.plexkodiconnect/buttons/more-focus.png
+ plugin.video.plexkodiconnect/buttons/more.png
@@ -97,8 +97,8 @@
126
100
font12
- script.plex/buttons/chapters-focus.png
- script.plex/buttons/chapters.png
+ plugin.video.plexkodiconnect/buttons/chapters-focus.png
+ plugin.video.plexkodiconnect/buttons/chapters.png
@@ -151,7 +151,7 @@
244
244
40
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
80000000
@@ -188,7 +188,7 @@
-40
334
334
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
!String.IsEmpty(ListItem.Property(is.folder))
@@ -196,7 +196,7 @@
-40
334
374
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
@@ -223,7 +223,7 @@
244
244
40
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
80000000
@@ -247,7 +247,7 @@
0
254
254
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
!String.IsEmpty(ListItem.Property(is.folder))
@@ -255,7 +255,7 @@
0
254
294
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -267,7 +267,7 @@
- StringCompare(Window(10000).Property(script.plex.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.sort),titleSort) + Integer.IsGreater(Container(101).NumItems,0) + String.IsEmpty(Window.Property(drawing))
151
1780
150
@@ -291,7 +291,7 @@
0
0
- !StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))
+ !StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))
0
0
34
@@ -303,14 +303,14 @@
- StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))
0
0
34
34
99FFFFFF
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -337,7 +337,7 @@
0
0
- !StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(letter))
+ !StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(letter))
0
0
34
@@ -349,14 +349,14 @@
- StringCompare(Window(10000).Property(script.plex.key), ListItem.Property(key))
+ StringCompare(Window(10000).Property(plugin.video.plexkodiconnect.key), ListItem.Property(key))
0
0
34
34
99FFFFFF
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
0
@@ -383,7 +383,7 @@
34
34
FFE5A00D
- script.plex/white-outline-rounded.png
+ plugin.video.plexkodiconnect/white-outline-rounded.png
@@ -398,9 +398,9 @@
12
910
true
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
-
false
@@ -424,7 +424,7 @@
0
1920
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -448,8 +448,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -475,8 +475,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -499,7 +499,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -570,9 +570,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -614,7 +614,7 @@
FF000000
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -647,7 +647,7 @@
FFFFFFFF
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -661,7 +661,7 @@
FF000000
center
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
20
0
@@ -684,7 +684,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -701,7 +701,7 @@
font30
center
FFFFFFFF
-
+
false
@@ -712,7 +712,7 @@
font30
center
FFCCCCCC
-
+
@@ -729,7 +729,7 @@
font30
center
FFFFFFFF
-
+
false
@@ -740,7 +740,7 @@
font30
center
FFCCCCCC
-
+
@@ -753,7 +753,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -768,7 +768,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
diff --git a/resources/skins/Main/1080i/script-plex-track_context.xml b/resources/skins/Main/1080i/script-plex-track_context.xml
index 2e850878..ad4c82f3 100644
--- a/resources/skins/Main/1080i/script-plex-track_context.xml
+++ b/resources/skins/Main/1080i/script-plex-track_context.xml
@@ -13,7 +13,7 @@
0
1920
1080
- $INFO[Window.Property(background)]
+ $INFO[Window.Property(background)]
diff --git a/resources/skins/Main/1080i/script-plex-user_select.xml b/resources/skins/Main/1080i/script-plex-user_select.xml
index 108b4f96..27ed9609 100644
--- a/resources/skins/Main/1080i/script-plex-user_select.xml
+++ b/resources/skins/Main/1080i/script-plex-user_select.xml
@@ -14,7 +14,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -102,8 +102,8 @@
125
101
font12
- script.plex/buttons/next-focus.png
- script.plex/buttons/next.png
+ plugin.video.plexkodiconnect/buttons/next-focus.png
+ plugin.video.plexkodiconnect/buttons/next.png
PlayerControl(Previous)
@@ -116,11 +116,11 @@
125
101
font12
- script.plex/buttons/pause-focus.png
- script.plex/buttons/pause.png
+ plugin.video.plexkodiconnect/buttons/pause-focus.png
+ plugin.video.plexkodiconnect/buttons/pause.png
Player.Paused | Player.Forwarding | Player.Rewinding
- script.plex/buttons/play-focus.png
- script.plex/buttons/play.png
+ plugin.video.plexkodiconnect/buttons/play-focus.png
+ plugin.video.plexkodiconnect/buttons/play.png
PlayerControl(Play)
@@ -134,8 +134,8 @@
125
101
font12
- script.plex/buttons/next-focus.png
- script.plex/buttons/next.png
+ plugin.video.plexkodiconnect/buttons/next-focus.png
+ plugin.video.plexkodiconnect/buttons/next.png
PlayerControl(Next)
@@ -148,8 +148,8 @@
125
101
font12
- script.plex/buttons/stop-focus.png
- script.plex/buttons/stop.png
+ plugin.video.plexkodiconnect/buttons/stop-focus.png
+ plugin.video.plexkodiconnect/buttons/stop.png
PlayerControl(Stop)
@@ -185,9 +185,9 @@
222
783
3
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -200,7 +200,7 @@
275
380
695
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
@@ -233,7 +233,7 @@
0
0
- $INFO[ListItem.Property(back.image)]
+ $INFO[ListItem.Property(back.image)]
FFA0A0A0
@@ -242,7 +242,7 @@
45
210
210
- script.plex/user_select/avatar-background.png
+ plugin.video.plexkodiconnect/user_select/avatar-background.png
E0C0C0C0
@@ -250,7 +250,7 @@
54
192
192
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
String.IsEmpty(ListItem.Thumb)
@@ -274,7 +274,7 @@
0
54
54
- script.plex/user_select/protected-back.png
+ plugin.video.plexkodiconnect/user_select/protected-back.png
A0000000
@@ -282,7 +282,7 @@
0
54
54
- script.plex/user_select/protected-icon.png
+ plugin.video.plexkodiconnect/user_select/protected-icon.png
@@ -295,7 +295,7 @@
0
54
54
- script.plex/user_select/admin-back.png
+ plugin.video.plexkodiconnect/user_select/admin-back.png
A0000000
@@ -303,7 +303,7 @@
0
54
54
- script.plex/user_select/admin-icon.png
+ plugin.video.plexkodiconnect/user_select/admin-icon.png
@@ -322,7 +322,7 @@
-40
380
455
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
Control.HasFocus(101) | ControlGroup(400).HasFocus(0)
@@ -330,7 +330,7 @@
0
300
300
- $INFO[ListItem.Property(back.image)]
+ $INFO[ListItem.Property(back.image)]
FFA0A0A0
@@ -339,7 +339,7 @@
0
300
300
- $INFO[ListItem.Property(back.image)]
+ $INFO[ListItem.Property(back.image)]
FFA0A0A0
@@ -349,7 +349,7 @@
300
300
75
- script.plex/user_select/item-background-bottom.png
+ plugin.video.plexkodiconnect/user_select/item-background-bottom.png
FF000000
@@ -357,7 +357,7 @@
300
300
75
- $INFO[ListItem.Property(back.image)]
+ $INFO[ListItem.Property(back.image)]
stretch
40FFFFFF
@@ -369,7 +369,7 @@
45
210
210
- script.plex/user_select/avatar-background.png
+ plugin.video.plexkodiconnect/user_select/avatar-background.png
E0C0C0C0
@@ -378,7 +378,7 @@
45
210
210
- script.plex/user_select/avatar-background.png
+ plugin.video.plexkodiconnect/user_select/avatar-background.png
FFCC7B19
@@ -387,7 +387,7 @@
45
210
210
- script.plex/user_select/avatar-background.png
+ plugin.video.plexkodiconnect/user_select/avatar-background.png
FFE5A00D
@@ -396,7 +396,7 @@
54
192
192
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
String.IsEmpty(ListItem.Thumb)
@@ -420,7 +420,7 @@
0
54
54
- script.plex/user_select/protected-back.png
+ plugin.video.plexkodiconnect/user_select/protected-back.png
A0000000
@@ -428,7 +428,7 @@
0
54
54
- script.plex/user_select/protected-icon.png
+ plugin.video.plexkodiconnect/user_select/protected-icon.png
@@ -441,7 +441,7 @@
0
54
54
- script.plex/user_select/admin-back.png
+ plugin.video.plexkodiconnect/user_select/admin-back.png
A0000000
@@ -449,7 +449,7 @@
0
54
54
- script.plex/user_select/admin-icon.png
+ plugin.video.plexkodiconnect/user_select/admin-icon.png
@@ -493,7 +493,7 @@
-75
300
75
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -501,7 +501,7 @@
-75
300
75
- $INFO[Container(101).ListItem.Property(back.image)]
+ $INFO[Container(101).ListItem.Property(back.image)]
40FFFFFF
@@ -533,7 +533,7 @@
0
300
239
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
FF000000
@@ -553,8 +553,8 @@
FF000000
center
center
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
0
@@ -573,8 +573,8 @@
FF000000
center
center
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
0
@@ -593,8 +593,8 @@
FF000000
center
center
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
0
@@ -612,8 +612,8 @@
FF000000
center
center
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
0
@@ -632,8 +632,8 @@
FF000000
center
center
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
0
@@ -652,8 +652,8 @@
FF000000
center
center
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
0
@@ -671,8 +671,8 @@
FF000000
center
center
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
0
@@ -691,8 +691,8 @@
FF000000
center
center
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
0
@@ -711,8 +711,8 @@
FF000000
center
center
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
0
@@ -730,8 +730,8 @@
FF000000
center
center
- script.plex/white-square.png
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
0
0
@@ -749,8 +749,8 @@
FF000000
center
center
- script.plex/user_select/backspace.png
- script.plex/user_select/backspace_nf.png
+ plugin.video.plexkodiconnect/user_select/backspace.png
+ plugin.video.plexkodiconnect/user_select/backspace_nf.png
0
0
@@ -770,7 +770,7 @@
0
1920
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
19000000
@@ -808,7 +808,7 @@
0
124
66
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
27
@@ -819,7 +819,7 @@
0
90
90
- script.plex/home/type/home.png
+ plugin.video.plexkodiconnect/home/type/home.png
Control.HasFocus(500) | !String.IsEmpty(Window.Property(dropdown))
@@ -827,7 +827,7 @@
-40
170
170
- script.plex/home/type/home-selected.png
+ plugin.video.plexkodiconnect/home/type/home-selected.png
@@ -860,7 +860,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -871,7 +871,7 @@
465
240
150
- script.plex/busy-back.png
+ plugin.video.plexkodiconnect/busy-back.png
A0FFFFFF
@@ -879,7 +879,7 @@
521
90
38
- script.plex/busy.gif
+ plugin.video.plexkodiconnect/busy.gif
diff --git a/resources/skins/Main/1080i/script-plex-video_current_playlist.xml b/resources/skins/Main/1080i/script-plex-video_current_playlist.xml
index 2ec1a79f..eda7b6f6 100644
--- a/resources/skins/Main/1080i/script-plex-video_current_playlist.xml
+++ b/resources/skins/Main/1080i/script-plex-video_current_playlist.xml
@@ -21,7 +21,7 @@
0
1170
800
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
B3111111
@@ -59,7 +59,7 @@
32.5
35
35
- script.plex/indicators/playing-circle.png
+ plugin.video.plexkodiconnect/indicators/playing-circle.png
FFE5A00D
@@ -115,7 +115,7 @@
-1
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
226
@@ -161,7 +161,7 @@
98
930
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -192,7 +192,7 @@
32.5
35
35
- script.plex/indicators/playing-circle.png
+ plugin.video.plexkodiconnect/indicators/playing-circle.png
FFE5A00D
@@ -248,7 +248,7 @@
-1
35
35
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
226
@@ -294,7 +294,7 @@
97
930
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -308,14 +308,14 @@
-40
1124
180
- script.plex/square-rounded-shadow.png
+ plugin.video.plexkodiconnect/square-rounded-shadow.png
0
0
999
100
- script.plex/white-square-left-rounded.png
+ plugin.video.plexkodiconnect/white-square-left-rounded.png
FFE5A00D
@@ -323,7 +323,7 @@
0
45
100
- script.plex/buttons/more-vertical.png
+ plugin.video.plexkodiconnect/buttons/more-vertical.png
99FFFFFF
@@ -344,7 +344,7 @@
32.5
35
35
- script.plex/indicators/playing-circle.png
+ plugin.video.plexkodiconnect/indicators/playing-circle.png
FF000000
@@ -401,7 +401,7 @@
0
48
48
- script.plex/indicators/unwatched.png
+ plugin.video.plexkodiconnect/indicators/unwatched.png
313
@@ -455,9 +455,9 @@
734
101
true
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
-
false
diff --git a/resources/skins/Main/1080i/script-plex-video_player.xml b/resources/skins/Main/1080i/script-plex-video_player.xml
index fa8b0267..3aa57136 100644
--- a/resources/skins/Main/1080i/script-plex-video_player.xml
+++ b/resources/skins/Main/1080i/script-plex-video_player.xml
@@ -12,7 +12,7 @@
0
1920
1080
- $INFO[Window.Property(background)]
+ $INFO[Window.Property(background)]
!String.IsEmpty(Window.Property(post.play))
@@ -22,7 +22,7 @@
0
1920
1080
- $INFO[Window.Property(post.play.background)]
+ $INFO[Window.Property(post.play.background)]
@@ -46,7 +46,7 @@
0
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -60,7 +60,7 @@
left
center
A0FFFFFF
-
+
@@ -83,7 +83,7 @@
-45
552
349
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
0
@@ -112,14 +112,14 @@
0
76
76
- script.plex/indicators/circle-152.png
+ plugin.video.plexkodiconnect/indicators/circle-152.png
15
15
46
46
- script.plex/indicators/replay.png
+ plugin.video.plexkodiconnect/indicators/replay.png
@@ -153,7 +153,7 @@
200
400
102
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
-
@@ -171,7 +171,7 @@
left
center
FFFFFFFF
-
+
582
@@ -186,7 +186,7 @@
-45
627
393
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
0
@@ -216,21 +216,21 @@
0
152
152
- script.plex/indicators/circle-152.png
+ plugin.video.plexkodiconnect/indicators/circle-152.png
8
8
136
136
- script.plex/circle-progress/$INFO[Window.Property(countdown)].png
+ plugin.video.plexkodiconnect/circle-progress/$INFO[Window.Property(countdown)].png
59.5
57
33
38
- script.plex/indicators/pause.png
+ plugin.video.plexkodiconnect/indicators/pause.png
@@ -264,7 +264,7 @@
200
400
101
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
-
@@ -369,7 +369,7 @@
0
1920
360
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
40000000
@@ -381,7 +381,7 @@
left
center
FFFFFFFF
-
+
0
@@ -459,7 +459,7 @@
-40
389
258
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -509,7 +509,7 @@
0
309
178
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -528,7 +528,7 @@
0
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -584,7 +584,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -627,7 +627,7 @@
-40
324
441
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
5
@@ -656,7 +656,7 @@
0
244
10
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -686,7 +686,7 @@
0
254
371
- script.plex/home/selected.png
+ plugin.video.plexkodiconnect/home/selected.png
@@ -705,7 +705,7 @@
20
1800
2
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
A0000000
@@ -717,7 +717,7 @@
left
center
FFFFFFFF
-
+
0
@@ -742,14 +742,14 @@
0
244
244
- script.plex/thumb_fallbacks/role.png
+ plugin.video.plexkodiconnect/thumb_fallbacks/role.png
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -782,7 +782,7 @@
-40
334
334
- script.plex/buttons/role-shadow.png
+ plugin.video.plexkodiconnect/buttons/role-shadow.png
5
@@ -792,14 +792,14 @@
0
244
244
- script.plex/thumb_fallbacks/role.png
+ plugin.video.plexkodiconnect/thumb_fallbacks/role.png
0
0
244
244
- $INFO[ListItem.Thumb]
+ $INFO[ListItem.Thumb]
scale
@@ -819,7 +819,7 @@
0
254
254
- script.plex/buttons/role-selected.png
+ plugin.video.plexkodiconnect/buttons/role-selected.png
@@ -843,7 +843,7 @@
0
1920
135
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
C0000000
@@ -867,8 +867,8 @@
50
font12
FF000000
- script.plex/buttons/home-focus.png
- script.plex/buttons/home.png
+ plugin.video.plexkodiconnect/buttons/home-focus.png
+ plugin.video.plexkodiconnect/buttons/home.png
@@ -879,7 +879,7 @@
left
center
FFFFFFFF
-
+
40
@@ -894,8 +894,8 @@
50
font12
FF000000
- script.plex/buttons/search-focus.png
- script.plex/buttons/search.png
+ plugin.video.plexkodiconnect/buttons/search-focus.png
+ plugin.video.plexkodiconnect/buttons/search.png
@@ -917,7 +917,7 @@
FF000000
right
center
- script.plex/white-square-rounded.png
+ plugin.video.plexkodiconnect/white-square-rounded.png
-
100
0
@@ -988,9 +988,9 @@
102
240
1
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
- script.plex/white-square-1px.png
+ plugin.video.plexkodiconnect/white-square-1px.png
-
-
Player.Progress
@@ -1012,7 +1012,7 @@
54
93
30
- script.plex/home/plex.png
+ plugin.video.plexkodiconnect/home/plex.png
@@ -1025,7 +1025,7 @@
0
1920
1080
- script.plex/home/background-fallback.png
+ plugin.video.plexkodiconnect/home/background-fallback.png
0
@@ -1040,7 +1040,7 @@
0
1920
1080
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
diff --git a/resources/skins/Main/1080i/script-plex-video_settings_dialog.xml b/resources/skins/Main/1080i/script-plex-video_settings_dialog.xml
index 42803167..8156e54c 100644
--- a/resources/skins/Main/1080i/script-plex-video_settings_dialog.xml
+++ b/resources/skins/Main/1080i/script-plex-video_settings_dialog.xml
@@ -17,7 +17,7 @@
0
1920
1080
- script.plex/player-fade.png
+ plugin.video.plexkodiconnect/player-fade.png
FF080808
@@ -30,14 +30,14 @@
-40
1080
770
- script.plex/drop-shadow.png
+ plugin.video.plexkodiconnect/drop-shadow.png
0
0
1000
80
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
F21F1F1F
@@ -45,7 +45,7 @@
80
1000
610
- script.plex/white-square-top-rounded.png
+ plugin.video.plexkodiconnect/white-square-top-rounded.png
F2606060
@@ -53,7 +53,7 @@
80
400
610
- script.plex/white-square-tl-rounded.png
+ plugin.video.plexkodiconnect/white-square-tl-rounded.png
30000000
@@ -107,7 +107,7 @@
0
1000
100
- script.plex/white-square.png
+ plugin.video.plexkodiconnect/white-square.png
20
diff --git a/resources/skins/Main/media/script.plex/busy-back.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/busy-back.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/busy-back.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/busy-back.png
diff --git a/resources/skins/Main/media/script.plex/busy-diffuse.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/busy-diffuse.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/busy-diffuse.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/busy-diffuse.png
diff --git a/resources/skins/Main/media/script.plex/busy.gif b/resources/skins/Main/media/plugin.video.plexkodiconnect/busy.gif
similarity index 100%
rename from resources/skins/Main/media/script.plex/busy.gif
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/busy.gif
diff --git a/resources/skins/Main/media/script.plex/buttons/blank-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/blank-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/blank-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/blank-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/blank.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/blank.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/blank.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/blank.png
diff --git a/resources/skins/Main/media/script.plex/buttons/chapters-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/chapters-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/chapters-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/chapters-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/chapters.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/chapters.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/chapters.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/chapters.png
diff --git a/resources/skins/Main/media/script.plex/buttons/home-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/home-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/home-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/home-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/home.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/home.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/home.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/home.png
diff --git a/resources/skins/Main/media/script.plex/buttons/info-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/info-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/info-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/info-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/info.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/info.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/info.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/info.png
diff --git a/resources/skins/Main/media/script.plex/buttons/more-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/more-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/more-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/more-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/more-vertical.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/more-vertical.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/more-vertical.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/more-vertical.png
diff --git a/resources/skins/Main/media/script.plex/buttons/more.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/more.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/more.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/more.png
diff --git a/resources/skins/Main/media/script.plex/buttons/next-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/next-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/next-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/next-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/next.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/next.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/next.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/next.png
diff --git a/resources/skins/Main/media/script.plex/buttons/pause-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/pause-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/pause-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/pause-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/pause.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/pause.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/pause.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/pause.png
diff --git a/resources/skins/Main/media/script.plex/buttons/play-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/play-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/play-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/play-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/play.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/play.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/play.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/play.png
diff --git a/resources/skins/Main/media/script.plex/buttons/power.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/power.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/power.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/power.png
diff --git a/resources/skins/Main/media/script.plex/buttons/pqueue-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/pqueue-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/pqueue-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/pqueue-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/pqueue.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/pqueue.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/pqueue.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/pqueue.png
diff --git a/resources/skins/Main/media/script.plex/buttons/repeat-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/repeat-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/repeat-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/repeat-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/repeat-one-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/repeat-one-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/repeat-one-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/repeat-one-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/repeat-one.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/repeat-one.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/repeat-one.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/repeat-one.png
diff --git a/resources/skins/Main/media/script.plex/buttons/repeat.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/repeat.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/repeat.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/repeat.png
diff --git a/resources/skins/Main/media/script.plex/buttons/resume-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/resume-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/resume-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/resume-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/resume.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/resume.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/resume.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/resume.png
diff --git a/resources/skins/Main/media/script.plex/buttons/role-selected.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/role-selected.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/role-selected.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/role-selected.png
diff --git a/resources/skins/Main/media/script.plex/buttons/role-shadow.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/role-shadow.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/role-shadow.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/role-shadow.png
diff --git a/resources/skins/Main/media/script.plex/buttons/rotate-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/rotate-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/rotate-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/rotate-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/rotate.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/rotate.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/rotate.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/rotate.png
diff --git a/resources/skins/Main/media/script.plex/buttons/search-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/search-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/search-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/search-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/search.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/search.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/search.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/search.png
diff --git a/resources/skins/Main/media/script.plex/buttons/settings-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/settings-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/settings-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/settings-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/settings.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/settings.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/settings.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/settings.png
diff --git a/resources/skins/Main/media/script.plex/buttons/shuffle-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/shuffle-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/shuffle-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/shuffle-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/shuffle.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/shuffle.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/shuffle.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/shuffle.png
diff --git a/resources/skins/Main/media/script.plex/buttons/skip-forward-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/skip-forward-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/skip-forward-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/skip-forward-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/skip-forward.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/skip-forward.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/skip-forward.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/skip-forward.png
diff --git a/resources/skins/Main/media/script.plex/buttons/square2x2-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/square2x2-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/square2x2-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/square2x2-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/square2x2.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/square2x2.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/square2x2.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/square2x2.png
diff --git a/resources/skins/Main/media/script.plex/buttons/stop-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/stop-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/stop-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/stop-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/stop.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/stop.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/stop.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/stop.png
diff --git a/resources/skins/Main/media/script.plex/buttons/subtitle-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/subtitle-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/subtitle-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/subtitle-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/subtitle.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/subtitle.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/subtitle.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/subtitle.png
diff --git a/resources/skins/Main/media/script.plex/buttons/tags-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/tags-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/tags-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/tags-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/tags.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/tags.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/tags.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/tags.png
diff --git a/resources/skins/Main/media/script.plex/buttons/trailer-focus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/trailer-focus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/trailer-focus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/trailer-focus.png
diff --git a/resources/skins/Main/media/script.plex/buttons/trailer.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/trailer.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/buttons/trailer.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/buttons/trailer.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/0.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/0.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/0.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/0.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/1.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/1.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/1.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/1.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/10.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/10.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/10.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/10.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/11.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/11.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/11.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/11.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/12.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/12.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/12.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/12.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/13.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/13.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/13.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/13.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/14.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/14.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/14.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/14.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/15.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/15.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/15.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/15.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/2.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/2.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/2.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/2.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/3.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/3.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/3.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/3.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/4.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/4.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/4.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/4.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/5.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/5.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/5.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/5.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/6.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/6.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/6.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/6.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/7.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/7.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/7.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/7.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/8.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/8.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/8.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/8.png
diff --git a/resources/skins/Main/media/script.plex/circle-progress/9.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/9.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/circle-progress/9.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/circle-progress/9.png
diff --git a/resources/skins/Main/media/script.plex/drop-shadow.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/drop-shadow.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/drop-shadow.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/drop-shadow.png
diff --git a/resources/skins/Main/media/script.plex/gray-square.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/gray-square.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/gray-square.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/gray-square.png
diff --git a/resources/skins/Main/media/script.plex/home/avatar-diffuse.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/avatar-diffuse.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/avatar-diffuse.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/avatar-diffuse.png
diff --git a/resources/skins/Main/media/script.plex/home/background-fallback.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/background-fallback.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/background-fallback.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/background-fallback.png
diff --git a/resources/skins/Main/media/script.plex/home/busy.gif b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/busy.gif
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/busy.gif
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/busy.gif
diff --git a/resources/skins/Main/media/script.plex/home/device/check.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/check.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/device/check.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/check.png
diff --git a/resources/skins/Main/media/script.plex/home/device/error.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/error.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/device/error.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/error.png
diff --git a/resources/skins/Main/media/script.plex/home/device/focus-refreshing.gif b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/focus-refreshing.gif
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/device/focus-refreshing.gif
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/focus-refreshing.gif
diff --git a/resources/skins/Main/media/script.plex/home/device/focus-secure.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/focus-secure.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/device/focus-secure.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/focus-secure.png
diff --git a/resources/skins/Main/media/script.plex/home/device/focus-unknown.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/focus-unknown.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/device/focus-unknown.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/focus-unknown.png
diff --git a/resources/skins/Main/media/script.plex/home/device/focus-unreachable.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/focus-unreachable.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/device/focus-unreachable.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/focus-unreachable.png
diff --git a/resources/skins/Main/media/script.plex/home/device/lock-24px.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/lock-24px.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/device/lock-24px.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/lock-24px.png
diff --git a/resources/skins/Main/media/script.plex/home/device/lock.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/lock.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/device/lock.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/lock.png
diff --git a/resources/skins/Main/media/script.plex/home/device/plex.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/plex.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/device/plex.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/plex.png
diff --git a/resources/skins/Main/media/script.plex/home/device/refreshing.gif b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/refreshing.gif
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/device/refreshing.gif
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/refreshing.gif
diff --git a/resources/skins/Main/media/script.plex/home/device/secure.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/secure.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/device/secure.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/secure.png
diff --git a/resources/skins/Main/media/script.plex/home/device/unknown.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/unknown.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/device/unknown.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/unknown.png
diff --git a/resources/skins/Main/media/script.plex/home/device/unreachable.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/unreachable.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/device/unreachable.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/device/unreachable.png
diff --git a/resources/skins/Main/media/script.plex/home/plex.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/plex.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/plex.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/plex.png
diff --git a/resources/skins/Main/media/script.plex/home/selected-section.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/selected-section.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/selected-section.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/selected-section.png
diff --git a/resources/skins/Main/media/script.plex/home/selected.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/selected.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/selected.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/selected.png
diff --git a/resources/skins/Main/media/script.plex/home/type/artist.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/artist.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/type/artist.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/artist.png
diff --git a/resources/skins/Main/media/script.plex/home/type/channels.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/channels.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/type/channels.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/channels.png
diff --git a/resources/skins/Main/media/script.plex/home/type/home-selected.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/home-selected.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/type/home-selected.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/home-selected.png
diff --git a/resources/skins/Main/media/script.plex/home/type/home.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/home.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/type/home.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/home.png
diff --git a/resources/skins/Main/media/script.plex/home/type/movie.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/movie.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/type/movie.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/movie.png
diff --git a/resources/skins/Main/media/script.plex/home/type/photo.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/photo.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/type/photo.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/photo.png
diff --git a/resources/skins/Main/media/script.plex/home/type/playlists.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/playlists.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/type/playlists.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/playlists.png
diff --git a/resources/skins/Main/media/script.plex/home/type/show.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/show.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/home/type/show.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/home/type/show.png
diff --git a/resources/skins/Main/media/script.plex/indicators/arrow-down.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/arrow-down.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/arrow-down.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/arrow-down.png
diff --git a/resources/skins/Main/media/script.plex/indicators/arrow-up.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/arrow-up.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/arrow-up.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/arrow-up.png
diff --git a/resources/skins/Main/media/script.plex/indicators/busy-photo.gif b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/busy-photo.gif
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/busy-photo.gif
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/busy-photo.gif
diff --git a/resources/skins/Main/media/script.plex/indicators/camera.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/camera.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/camera.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/camera.png
diff --git a/resources/skins/Main/media/script.plex/indicators/chevron-white.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/chevron-white.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/chevron-white.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/chevron-white.png
diff --git a/resources/skins/Main/media/script.plex/indicators/circle-152.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/circle-152.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/circle-152.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/circle-152.png
diff --git a/resources/skins/Main/media/script.plex/indicators/circle-19.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/circle-19.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/circle-19.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/circle-19.png
diff --git a/resources/skins/Main/media/script.plex/indicators/cornerbox.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/cornerbox.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/cornerbox.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/cornerbox.png
diff --git a/resources/skins/Main/media/script.plex/indicators/dropdown-triangle.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/dropdown-triangle.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/dropdown-triangle.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/dropdown-triangle.png
diff --git a/resources/skins/Main/media/script.plex/indicators/info-sep.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/info-sep.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/info-sep.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/info-sep.png
diff --git a/resources/skins/Main/media/script.plex/indicators/pause.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/pause.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/pause.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/pause.png
diff --git a/resources/skins/Main/media/script.plex/indicators/player-selection-time.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/player-selection-time.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/player-selection-time.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/player-selection-time.png
diff --git a/resources/skins/Main/media/script.plex/indicators/player-selection-time_arrow.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/player-selection-time_arrow.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/player-selection-time_arrow.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/player-selection-time_arrow.png
diff --git a/resources/skins/Main/media/script.plex/indicators/player-selection-time_box.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/player-selection-time_box.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/player-selection-time_box.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/player-selection-time_box.png
diff --git a/resources/skins/Main/media/script.plex/indicators/playing-circle.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/playing-circle.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/playing-circle.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/playing-circle.png
diff --git a/resources/skins/Main/media/script.plex/indicators/remove.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/remove.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/remove.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/remove.png
diff --git a/resources/skins/Main/media/script.plex/indicators/replay.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/replay.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/replay.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/replay.png
diff --git a/resources/skins/Main/media/script.plex/indicators/seek-selection-marker.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/seek-selection-marker.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/seek-selection-marker.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/seek-selection-marker.png
diff --git a/resources/skins/Main/media/script.plex/indicators/spinner.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/spinner.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/spinner.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/spinner.png
diff --git a/resources/skins/Main/media/script.plex/indicators/unwatched-rounded.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/unwatched-rounded.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/unwatched-rounded.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/unwatched-rounded.png
diff --git a/resources/skins/Main/media/script.plex/indicators/unwatched.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/unwatched.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/indicators/unwatched.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/indicators/unwatched.png
diff --git a/resources/skins/Main/media/script.plex/masks/listview-16x9-backgroundmask.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/masks/listview-16x9-backgroundmask.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/masks/listview-16x9-backgroundmask.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/masks/listview-16x9-backgroundmask.png
diff --git a/resources/skins/Main/media/script.plex/masks/role.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/masks/role.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/masks/role.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/masks/role.png
diff --git a/resources/skins/Main/media/script.plex/player-fade.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/player-fade.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/player-fade.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/player-fade.png
diff --git a/resources/skins/Main/media/script.plex/progress/0.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/0.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/0.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/0.png
diff --git a/resources/skins/Main/media/script.plex/progress/10.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/10.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/10.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/10.png
diff --git a/resources/skins/Main/media/script.plex/progress/100.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/100.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/100.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/100.png
diff --git a/resources/skins/Main/media/script.plex/progress/12.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/12.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/12.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/12.png
diff --git a/resources/skins/Main/media/script.plex/progress/14.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/14.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/14.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/14.png
diff --git a/resources/skins/Main/media/script.plex/progress/16.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/16.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/16.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/16.png
diff --git a/resources/skins/Main/media/script.plex/progress/18.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/18.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/18.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/18.png
diff --git a/resources/skins/Main/media/script.plex/progress/2.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/2.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/2.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/2.png
diff --git a/resources/skins/Main/media/script.plex/progress/20.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/20.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/20.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/20.png
diff --git a/resources/skins/Main/media/script.plex/progress/22.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/22.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/22.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/22.png
diff --git a/resources/skins/Main/media/script.plex/progress/24.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/24.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/24.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/24.png
diff --git a/resources/skins/Main/media/script.plex/progress/26.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/26.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/26.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/26.png
diff --git a/resources/skins/Main/media/script.plex/progress/28.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/28.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/28.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/28.png
diff --git a/resources/skins/Main/media/script.plex/progress/30.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/30.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/30.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/30.png
diff --git a/resources/skins/Main/media/script.plex/progress/32.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/32.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/32.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/32.png
diff --git a/resources/skins/Main/media/script.plex/progress/34.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/34.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/34.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/34.png
diff --git a/resources/skins/Main/media/script.plex/progress/36.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/36.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/36.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/36.png
diff --git a/resources/skins/Main/media/script.plex/progress/38.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/38.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/38.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/38.png
diff --git a/resources/skins/Main/media/script.plex/progress/4.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/4.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/4.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/4.png
diff --git a/resources/skins/Main/media/script.plex/progress/40.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/40.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/40.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/40.png
diff --git a/resources/skins/Main/media/script.plex/progress/42.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/42.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/42.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/42.png
diff --git a/resources/skins/Main/media/script.plex/progress/44.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/44.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/44.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/44.png
diff --git a/resources/skins/Main/media/script.plex/progress/46.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/46.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/46.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/46.png
diff --git a/resources/skins/Main/media/script.plex/progress/48.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/48.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/48.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/48.png
diff --git a/resources/skins/Main/media/script.plex/progress/50.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/50.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/50.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/50.png
diff --git a/resources/skins/Main/media/script.plex/progress/52.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/52.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/52.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/52.png
diff --git a/resources/skins/Main/media/script.plex/progress/54.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/54.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/54.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/54.png
diff --git a/resources/skins/Main/media/script.plex/progress/56.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/56.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/56.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/56.png
diff --git a/resources/skins/Main/media/script.plex/progress/58.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/58.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/58.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/58.png
diff --git a/resources/skins/Main/media/script.plex/progress/6.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/6.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/6.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/6.png
diff --git a/resources/skins/Main/media/script.plex/progress/60.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/60.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/60.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/60.png
diff --git a/resources/skins/Main/media/script.plex/progress/62.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/62.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/62.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/62.png
diff --git a/resources/skins/Main/media/script.plex/progress/64.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/64.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/64.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/64.png
diff --git a/resources/skins/Main/media/script.plex/progress/66.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/66.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/66.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/66.png
diff --git a/resources/skins/Main/media/script.plex/progress/68.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/68.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/68.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/68.png
diff --git a/resources/skins/Main/media/script.plex/progress/70.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/70.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/70.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/70.png
diff --git a/resources/skins/Main/media/script.plex/progress/72.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/72.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/72.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/72.png
diff --git a/resources/skins/Main/media/script.plex/progress/74.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/74.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/74.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/74.png
diff --git a/resources/skins/Main/media/script.plex/progress/76.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/76.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/76.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/76.png
diff --git a/resources/skins/Main/media/script.plex/progress/78.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/78.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/78.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/78.png
diff --git a/resources/skins/Main/media/script.plex/progress/8.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/8.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/8.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/8.png
diff --git a/resources/skins/Main/media/script.plex/progress/80.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/80.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/80.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/80.png
diff --git a/resources/skins/Main/media/script.plex/progress/82.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/82.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/82.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/82.png
diff --git a/resources/skins/Main/media/script.plex/progress/84.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/84.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/84.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/84.png
diff --git a/resources/skins/Main/media/script.plex/progress/86.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/86.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/86.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/86.png
diff --git a/resources/skins/Main/media/script.plex/progress/88.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/88.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/88.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/88.png
diff --git a/resources/skins/Main/media/script.plex/progress/90.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/90.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/90.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/90.png
diff --git a/resources/skins/Main/media/script.plex/progress/92.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/92.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/92.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/92.png
diff --git a/resources/skins/Main/media/script.plex/progress/94.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/94.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/94.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/94.png
diff --git a/resources/skins/Main/media/script.plex/progress/96.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/96.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/96.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/96.png
diff --git a/resources/skins/Main/media/script.plex/progress/98.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/progress/98.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/progress/98.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/progress/98.png
diff --git a/resources/skins/Main/media/script.plex/ratings/imdb/image.rating.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/imdb/image.rating.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/ratings/imdb/image.rating.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/imdb/image.rating.png
diff --git a/resources/skins/Main/media/script.plex/ratings/other/image.rating.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/other/image.rating.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/ratings/other/image.rating.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/other/image.rating.png
diff --git a/resources/skins/Main/media/script.plex/ratings/rottentomatoes/image.rating.certified.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/rottentomatoes/image.rating.certified.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/ratings/rottentomatoes/image.rating.certified.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/rottentomatoes/image.rating.certified.png
diff --git a/resources/skins/Main/media/script.plex/ratings/rottentomatoes/image.rating.plus.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/rottentomatoes/image.rating.plus.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/ratings/rottentomatoes/image.rating.plus.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/rottentomatoes/image.rating.plus.png
diff --git a/resources/skins/Main/media/script.plex/ratings/rottentomatoes/image.rating.ripe.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/rottentomatoes/image.rating.ripe.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/ratings/rottentomatoes/image.rating.ripe.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/rottentomatoes/image.rating.ripe.png
diff --git a/resources/skins/Main/media/script.plex/ratings/rottentomatoes/image.rating.rotten.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/rottentomatoes/image.rating.rotten.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/ratings/rottentomatoes/image.rating.rotten.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/rottentomatoes/image.rating.rotten.png
diff --git a/resources/skins/Main/media/script.plex/ratings/rottentomatoes/image.rating.spilled.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/rottentomatoes/image.rating.spilled.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/ratings/rottentomatoes/image.rating.spilled.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/rottentomatoes/image.rating.spilled.png
diff --git a/resources/skins/Main/media/script.plex/ratings/rottentomatoes/image.rating.upright.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/rottentomatoes/image.rating.upright.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/ratings/rottentomatoes/image.rating.upright.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/rottentomatoes/image.rating.upright.png
diff --git a/resources/skins/Main/media/script.plex/ratings/tmdb/image.rating.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/tmdb/image.rating.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/ratings/tmdb/image.rating.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/ratings/tmdb/image.rating.png
diff --git a/resources/skins/Main/media/script.plex/section_type/movie.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/section_type/movie.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/section_type/movie.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/section_type/movie.png
diff --git a/resources/skins/Main/media/script.plex/section_type/music.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/section_type/music.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/section_type/music.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/section_type/music.png
diff --git a/resources/skins/Main/media/script.plex/section_type/photo.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/section_type/photo.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/section_type/photo.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/section_type/photo.png
diff --git a/resources/skins/Main/media/script.plex/section_type/show.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/section_type/show.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/section_type/show.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/section_type/show.png
diff --git a/resources/skins/Main/media/script.plex/settings/checkbox.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/settings/checkbox.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/settings/checkbox.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/settings/checkbox.png
diff --git a/resources/skins/Main/media/script.plex/settings/checkmark.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/settings/checkmark.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/settings/checkmark.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/settings/checkmark.png
diff --git a/resources/skins/Main/media/script.plex/settings/expanded.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/settings/expanded.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/settings/expanded.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/settings/expanded.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/back.jpg b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/back.jpg
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/back.jpg
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/back.jpg
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/0.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/0.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/0.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/0.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/1.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/1.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/1.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/1.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/2.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/2.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/2.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/2.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/3.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/3.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/3.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/3.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/4.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/4.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/4.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/4.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/5.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/5.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/5.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/5.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/6.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/6.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/6.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/6.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/7.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/7.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/7.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/7.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/8.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/8.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/8.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/8.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/9.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/9.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/9.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/9.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/A.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/A.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/A.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/A.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/B.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/B.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/B.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/B.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/C.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/C.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/C.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/C.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/D.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/D.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/D.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/D.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/E.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/E.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/E.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/E.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/F.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/F.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/F.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/F.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/G.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/G.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/G.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/G.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/H.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/H.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/H.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/H.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/I.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/I.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/I.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/I.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/J.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/J.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/J.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/J.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/K.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/K.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/K.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/K.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/L.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/L.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/L.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/L.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/M.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/M.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/M.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/M.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/N.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/N.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/N.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/N.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/O.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/O.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/O.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/O.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/P.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/P.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/P.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/P.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/Q.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/Q.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/Q.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/Q.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/R.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/R.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/R.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/R.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/S.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/S.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/S.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/S.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/T.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/T.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/T.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/T.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/U.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/U.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/U.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/U.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/V.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/V.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/V.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/V.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/W.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/W.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/W.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/W.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/X.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/X.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/X.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/X.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/Y.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/Y.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/Y.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/Y.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/digits/Z.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/Z.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/digits/Z.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/digits/Z.png
diff --git a/resources/skins/Main/media/script.plex/sign_in/generating-code.jpg b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/generating-code.jpg
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/generating-code.jpg
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/generating-code.jpg
diff --git a/resources/skins/Main/media/script.plex/sign_in/linking-account.jpg b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/linking-account.jpg
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/linking-account.jpg
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/linking-account.jpg
diff --git a/resources/skins/Main/media/script.plex/sign_in/pin-display.jpg b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/pin-display.jpg
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/pin-display.jpg
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/pin-display.jpg
diff --git a/resources/skins/Main/media/script.plex/sign_in/plexpass.jpg b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/plexpass.jpg
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/plexpass.jpg
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/plexpass.jpg
diff --git a/resources/skins/Main/media/script.plex/sign_in/pre-signin.jpg b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/pre-signin.jpg
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/pre-signin.jpg
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/pre-signin.jpg
diff --git a/resources/skins/Main/media/script.plex/sign_in/refresh-code.jpg b/resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/refresh-code.jpg
similarity index 100%
rename from resources/skins/Main/media/script.plex/sign_in/refresh-code.jpg
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/sign_in/refresh-code.jpg
diff --git a/resources/skins/Main/media/script.plex/splash.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/splash.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/splash.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/splash.png
diff --git a/resources/skins/Main/media/script.plex/square-rounded-shadow.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/square-rounded-shadow.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/square-rounded-shadow.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/square-rounded-shadow.png
diff --git a/resources/skins/Main/media/script.plex/stars/0.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/stars/0.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/stars/0.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/stars/0.png
diff --git a/resources/skins/Main/media/script.plex/stars/1.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/stars/1.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/stars/1.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/stars/1.png
diff --git a/resources/skins/Main/media/script.plex/stars/2.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/stars/2.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/stars/2.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/stars/2.png
diff --git a/resources/skins/Main/media/script.plex/stars/3.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/stars/3.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/stars/3.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/stars/3.png
diff --git a/resources/skins/Main/media/script.plex/stars/4.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/stars/4.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/stars/4.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/stars/4.png
diff --git a/resources/skins/Main/media/script.plex/stars/5.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/stars/5.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/stars/5.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/stars/5.png
diff --git a/resources/skins/Main/media/script.plex/thumb_fallbacks/broken-photo-thumb.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/broken-photo-thumb.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/thumb_fallbacks/broken-photo-thumb.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/broken-photo-thumb.png
diff --git a/resources/skins/Main/media/script.plex/thumb_fallbacks/broken-photo.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/broken-photo.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/thumb_fallbacks/broken-photo.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/broken-photo.png
diff --git a/resources/skins/Main/media/script.plex/thumb_fallbacks/movie.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/movie.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/thumb_fallbacks/movie.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/movie.png
diff --git a/resources/skins/Main/media/script.plex/thumb_fallbacks/movie16x9.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/movie16x9.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/thumb_fallbacks/movie16x9.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/movie16x9.png
diff --git a/resources/skins/Main/media/script.plex/thumb_fallbacks/music.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/music.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/thumb_fallbacks/music.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/music.png
diff --git a/resources/skins/Main/media/script.plex/thumb_fallbacks/photo.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/photo.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/thumb_fallbacks/photo.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/photo.png
diff --git a/resources/skins/Main/media/script.plex/thumb_fallbacks/role.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/role.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/thumb_fallbacks/role.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/role.png
diff --git a/resources/skins/Main/media/script.plex/thumb_fallbacks/show.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/show.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/thumb_fallbacks/show.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/thumb_fallbacks/show.png
diff --git a/resources/skins/Main/media/script.plex/transparent-6px.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/transparent-6px.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/transparent-6px.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/transparent-6px.png
diff --git a/resources/skins/Main/media/script.plex/user_select/admin-back.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/admin-back.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/user_select/admin-back.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/admin-back.png
diff --git a/resources/skins/Main/media/script.plex/user_select/admin-icon.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/admin-icon.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/user_select/admin-icon.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/admin-icon.png
diff --git a/resources/skins/Main/media/script.plex/user_select/avatar-background.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/avatar-background.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/user_select/avatar-background.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/avatar-background.png
diff --git a/resources/skins/Main/media/script.plex/user_select/avatar-diffuse.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/avatar-diffuse.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/user_select/avatar-diffuse.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/avatar-diffuse.png
diff --git a/resources/skins/Main/media/script.plex/user_select/backspace.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/backspace.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/user_select/backspace.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/backspace.png
diff --git a/resources/skins/Main/media/script.plex/user_select/backspace_nf.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/backspace_nf.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/user_select/backspace_nf.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/backspace_nf.png
diff --git a/resources/skins/Main/media/script.plex/user_select/item-background-bottom.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/item-background-bottom.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/user_select/item-background-bottom.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/item-background-bottom.png
diff --git a/resources/skins/Main/media/script.plex/user_select/item-background-top.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/item-background-top.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/user_select/item-background-top.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/item-background-top.png
diff --git a/resources/skins/Main/media/script.plex/user_select/item-background.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/item-background.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/user_select/item-background.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/item-background.png
diff --git a/resources/skins/Main/media/script.plex/user_select/plex.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/plex.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/user_select/plex.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/plex.png
diff --git a/resources/skins/Main/media/script.plex/user_select/protected-back.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/protected-back.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/user_select/protected-back.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/protected-back.png
diff --git a/resources/skins/Main/media/script.plex/user_select/protected-icon.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/protected-icon.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/user_select/protected-icon.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/user_select/protected-icon.png
diff --git a/resources/skins/Main/media/script.plex/white-outline-rounded.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/white-outline-rounded.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/white-outline-rounded.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/white-outline-rounded.png
diff --git a/resources/skins/Main/media/script.plex/white-square-1px.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-1px.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/white-square-1px.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-1px.png
diff --git a/resources/skins/Main/media/script.plex/white-square-6px.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-6px.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/white-square-6px.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-6px.png
diff --git a/resources/skins/Main/media/script.plex/white-square-left-rounded.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-left-rounded.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/white-square-left-rounded.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-left-rounded.png
diff --git a/resources/skins/Main/media/script.plex/white-square-rounded-4r.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-rounded-4r.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/white-square-rounded-4r.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-rounded-4r.png
diff --git a/resources/skins/Main/media/script.plex/white-square-rounded-top-padded.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/white-square-rounded-top-padded.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-rounded-top-padded.png
diff --git a/resources/skins/Main/media/script.plex/white-square-rounded-with-shadow.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/white-square-rounded-with-shadow.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-rounded-with-shadow.png
diff --git a/resources/skins/Main/media/script.plex/white-square-rounded.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-rounded.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/white-square-rounded.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-rounded.png
diff --git a/resources/skins/Main/media/script.plex/white-square-tl-rounded.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-tl-rounded.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/white-square-tl-rounded.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-tl-rounded.png
diff --git a/resources/skins/Main/media/script.plex/white-square-top-rounded.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-top-rounded.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/white-square-top-rounded.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/white-square-top-rounded.png
diff --git a/resources/skins/Main/media/script.plex/white-square.png b/resources/skins/Main/media/plugin.video.plexkodiconnect/white-square.png
similarity index 100%
rename from resources/skins/Main/media/script.plex/white-square.png
rename to resources/skins/Main/media/plugin.video.plexkodiconnect/white-square.png