2023-07-21, 14:22
@RonnieG3
I'm not sure how I would add that button since it's a hard-coded function.
I'm not sure how I would add that button since it's a hard-coded function.
(2023-07-21, 15:10)Wanilton Wrote: @RonnieG3
In the library view, press "W" on your keyboard to mark Watched or Unwatched above the video item, MQ9 has native support to show the Mark in the Widget too, and in the skin, settings are possible to change the flag style (contextual art item).
(2023-07-22, 06:21)TrailFoX Wrote:(2023-07-21, 15:10)Wanilton Wrote: @RonnieG3
In the library view, press "W" on your keyboard to mark Watched or Unwatched above the video item, MQ9 has native support to show the Mark in the Widget too, and in the skin, settings are possible to change the flag style (contextual art item).
thx but there is no way to show only unwatched tv-shows of last addet in the widget?
(2023-07-22, 11:10)RonnieG3 Wrote:(2023-07-22, 06:21)TrailFoX Wrote:(2023-07-21, 15:10)Wanilton Wrote: @RonnieG3
In the library view, press "W" on your keyboard to mark Watched or Unwatched above the video item, MQ9 has native support to show the Mark in the Widget too, and in the skin, settings are possible to change the flag style (contextual art item).
thx but there is no way to show only unwatched tv-shows of last addet in the widget?
@TrailFoX Yeah there is. Wanilton helped me figure it out few days ago:
- Go to this location: C:\Users\your_user_name\AppData\Roaming\Kodi\addons\skin.aeonmq9\playlists\tvshows_unwatched.xsp
This is the .xml file for unwatched tv shows (skin.aeonmq9/playlists/tvshows_unwatched.xsp)
Replace the text with the following, save, restart Kodi, and voila:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
<name>Unwatched TV shows</name>
<match>all</match>
<rule field="dateadded" operator="after">
<value>1900-01-01</value>
</rule>
<rule field="playcount" operator="lessthan">
<value>1</value>
</rule>
<limit>48</limit>
<order direction="descending">dateadded</order>
</smartplaylist>