Kodi Community Forum
Mod Estuary MOD - KODI 17 (DISCONTINUED) - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Estuary (https://forum.kodi.tv/forumdisplay.php?fid=260)
+---- Thread: Mod Estuary MOD - KODI 17 (DISCONTINUED) (/showthread.php?tid=267343)



RE: Estuary MOD (UPDATED 29/06/16) - UsefulG - 2016-07-01

@Nick w The direct link in first post is broken but you can download Guilouz repo from here https://github.com/Guilouz/repository.guilouz/tree/master/_repo/repository.guilouz and install the zip file. @Guilouz It looks like the link is pointing to the 1.0.0 repo zip file.


RE: Estuary MOD (UPDATED 29/06/16) - Charger Hellcat - 2016-07-01

Sorry I'm a little confused. What has been updated for the Rotten Tomatoes ratings for TV shows? I don't see them on any screen. Maybe I'm not looking in the correct location?


RE: Estuary MOD (UPDATED 29/06/16) - Guilouz - 2016-07-01

(2016-07-01, 08:53)nick w Wrote: Whats the best way to upgrade the skin to v1.3.1?
Currently im on 1.2.9. is it to go to gitHub and download the .zip and copy across?

thanks

The bast way is install my repo and you will receive update automatically.


RE: Estuary MOD (UPDATED 29/06/16) - Guilouz - 2016-07-01

(2016-07-01, 11:00)UsefulG Wrote: @Nick w The direct link in first post is broken but you can download Guilouz repo from here https://github.com/Guilouz/repository.guilouz/tree/master/_repo/repository.guilouz and install the zip file. @Guilouz It looks like the link is pointing to the 1.0.0 repo zip file.

Fixed on first page. Thanks.


RE: Estuary MOD (UPDATED 29/06/16) - Guilouz - 2016-07-01

(2016-07-01, 11:46)Charger Hellcat Wrote: Sorry I'm a little confused. What has been updated for the Rotten Tomatoes ratings for TV shows? I don't see them on any screen. Maybe I'm not looking in the correct location?

Same as movies but all tv shows doesn't have rotten tomatoes.


RE: Estuary MOD (UPDATED 29/06/16) - Charger Hellcat - 2016-07-01

(2016-07-01, 12:12)Guilouz Wrote:
(2016-07-01, 11:46)Charger Hellcat Wrote: Sorry I'm a little confused. What has been updated for the Rotten Tomatoes ratings for TV shows? I don't see them on any screen. Maybe I'm not looking in the correct location?

Same as movies but all tv shows doesn't have rotten tomatoes.

Is it the TV show that gets a rating or each individual episode?


RE: Estuary MOD (UPDATED 29/06/16) - Guilouz - 2016-07-01

(2016-07-01, 12:16)Charger Hellcat Wrote:
(2016-07-01, 12:12)Guilouz Wrote:
(2016-07-01, 11:46)Charger Hellcat Wrote: Sorry I'm a little confused. What has been updated for the Rotten Tomatoes ratings for TV shows? I don't see them on any screen. Maybe I'm not looking in the correct location?

Same as movies but all tv shows doesn't have rotten tomatoes.

Is it the TV show that gets a rating or each individual episode?

No, for tv shows, look :

Image

https://www.rottentomatoes.com/tv/breaking-bad


RE: Estuary MOD (UPDATED 29/06/16) - Charger Hellcat - 2016-07-01

OK Thanks.


RE: Estuary MOD (UPDATED 29/06/16) - Palexxtra - 2016-07-01

Palexxtra Wrote:
When playing a video, I always got two "Extended info" buttons also for me. Why?


You launch you video from library ?

No


RE: Estuary MOD (UPDATED 29/06/16) - schumi2004 - 2016-07-01

Does this skin have Cinema Vision support by any chance ?


Estuary MOD (UPDATED 29/06/16) - Guilouz - 2016-07-01

(2016-07-01, 17:58)schumi2004 Wrote: Does this skin have Cinema Vision support by any chance ?


Yes but not skinned.


RE: Estuary MOD (UPDATED 29/06/16) - xodiuser - 2016-07-02

For the two "Extended info" buttons issue, in the VideoOSD.xml file, the following two conditions to show the button seems not to be mutual exclusive.

Code:
<control type="radiobutton" id="70012">
    <include content="OSDButton">
        <param name="texture" value="osd/fullscreen/buttons/extendedinfo.png"/>
    </include>
    <onclick>PlayerControl(Play)</onclick>
    <onclick>RunScript(script.extendedinfo,info=extendedinfo,name=$INFO[VideoPlayer.Title])</onclick>
    <visible>!VideoPlayer.Content(livetv) + !VideoPlayer.HasMenu + !VideoPlayer.Content(episodes)</visible>
</control>
<control type="radiobutton" id="70013">
    <include content="OSDButton">
        <param name="texture" value="osd/fullscreen/buttons/extendedinfo.png"/>
    </include>
    <onclick>PlayerControl(Play)</onclick>
    <onclick>RunScript(script.extendedinfo,info=extendedtvinfo,name=$INFO[VideoPlayer.TvShowTitle])</onclick>
    <visible>!VideoPlayer.Content(livetv) + !VideoPlayer.HasMenu + !VideoPlayer.Content(movies)</visible>
</control>



Estuary MOD (UPDATED 29/06/16) - Guilouz - 2016-07-02

(2016-07-02, 03:38)xodiuser Wrote: For the two "Extended info" buttons issue, in the VideoOSD.xml file, the following two conditions to show the button seems not to be mutual exclusive.

Code:
<control type="radiobutton" id="70012">
    <include content="OSDButton">
        <param name="texture" value="osd/fullscreen/buttons/extendedinfo.png"/>
    </include>
    <onclick>PlayerControl(Play)</onclick>
    <onclick>RunScript(script.extendedinfo,info=extendedinfo,name=$INFO[VideoPlayer.Title])</onclick>
    <visible>!VideoPlayer.Content(livetv) + !VideoPlayer.HasMenu + !VideoPlayer.Content(episodes)</visible>
</control>
<control type="radiobutton" id="70013">
    <include content="OSDButton">
        <param name="texture" value="osd/fullscreen/buttons/extendedinfo.png"/>
    </include>
    <onclick>PlayerControl(Play)</onclick>
    <onclick>RunScript(script.extendedinfo,info=extendedtvinfo,name=$INFO[VideoPlayer.TvShowTitle])</onclick>
    <visible>!VideoPlayer.Content(livetv) + !VideoPlayer.HasMenu + !VideoPlayer.Content(movies)</visible>
</control>


Yes, I have changed it for next release.


RE: Estuary MOD (UPDATED 02/07/16) - Guilouz - 2016-07-02

New Update 1.3.2 on repository :

• Add total / watched / unwatched episodes number for tv shows and seasons
Image

• Add possibility to hide info from Rotten Tomatoes and Metacritic
Image

• Add possibility to hide clearlogos on home menu
Image

• Add flag icons on home menu and possibility to hide them
Image

• Minor fixes


RE: Estuary MOD (UPDATED 02/07/16) - xodiuser - 2016-07-02

With the 1.3.2 update, the extended info button just disappeared for all videos