Kodi Community Forum
Mod Estuary MOD V2 - KODI 18 (UPDATED 17/01/19) - 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 V2 - KODI 18 (UPDATED 17/01/19) (/showthread.php?tid=306757)



RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - tehax - 2017-08-16

Yes, please, with choose to activate cd art and activate clearart like in mod v1.


RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - mattyspurs76 - 2017-08-16

No idea what that helper script is but looks like it would fix my issue.
Just done a clean install of everything today and followed your instruction on page 1 for api keys.

As far as I'm aware I've installed and setup everything correctly yet I still get whats in the tip picture above..just the poster in view.

But...ive just installed Titan skin for kodi 18 and just testing it out. Low and behold I get artwork showing perfectly on osd. Just how I want!

I will try and up load my debug report for you to take alook in case that aid something messing it up at my end.


RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - Guilouz - 2017-08-17

(2017-08-16, 21:17)tehax Wrote: Yes, please, with choose to activate cd art and activate clearart like in mod v1.

Done on last git Wink


RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - Guilouz - 2017-08-17

(2017-08-16, 22:46)mattyspurs76 Wrote: No idea what that helper script is but looks like it would fix my issue.
Just done a clean install of everything today and followed your instruction on page 1 for api keys.

As far as I'm aware I've installed and setup everything correctly yet I still get whats in the tip picture above..just the poster in view.

But...ive just installed Titan skin for kodi 18 and just testing it out. Low and behold I get artwork showing perfectly on osd. Just how I want!

I will try and up load my debug report for you to take alook in case that aid something messing it up at my end.

Because I think you use streaming addons for your movies. Try last git, I have added support for that.


RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - Yorgos - 2017-08-18

Guilouz, outstanding work on MOD V2. After years of using streaming devices and only halfheartedly playing with Kodi, I finally took the plunge using your skin to start to ditch the outdated boxes. Have a while to go to rework my library (very particular about posters, aspect ratios, etc.) but looking forward to it.

I've replaced your media flags with ones I prefer a bit more (modified Textures via Kodi.Texture tool), but can't get them to size correctly.

Image

Followed your brief instructions from a very early post (https://forum.kodi.tv/showthread.php?tid=306757&pid=2536591#pid2536591) but finding line 451 in Includes.xml doesn't seem right.

Image

I'm not highly versed in XML but can generally plow my way through a problem. I'm stumped now so any detailed assistance would be very much appreciated.

Thanks, Y


RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - hawkeyexp - 2017-08-18

Hi @all,

i have palyed a little bit with the layout for the widgets and tuned a little bit for better fitting on screen.
Favourites have now same layout as rest in widgets. Weather has now a full visible 7-day forecast if using small main menu.
Hopy you like it - if interested needed commits are available on my git for easy merge.

https://github.com/hawkeyexp/repository.guilouz

watch gallery



RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - XxKaiserxX - 2017-08-18

Guilouz any chance section on manga in your build?


RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - Guilouz - 2017-08-18

(2017-08-18, 04:42)Yorgos Wrote: Guilouz, outstanding work on MOD V2. After years of using streaming devices and only halfheartedly playing with Kodi, I finally took the plunge using your skin to start to ditch the outdated boxes. Have a while to go to rework my library (very particular about posters, aspect ratios, etc.) but looking forward to it.

I've replaced your media flags with ones I prefer a bit more (modified Textures via Kodi.Texture tool), but can't get them to size correctly.

Image

Followed your brief instructions from a very early post (https://forum.kodi.tv/showthread.php?tid=306757&pid=2536591#pid2536591) but finding line 451 in Includes.xml doesn't seem right.

Image

I'm not highly versed in XML but can generally plow my way through a problem. I'm stumped now so any detailed assistance would be very much appreciated.

Thanks, Y

Mediaflags start to line 704 to 1104. in Includes.xml. Your png files must have 50px for height to keep aspect ratio.


RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - Guilouz - 2017-08-18

(2017-08-18, 07:33)XxKaiserxX Wrote: Guilouz any chance section on manga in your build?

Nope, because for mangas, kodi use TV Shows section. If you want to isolate mangas, you must use smart playlists like that :

For TV Shows : TV Shows.xsp

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
    <name>TV Shows</name>
    <match>one</match>
    <rule field="path" operator="startswith">
        <value>smb://NAS/video/TV Shows/</value>
    </rule>
</smartplaylist>

For Mangas : Mangas.xsp

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
    <name>Mangas</name>
    <match>one</match>
    <rule field="path" operator="startswith">
        <value>smb://NAS/video/Mangas/</value>
    </rule>
</smartplaylist>

Put this two files in userdata / playlists / video and you can choose them in personalize home menu.

You can also do the same for widgets.

Exemple for recently added :

For TV Shows : Recent TV Shows.xsp

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
    <name>Recently added TV Shows episodes</name>
    <match>all</match>
    <rule field="path" operator="startswith">
        <value>smb://NAS/video/TV Shows/</value>
    </rule>
        <rule field="dateadded" operator="after">
                <value>1900-01-01</value>
        </rule>
        <order direction="descending">dateadded</order>
</smartplaylist>

For Mangas : Recent Mangas.xsp

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
    <name>Recently added Mangas episodes</name>
    <match>all</match>
    <rule field="path" operator="startswith">
        <value>smb://NAS/video/Mangas/</value>
    </rule>
        <rule field="dateadded" operator="after">
                <value>1900-01-01</value>
        </rule>
        <order direction="descending">dateadded</order>
</smartplaylist>



RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - tehax - 2017-08-18

I do not why but in series and movies view "shift" i get no clearlogo only text. In other windows like home menu i get them. Any idea?
Log: https://pastebin.com/R0JAejTf
picture: https://1drv.ms/i/s!AnMOu_3VsLX4rAoyJbHGgfQgFsV5


RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - Guilouz - 2017-08-18

(2017-08-18, 18:51)tehax Wrote: I do not why but in series and movies view "shift" i get no clearlogo only text. In other windows like home menu i get them. Any idea?
Log: https://pastebin.com/R0JAejTf
picture: https://1drv.ms/i/s!AnMOu_3VsLX4rAoyJbHGgfQgFsV5

In Shift view, it's clearart on top and clearlogo on list :

Image Image

If you use streaming addons, it's normal, property of Skin Helper Service not working in container. You must have stored files with database to have them.


RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - rudrood - 2017-08-18

Switching PVR channels with latest version from GIT.

watch gallery



RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - Guilouz - 2017-08-18

(2017-08-18, 21:09)rudrood Wrote: Switching PVR channels with latest version from GIT.

watch gallery

Fixed on last git. Thanks.


RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - tehax - 2017-08-18

The movies and series are in my kodi database and stored on my home server. Yes, i have amazon VOD addon but this can not be the issue. Strange is that it also not work in mod v1 with 17.3 with clean install. I know that it works in the past.


RE: Estuary MOD V2 - KODI 18 (UPDATED 16/08/17) - rudrood - 2017-08-18

Is there a way to change the background to fully transparant for the fanart in info mode?
Like the option: hide fanart opacity in fullscreen mode.

The color options:
Background color: none
Background patern: none
Opacity for fanart as background: 100%
Opacity for top and bottom bars: 100%

result in the next screenshot with still some tint on fanart. Compare the background with the artist banner.

watch gallery


Thanks!