1.3.3 preliminary
This commit is contained in:
parent
6ba56494eb
commit
82370b8657
|
@ -184,6 +184,7 @@
|
|||
<label>$INFO[System.Time]</label>
|
||||
</control>
|
||||
<control type="label">
|
||||
<visible>$EXP[hasWeather]</visible>
|
||||
<posx>0</posx>
|
||||
<posy>1-row</posy>
|
||||
<width>24-col</width>
|
||||
|
@ -194,6 +195,18 @@
|
|||
<shadowcolor>44000000</shadowcolor>
|
||||
<label>$INFO[System.Date(DDD)] [B]$INFO[System.Date(dd)][/B] $INFO[System.Date(MMM)] [B]$INFO[weather.temperature][/B] [CAPITALIZE]$INFO[weather.conditions][/CAPITALIZE]</label>
|
||||
</control>
|
||||
<control type="label">
|
||||
<visible>!$EXP[hasWeather]</visible>
|
||||
<posx>0</posx>
|
||||
<posy>1-row</posy>
|
||||
<width>24-col</width>
|
||||
<height>2-row</height>
|
||||
<font>regular</font>
|
||||
<align>center</align>
|
||||
<textcolor>textActive</textcolor>
|
||||
<shadowcolor>44000000</shadowcolor>
|
||||
<label>$INFO[System.Date(DDD)] [B]$INFO[System.Date(dd)][/B] $INFO[System.Date(MMM)]</label>
|
||||
</control>
|
||||
</control>
|
||||
<!--now playing music-->
|
||||
<control type="group">
|
||||
|
|
|
@ -43,6 +43,9 @@
|
|||
<expression name="isMusicSong">container.content(songs) + Substring(Container.folderpath,musicdb://)</expression>
|
||||
<expression name="isMusicPlaylist">container.content(songs) + [Substring(Container.folderpath,.xsp) | Substring(Container.foldername,PartyMode) | Substring(Container.folderpath,playlistmusic://)]</expression>
|
||||
|
||||
<!--weather-->
|
||||
<expression name="hasWeather">!isempty(Window(Weather).Property(WeatherProvider)) + !String.isempty(weather.temperature) + !String.isempty(weather.conditions)</expression>
|
||||
|
||||
<!--item fanart-->
|
||||
<include name="itemFanart">
|
||||
<control type="wraplist" id="99999">
|
||||
|
|
|
@ -70,27 +70,27 @@
|
|||
<bordersize>0</bordersize>
|
||||
<colordiffuse>textboxInactive</colordiffuse>
|
||||
</control>
|
||||
<control type="image">
|
||||
<visible>ListItem.IsPlaying + !player.paused + !System.Platform.Linux.RaspberryPi + !Skin.HasSetting(lowPowerMode)</visible>
|
||||
<posx>12</posx>
|
||||
<posy>0</posy>
|
||||
<width>1-col-gutter</width>
|
||||
<height>1-col-gutter</height>
|
||||
<texture>equaliser.gif</texture>
|
||||
</control>
|
||||
<control type="label">
|
||||
<visible>ListItem.IsPlaying + !player.paused + [System.Platform.Linux.RaspberryPi | Skin.HasSetting(lowPowerMode)]</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="image">
|
||||
<visible>ListItem.IsPlaying + !player.paused + !System.Platform.Linux.RaspberryPi</visible>
|
||||
<posx>12</posx>
|
||||
<posy>0</posy>
|
||||
<width>1-col-gutter</width>
|
||||
<height>1-col-gutter</height>
|
||||
<texture>equaliser.gif</texture>
|
||||
</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">
|
||||
<visible>ListItem.IsPlaying + player.paused</visible>
|
||||
<posx>0</posx>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<addon id="skin.pellucid" version="1.3.2" name="Pellucid" provider-name="theDeadman">
|
||||
<addon id="skin.pellucid" version="1.3.3" name="Pellucid" provider-name="theDeadman">
|
||||
<requires>
|
||||
<import addon="xbmc.gui" version="5.12.0"/>
|
||||
<import addon="script.skinshortcuts" version="1.0.13"/>
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
**Changelog**
|
||||
|
||||
[V1.3.3]
|
||||
- [FIXED] Weather label showing on homescreen even if no weather plugin enabled.
|
||||
- Minor tweaks
|
||||
|
||||
[V1.3.2]
|
||||
- [NEW] font support for Hebrew (thanks Arthurvaverko)
|
||||
- [FIXED] Mute icon (thanks Arthurvaverko)
|
||||
|
|
Loading…
Reference in New Issue