Bug fixes from Jarvis

This commit is contained in:
chrisbevan 2016-07-31 17:54:14 +01:00
parent b4e76f242e
commit a10fc16eb7
7 changed files with 108 additions and 8 deletions

View File

@ -2,12 +2,15 @@
<includes> <includes>
<include name="homeBackground"> <include name="homeBackground">
<control type="group"> <control type="group">
<animation type="conditional" condition="true" loop="true"> <animation type="conditional" condition="!Skin.HasSetting(lowPowerMode)" loop="true">
<effect type="fade" start="0" end="100" time="5000"/> <effect type="fade" start="0" end="100" time="5000"/>
<effect type="zoom" start="80" end="130" time="10000" tween="sine" easing="out"/> <effect type="zoom" start="80" end="130" time="10000" tween="sine" easing="out"/>
<effect type="slide" start="0,0" end="-450,0" center="0" delay="0" time="20000" tween="sine" easing="in"/> <effect type="slide" start="0,0" end="-450,0" center="0" delay="0" time="20000" tween="sine" easing="in"/>
<effect type="zoom" start="130" end="100" delay="12000" time="8000" tween="sine" easing="in"/> <effect type="zoom" start="130" end="100" delay="12000" time="8000" tween="sine" easing="in"/>
<effect type="fade" start="100" end="0" time="3000" delay="16000"/> <effect type="fade" start="100" end="0" time="3000" delay="16000"/>
</animation>
<animation type="conditional" condition="Skin.HasSetting(lowPowerMode)">
<effect type="fade" start="0" end="100" time="5000"/>
</animation> </animation>
<!--library based thumbs--> <!--library based thumbs-->
<control type="panel" id="9451"> <control type="panel" id="9451">
@ -127,7 +130,7 @@
</control> </control>
<!--settings--> <!--settings-->
<control type="image"> <control type="image">
<visible>Container(9000).HasFocus(7)</visible> <visible>Container(9000).HasFocus(7) | Container(9000).HasFocus(11)</visible>
<include>dimensionsFullscreen</include> <include>dimensionsFullscreen</include>
<texture>special://skin/extras/backgrounds/settings.jpg</texture> <texture>special://skin/extras/backgrounds/settings.jpg</texture>
<colordiffuse>44ffffff</colordiffuse> <colordiffuse>44ffffff</colordiffuse>

View File

@ -76,6 +76,30 @@
<!--dateTime--> <!--dateTime-->
<include>dateTime</include> <include>dateTime</include>
<!--mini player window-->
<control type="group">
<visible>Player.HasVideo</visible>
<posx>col-20-begin</posx>
<posy>row-22-begin</posy>
<control type="image">
<posx>0</posx>
<posy>0</posy>
<width>444</width>
<height>255</height>
<aspectratio>stretch</aspectratio>
<texture>colors/black.png</texture>
<bordertexture border="6" colordiffuse="overlay">colors/black.png</bordertexture>
<bordersize>6</bordersize>
<colordiffuse>overlay</colordiffuse>
</control>
<control type="videowindow">
<posx>6</posx>
<posy>6</posy>
<width>6-col</width>
<height>243</height>
</control>
</control>
</control> </control>
<!--hub menu--> <!--hub menu-->

View File

@ -35,13 +35,26 @@
<colordiffuse>overlay</colordiffuse> <colordiffuse>overlay</colordiffuse>
</control> </control>
<control type="image"> <control type="image">
<visible>ListItem.IsPlaying + !player.paused</visible> <visible>ListItem.IsPlaying + !player.paused + !System.Platform.Linux.RaspberryPi</visible>
<posx>12</posx> <posx>12</posx>
<posy>0</posy> <posy>0</posy>
<width>1-col-gutter</width> <width>1-col-gutter</width>
<height>1-col-gutter</height> <height>1-col-gutter</height>
<texture>equaliser.gif</texture> <texture>equaliser.gif</texture>
</control> </control>
<control type="label">
<visible>ListItem.IsPlaying + !player.paused + System.Platform.Linux.RaspberryPi</visible>
<posx>0</posx>
<posy>0</posy>
<width>1-col-textbox</width>
<height>2-row</height>
<align>center</align>
<aligny>center</aligny>
<font>symbolLarge</font>
<textcolor>textActive</textcolor>
<shadowcolor>-</shadowcolor>
<label></label>
</control>
<control type="label"> <control type="label">
<visible>ListItem.IsPlaying + player.paused</visible> <visible>ListItem.IsPlaying + player.paused</visible>
<posx>0</posx> <posx>0</posx>
@ -120,7 +133,7 @@
<colordiffuse>highlight</colordiffuse> <colordiffuse>highlight</colordiffuse>
</control> </control>
<control type="image"> <control type="image">
<visible>ListItem.IsPlaying + !player.paused</visible> <visible>ListItem.IsPlaying + !player.paused + !System.Platform.Linux.RaspberryPi</visible>
<posx>12</posx> <posx>12</posx>
<posy>0</posy> <posy>0</posy>
<width>1-col-gutter</width> <width>1-col-gutter</width>
@ -131,6 +144,23 @@
<effect type="rotatey" end="360" center="33" tween="back" easing="out" time="1000"/> <effect type="rotatey" end="360" center="33" tween="back" easing="out" time="1000"/>
</animation> </animation>
</control> </control>
<control type="label">
<visible>ListItem.IsPlaying + !player.paused + System.Platform.Linux.RaspberryPi</visible>
<posx>0</posx>
<posy>0</posy>
<width>1-col-textbox</width>
<height>2-row</height>
<align>center</align>
<aligny>center</aligny>
<font>symbolLarge</font>
<textcolor>textActive</textcolor>
<shadowcolor>-</shadowcolor>
<label></label>
<animation type="focus" loop="false" reversible="false">
<effect type="fade" time="500"/>
<effect type="rotatey" end="360" center="33" tween="back" easing="out" time="1000"/>
</animation>
</control>
<control type="label"> <control type="label">
<visible>ListItem.IsPlaying + player.paused</visible> <visible>ListItem.IsPlaying + player.paused</visible>
<posx>0</posx> <posx>0</posx>

View File

@ -87,13 +87,26 @@
<colordiffuse>textboxInactive</colordiffuse> <colordiffuse>textboxInactive</colordiffuse>
</control> </control>
<control type="image"> <control type="image">
<visible>ListItem.IsPlaying + !player.paused</visible> <visible>ListItem.IsPlaying + !player.paused + !System.Platform.Linux.RaspberryPi</visible>
<posx>12</posx> <posx>12</posx>
<posy>0</posy> <posy>0</posy>
<width>1-col-gutter</width> <width>1-col-gutter</width>
<height>1-col-gutter</height> <height>1-col-gutter</height>
<texture>equaliser.gif</texture> <texture>equaliser.gif</texture>
</control> </control>
<control type="label">
<visible>ListItem.IsPlaying + !player.paused + System.Platform.Linux.RaspberryPi</visible>
<posx>0</posx>
<posy>0</posy>
<width>1-col-textbox</width>
<height>2-row</height>
<align>center</align>
<aligny>center</aligny>
<font>symbolLarge</font>
<textcolor>textActive</textcolor>
<shadowcolor>-</shadowcolor>
<label></label>
</control>
<control type="label"> <control type="label">
<visible>ListItem.IsPlaying + player.paused</visible> <visible>ListItem.IsPlaying + player.paused</visible>
<posx>0</posx> <posx>0</posx>
@ -189,13 +202,26 @@
<include>spinFocusIcon</include> <include>spinFocusIcon</include>
</control> </control>
<control type="image"> <control type="image">
<visible>ListItem.IsPlaying + !player.paused</visible> <visible>ListItem.IsPlaying + !player.paused + !System.Platform.Linux.RaspberryPi</visible>
<posx>12</posx> <posx>12</posx>
<posy>0</posy> <posy>0</posy>
<width>1-col-gutter</width> <width>1-col-gutter</width>
<height>1-col-gutter</height> <height>1-col-gutter</height>
<texture>equaliser.gif</texture> <texture>equaliser.gif</texture>
</control> </control>
<control type="label">
<visible>ListItem.IsPlaying + !player.paused + System.Platform.Linux.RaspberryPi</visible>
<posx>0</posx>
<posy>0</posy>
<width>1-col-textbox</width>
<height>2-row</height>
<align>center</align>
<aligny>center</aligny>
<font>symbolLarge</font>
<textcolor>textActive</textcolor>
<shadowcolor>-</shadowcolor>
<label></label>
</control>
<control type="label"> <control type="label">
<visible>ListItem.IsPlaying + player.paused</visible> <visible>ListItem.IsPlaying + player.paused</visible>
<posx>0</posx> <posx>0</posx>

View File

@ -19,13 +19,26 @@
<colordiffuse>highlight</colordiffuse> <colordiffuse>highlight</colordiffuse>
</control> </control>
<control type="image"> <control type="image">
<visible>!player.paused</visible> <visible>!player.paused + !System.Platform.Linux.RaspberryPi</visible>
<posx>12</posx> <posx>12</posx>
<posy>0</posy> <posy>0</posy>
<width>1-col-gutter</width> <width>1-col-gutter</width>
<height>1-col-gutter</height> <height>1-col-gutter</height>
<texture>equaliser.gif</texture> <texture>equaliser.gif</texture>
</control> </control>
<control type="label">
<visible>!player.paused + System.Platform.Linux.RaspberryPi</visible>
<posx>3</posx>
<posy>0</posy>
<width>1-col-textbox</width>
<height>2-row</height>
<align>center</align>
<aligny>center</aligny>
<font>symbolLarge</font>
<textcolor>textActive</textcolor>
<shadowcolor>-</shadowcolor>
<label></label>
</control>
<control type="label"> <control type="label">
<visible>player.paused</visible> <visible>player.paused</visible>
<posx>3</posx> <posx>3</posx>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<addon id="skin.pellucid" version="1.1.0" name="Pellucid" provider-name="theDeadman"> <addon id="skin.pellucid" version="1.1.1" name="Pellucid" provider-name="theDeadman">
<requires> <requires>
<import addon="xbmc.gui" version="5.12.0"/> <import addon="xbmc.gui" version="5.12.0"/>
<import addon="script.skin.helper.service" version="1.0.0"/> <import addon="script.skin.helper.service" version="1.0.0"/>

View File

@ -1,3 +1,7 @@
[B]1.1.1[/B]
- [NEW] RPI bugfixes from Jarvis branch
[B]1.1.0[/B] [B]1.1.0[/B]
***Preparing for Krypton*** ***Preparing for Krypton***