Resume / Finished Video Flag
#1
Dear, 
Some minor issue but might it be possible to have a flag indicating if a movie is fully watched or not ? 
attached some illustration
Thanks in advance 
JP

Image
Reply
#2
(2022-01-25, 14:25)jpeg73 Wrote: Some minor issue but might it be possible to have a flag indicating if a movie is fully watched or not ? 

The top entry in your video list already has that.
You can reset the resume point of a video via its context menu.

You can also press the 'w' button to toggle the watched/unwatched state of a video.
Reply
#3
Thx for the reply
In apptv Top entry menu allow me to sort , yes
but no flags are present in apptv as estuary does

any way to display them ?
Reply
#4
To share some solution, 

Ive added in Includes_variables.xml
    <variable name="ListCompletionFlags">
        <value condition="ListItem.IsResumable">OverlayPartialyWatched.png</value>
        <value condition="!String.IsEmpty(ListItem.Overlay)">$INFO[ListItem.Overlay]</value>
    </variable>
and Ive added in View-video.xml 
just before </itemlayout> & </focusedlayout>
                <control type="image"> 
                    <left>676</left>
                    <top>48</top>
                    <width>48</width>
                    <height>48</height>
                    <texture>$VAR[ListCompletionFlags]</texture>
                </control>

This solve my issue
Regards,JP
Reply
#5
(2022-01-25, 18:11)jpeg73 Wrote: To share some solution, 

Ive added in Includes_variables.xml
    <variable name="ListCompletionFlags">
        <value condition="ListItem.IsResumable">OverlayPartialyWatched.png</value>
        <value condition="!String.IsEmpty(ListItem.Overlay)">$INFO[ListItem.Overlay]</value>
    </variable>
and Ive added in View-video.xml 
just before </itemlayout> & </focusedlayout>
                <control type="image"> 
                    <left>676</left>
                    <top>48</top>
                    <width>48</width>
                    <height>48</height>
                    <texture>$VAR[ListCompletionFlags]</texture>
                </control>

This solve my issue
Regards,JP
@jpeg73 ,

Thanks tiger, sounds like a wonderful idea. Only one problem, this has been a part of the skin since before Estuary was a twinkle in Phil65's eye.

As has been explained before a number of times, my implimentation follows iOS conventions (which as a Mac user you should recognise). Full blue circle is new (thus unwatched), half circle is partially watched (this also applies to TVShow seasons in the Library, but NOT in Files section) and NO image is watched. 

Wyrm
If required a FULL debug log can now be submitted from the skin in settings->skin settings->support. Or follow instructions here if you can't access skin settings.

FAQ's located at :- http://kodi.wiki/view/Add-on:AppTV
Reply

Logout Mark Read Team Forum Stats Members Help
Resume / Finished Video Flag0