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 03/03/18) - redglory - 2018-03-26

(2018-03-26, 14:34)Guilouz Wrote:
(2018-03-26, 10:31)redglory Wrote: Hi @Guilouz 

Could you add the "Reboot from nand" option for LibreElec power menu like default Estuary ?

xml:
<control type="button" id="15">
 <description>Reboot from NAND button</description>
 <width>340</width>
 <height>40</height>
 <textcolor>grey2</textcolor>
 <focusedcolor>white</focusedcolor>
 <align>center</align>
 <textwidth>290</textwidth>
 <texturefocus border="25,5,25,5">ShutdownButtonFocus.png</texturefocus>
 <texturenofocus border="25,5,25,5">ShutdownButtonNoFocus.png</texturenofocus>
 <onclick>System.ExecWait("/usr/sbin/rebootfromnand")</onclick>
 <visible>System.CanReboot</visible>
 <pulseonselect>no</pulseonselect>
 <font>font13</font>
 <label>Reboot from NAND</label>
</control>

Thanks
 It's not on default Estuary, see : https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/xml/DialogButtonMenu.xml

It's for Android platform, no ?  
Hi, It's for LibreElec.

Indeed comes from a patch and not "out of the box" for default Estuary. Can you make a condition of displaying if OS is LibreElec?


RE: Estuary MOD V2 - KODI 18 (UPDATED 03/03/18) - Guilouz - 2018-03-26

(2018-03-26, 15:09)redglory Wrote:
(2018-03-26, 14:34)Guilouz Wrote:
(2018-03-26, 10:31)redglory Wrote: Hi @Guilouz 

Could you add the "Reboot from nand" option for LibreElec power menu like default Estuary ?

xml:
<control type="button" id="15">
 <description>Reboot from NAND button</description>
 <width>340</width>
 <height>40</height>
 <textcolor>grey2</textcolor>
 <focusedcolor>white</focusedcolor>
 <align>center</align>
 <textwidth>290</textwidth>
 <texturefocus border="25,5,25,5">ShutdownButtonFocus.png</texturefocus>
 <texturenofocus border="25,5,25,5">ShutdownButtonNoFocus.png</texturenofocus>
 <onclick>System.ExecWait("/usr/sbin/rebootfromnand")</onclick>
 <visible>System.CanReboot</visible>
 <pulseonselect>no</pulseonselect>
 <font>font13</font>
 <label>Reboot from NAND</label>
</control>

Thanks
 It's not on default Estuary, see : https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/xml/DialogButtonMenu.xml

It's for Android platform, no ?   
Hi, It's for LibreElec.

Indeed comes from a patch and not "out of the box" for default Estuary. Can you make a condition of displaying if OS is LibreElec? 
 There is not boolean condition for LibreELEC, there is only 'System.Platform.Linux' and 'System.Platform.Linux.RaspberryPi'.

So I can't add it because all linux platforms does not use any LibreELEC.


RE: Estuary MOD V2 - KODI 18 (UPDATED 03/03/18) - redglory - 2018-03-26

(2018-03-26, 15:25)Guilouz Wrote:
(2018-03-26, 15:09)redglory Wrote:
(2018-03-26, 14:34)Guilouz Wrote:  It's not on default Estuary, see : https://github.com/xbmc/xbmc/blob/master/addons/skin.estuary/xml/DialogButtonMenu.xml

It's for Android platform, no ?   
Hi, It's for LibreElec.

Indeed comes from a patch and not "out of the box" for default Estuary. Can you make a condition of displaying if OS is LibreElec?  
 There is not boolean condition for LibreELEC, there is only 'System.Platform.Linux' and 'System.Platform.Linux.RaspberryPi'.

So I can't add it because all linux platforms does not use any LibreELEC. 
Could you set it as an optional on skin settings and read it on skin XML?! 

Default would be off.

Something only shown on expert settings Smile


RE: Estuary MOD V2 - KODI 18 (UPDATED 03/03/18) - Guilouz - 2018-03-26

(2018-03-26, 16:26)redglory Wrote:
(2018-03-26, 15:25)Guilouz Wrote:
(2018-03-26, 15:09)redglory Wrote: Hi, It's for LibreElec.

Indeed comes from a patch and not "out of the box" for default Estuary. Can you make a condition of displaying if OS is LibreElec?  
 There is not boolean condition for LibreELEC, there is only 'System.Platform.Linux' and 'System.Platform.Linux.RaspberryPi'.

So I can't add it because all linux platforms does not use any LibreELEC.  
Could you set it as an optional on skin settings and read it on skin XML?! 

Default would be off.

Something only shown on expert settings Smile 
Without condition specially for LibreELEC, I can't add a skin settings, people who don't use LibreELEC will have this setting.


RE: Estuary MOD V2 - KODI 18 (UPDATED 03/03/18) - Angelinas - 2018-03-26

Code:
<visible>System.HasAddon(service.libreelec.settings)</visible>

https://github.com/xbmc/xbmc/blob/c3432b1d0895b866293e40db64dd10e89435e2b4/addons/skin.estuary/xml/Settings.xml#L118


RE: Estuary MOD V2 - KODI 18 (UPDATED 03/03/18) - redglory - 2018-03-26

(2018-03-26, 19:14)Angelinas Wrote:
Code:
<visible>System.HasAddon(service.libreelec.settings)</visible>

https://github.com/xbmc/xbmc/blob/c3432b1d0895b866293e40db64dd10e89435e2b4/addons/skin.estuary/xml/Settings.xml#L118 
Angelinas, had the idea it would be possible... Thanks for the update

Guilouz, is it enough for you ?

Thanks


RE: Estuary MOD V2 - KODI 18 (UPDATED 03/03/18) - Guilouz - 2018-03-26

(2018-03-26, 22:57)redglory Wrote:
(2018-03-26, 19:14)Angelinas Wrote:
Code:
<visible>System.HasAddon(service.libreelec.settings)</visible>

https://github.com/xbmc/xbmc/blob/c3432b1d0895b866293e40db64dd10e89435e2b4/addons/skin.estuary/xml/Settings.xml#L118  
Angelinas, had the idea it would be possible... Thanks for the update

Guilouz, is it enough for you ?

Thanks 
Yes, but is it only for Android devices ? Because I also use LibreELEC Generic build and I do not need this on my system.


RE: Estuary MOD V2 - KODI 18 (UPDATED 03/03/18) - redglory - 2018-03-27

(2018-03-26, 23:17)Guilouz Wrote:
(2018-03-26, 22:57)redglory Wrote:
(2018-03-26, 19:14)Angelinas Wrote:
Code:
<visible>System.HasAddon(service.libreelec.settings)</visible>

https://github.com/xbmc/xbmc/blob/c3432b1d0895b866293e40db64dd10e89435e2b4/addons/skin.estuary/xml/Settings.xml#L118   
Angelinas, had the idea it would be possible... Thanks for the update

Guilouz, is it enough for you ?

Thanks  
Yes, but is it only for Android devices ? Because I also use LibreELEC Generic build and I do not need this on my system. 
I use a Minix X9h with dual boot (LibreElec from SD card).

Would be useful to reboot to android without removing sd card every time.

Reboot from nand reboots into Android and reboot again goes back to LibreElec.


RE: Estuary MOD V2 - KODI 18 (UPDATED 03/03/18) - Guilouz - 2018-03-27

(2018-03-27, 00:05)redglory Wrote:
(2018-03-26, 23:17)Guilouz Wrote:
(2018-03-26, 22:57)redglory Wrote: Angelinas, had the idea it would be possible... Thanks for the update

Guilouz, is it enough for you ?

Thanks  
Yes, but is it only for Android devices ? Because I also use LibreELEC Generic build and I do not need this on my system.  
I use a Minix X9h with dual boot (LibreElec from SD card).

Would be useful to reboot to android without removing sd card every time.

Reboot from nand reboots into Android and reboot again goes back to LibreElec. 
Added on last git.


RE: Estuary MOD V2 - KODI 18 (UPDATED 03/03/18) - abescalamis - 2018-03-27

I wanted to suggest adding a showcase option, to show blu-ray case, if the video quality is low to show a dvd case, if its higher than bluray to show a 4k case.


RE: Estuary MOD V2 - KODI 18 (UPDATED 03/03/18) - redglory - 2018-03-27

(2018-03-27, 01:19)Guilouz Wrote:
(2018-03-27, 00:05)redglory Wrote:
(2018-03-26, 23:17)Guilouz Wrote: Yes, but is it only for Android devices ? Because I also use LibreELEC Generic build and I do not need this on my system.  
I use a Minix X9h with dual boot (LibreElec from SD card).

Would be useful to reboot to android without removing sd card every time.

Reboot from nand reboots into Android and reboot again goes back to LibreElec.  
Added on last git. 
Thanks a lot Smile


RE: Estuary MOD V2 - KODI 18 (UPDATED 03/03/18) - redglory - 2018-03-27

Hi Guilouz,

I think condition to show reboot from nand isn't correct.

xml:
<visible>System.Platform.Android + System.HasAddon(service.libreelec.settings)

Android and LibreElec settings won't be a concurrent reality. I suppose you only have to set condition to:

xml:
<visible>System.HasAddon(service.libreelec.settings)

Or if you want to includce Platform it should be System.Platform.Linux as LibreElec is based on Linux.

thanks


RE: Estuary MOD V2 - KODI 18 (UPDATED 03/03/18) - wheemer - 2018-03-27

(2018-03-26, 14:32)Guilouz Wrote:
(2018-03-23, 05:15)wheemer Wrote: I'm wondering if the widgets could have some sort of cache? I find on initial launch they take a very long time to display anything. It would be great if they just showed last results from cache first as they refresh in the background.

I'd rather be able to see something instead of spinning circles, that sometime seem to almost lock up Kodi. Widgets for EmbyCon seem to be extra touchy.

Also is there any way to allow EmbyCon to populate the library info on the settings info overlay?
There is no cache for widgets. Time for displaying widgets depending of many things like hardware : hard drive speed, location of your database (local or mySQL), kind of widgets you use (if they needed internet connexion or not). Mine load in few seconds. 
Well my widgets all take a few minutes to load completely, definitely not seconds. It is because of all those variables which may be more on some machines that I was asking for some sort of cache. On a windows machine where kodi is quit and relaunched a lot this provides a negative experience for sure. It's disappointing you will not consider adding a cache of some sort. Hopefully you change your mind at some point, because I think it would really help. On libreelec sometimes kodi locks up while the skin is waiting for the widget to populate. Which is only fixed by rebooting.


RE: Estuary MOD V2 - KODI 18 (UPDATED 03/03/18) - Guilouz - 2018-03-27

(2018-03-27, 13:16)redglory Wrote: Hi Guilouz,

I think condition to show reboot from nand isn't correct.

xml:
<visible>System.Platform.Android + System.HasAddon(service.libreelec.settings)

Android and LibreElec settings won't be a concurrent reality. I suppose you only have to set condition to:

xml:
<visible>System.HasAddon(service.libreelec.settings)

Or if you want to includce Platform it should be System.Platform.Linux as LibreElec is based on Linux.

thanks
If I add only 'System.HasAddon(service.libreelec.settings)' condition visiblity, all platforms on LibreELEC will have this setting.

I also use LibreELEC and I don't have a NAND, just a HDD with only LibreELEC, so you can understand I don't have need this and all others they don't have NAND too.

If I use 'System.Platform.Linux' all linux platforms will be affected. That's why I asked you if it was only for Android platforms. So I will remove it because there is no perfect condition for system have NAND or not.


RE: Estuary MOD V2 - KODI 18 (UPDATED 03/03/18) - redglory - 2018-03-27

That's fine. 

I'll update it myself Smile