a33ce8bd57
* Add TV Episode Shuffle * Reuse playback info * Get Subtitle Popup working * Get Subtitle Popup working * Get Resume/Restart popup working * Playlist poster, bug fixes * Remove commented out code * Start from beginning if playing queue * Fix Playback Info issue * Remove optional chaining to fix formatter * Fix playlist content list. Code cleanup. * Remove commented out code
40 lines
2.0 KiB
XML
40 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<component name="TVShowDetails" extends="JFGroup">
|
|
<children>
|
|
<LayoutGroup id="toplevel" layoutDirection="vert" itemSpacings="[-10]">
|
|
<LayoutGroup id="main_group" layoutDirection="horiz" itemSpacings="[15]">
|
|
<Poster id="tvshowPoster" width="300" height="450">
|
|
<Rectangle id="unplayedCount" visible="false" width="90" height="60" color="#00a4dcFF" translation="[210, 0]">
|
|
<Label id="unplayedEpisodeCount" width="90" height="60" font="font:SmallestBoldSystemFont" horizAlign="center" vertAlign="center" />
|
|
</Rectangle>
|
|
</Poster>
|
|
<LayoutGroup layoutDirection="vert" itemSpacings="[15]">
|
|
<LayoutGroup layoutDirection="horiz" itemSpacings="[150]">
|
|
<Label id="releaseYear" />
|
|
<Label id="officialRating" />
|
|
<LayoutGroup layoutDirection="horiz" itemSpacings="[3]">
|
|
<Poster id="star" uri="pkg:/images/sharp_star_white_18dp.png" height="32" width="32" blendColor="#cb272a" visible="false" />
|
|
<Label id="communityRating" />
|
|
</LayoutGroup>
|
|
</LayoutGroup>
|
|
<Label id="genres" />
|
|
<Label id="tagline" />
|
|
<Label id="overview" wrap="true" width="1400" maxLines="4" />
|
|
<Label id="history" />
|
|
<JFButton id="Shuffle" minChars="15" text="Shuffle" translation="[90, 640]" visible="false"></JFButton>
|
|
</LayoutGroup>
|
|
</LayoutGroup>
|
|
<TVSeasonRow id="seasons" />
|
|
</LayoutGroup>
|
|
<ExtrasSlider id="tvSeasonExtras" />
|
|
</children>
|
|
<interface>
|
|
<field id="itemContent" type="node" onChange="itemContentChanged" />
|
|
<field id="seasonData" type="assocarray" alias="seasons.TVSeasonData" />
|
|
<field id="seasonSelected" alias="seasons.rowItemSelected" />
|
|
</interface>
|
|
<script type="text/brightscript" uri="pkg:/source/utils/misc.brs" />
|
|
<script type="text/brightscript" uri="pkg:/source/utils/config.brs" />
|
|
<script type="text/brightscript" uri="TVShowDetails.brs" />
|
|
</component>
|