Kodi Community Forum
Mod Estuary MOD V2 Matrix/Nexus/Omega KN Edition - 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 Matrix/Nexus/Omega KN Edition (/showthread.php?tid=366400)



RE: Estuary MOD V2 Matrix/Nexus KN Edition - _BJ1 - 2023-01-22

(2023-01-22, 18:05)tigerteacher Wrote: I recently updated to Kodi 20, and I updated my Android permissions to show file lists (which had disappeared). I cleaned my music library this morning, listened to some music, and the recently played and recently added albums will now not show up. I've tried turning off and rebooting Kodi.

They still be there:

Image

Maybe You have enable the widgets again after update: Reset Main Menu and arrange it again. Go to skin settings and customize main menu, goto music and manage items for music widget.


RE: Estuary MOD V2 Matrix/Nexus KN Edition - _BJ1 - 2023-01-22

(2023-01-22, 21:18)spl147 Wrote: so with your current DialogVideoInfo, when a trailer ends there is no button focused. if i hit cancel, then the trailer button has focus.

if i comment out lines 918-947 then when the trailer ends the trailer button has focus

also commented out 203-204

i tried changing (439) to (8) in the <control type="button" id="9002"> but still no focus, play or trailer

Yes, there are some process mechanism introduced by the original maintainer Guilouz, that's somehow not clear and confusing me to.


RE: Estuary MOD V2 Matrix/Nexus KN Edition - Ninodemon - 2023-01-23

Is WebDAV method still working again? I gave away my fire stick to a friend and got a new one but today it seems to not be working like last time


RE: Estuary MOD V2 Matrix/Nexus KN Edition - Ninodemon - 2023-01-23

Sorry disregard last message, it was kodi remote not pasting correctly but WebDAV is working fine.


RE: Estuary MOD V2 Matrix/Nexus KN Edition - _BJ1 - 2023-01-23

3.4.2+matrix.19 / 4.1.0+nexus
  • Listview bugfix
  • Fix doubled label of 'in progress tv shows'
  • Distribution logos in context menu added
  • avoid flickering in settings window when video sources are shown and icon view is set

additional (Nexus):
  • Introducing favourites browser
  • update screen calibration

Nexus Users: Due to the implementation of the new Favourites Browser it is necessary to reset the main menu. If this is not possible, e.g. due to extensive changes, it is sufficient in many cases, e.g. to add a menu entry (and delete it later) that triggers the Skin Shortcuts addon to rewrite the menu. Otherwise the Favourites Browser is not accessable.


RE: Estuary MOD V2 Matrix/Nexus KN Edition - Nexusof9 - 2023-01-23

Thank you very much for the update. 😃
It's great, everything works perfectly.  👍🏻


RE: Estuary MOD V2 Matrix/Nexus KN Edition - crazyturk - 2023-01-23

Thanks for the new updates.There is no option to restart from eMMC/NAND in the Kodi Nexus Power menu. "DialogButtonMenu.xml" exists here but no OSD.


RE: Estuary MOD V2 Matrix/Nexus KN Edition - _BJ1 - 2023-01-23

The DialogButtonMenu.xml are identical for both Matrix and Nexus. Both checking the existence of a special path: /dev/system. If this path exists the option "restart from emmc/NAND" is shown. I suggest you have to follow the instructions from here as your system seems to be unable reading the file system after an update to Nexus: https://forum.kodi.tv/showthread.php?tid=371331&pid=3132727#pid3132727


RE: Estuary MOD V2 Matrix/Nexus KN Edition - crazyturk - 2023-01-23

I use CoreElec.The original Estuary interface has the option "restart from Emmc/Nand" in the Power menu.
Estuary interface "Dialogbuttonmenu.xml" file "Estuary.modv2" XML folder, and "Restart from Emmc/Nand" was seen.


RE: Estuary MOD V2 Matrix/Nexus KN Edition - _BJ1 - 2023-01-23

It's independend if you use CoreElec, LibreElec or something else. It only depends on the existence of  a special path:
 
(2023-01-23, 20:11)_BJ1 Wrote: Both checking the existence of a special path: /dev/system. If this path exists the option "restart from emmc/NAND" is shown.

Please tell me about a little bit more of your hardware.


RE: Estuary MOD V2 Matrix/Nexus KN Edition - crazyturk - 2023-01-23

The TV box works with double operating system CoreElec and Android. With the restart from eMMC/Nand button, the TV box is switched to Android.
DialogButtonMenu.xml  line
" <label>$LOCALIZE[31556]</label>"

Estuary.modv2
Image

With the original Estuary "dialogbuttonmenu.xml" Estuary MODV2 Power Menu
Image


RE: Estuary MOD V2 Matrix/Nexus KN Edition - crazyturk - 2023-01-24

I finally solved it.
These lines
<item>
<label>$LOCALIZE[31556]</label>
<icon>special://skin/extras/icons/Powermenu/reboot_emmc.png</icon>
<onclick>System.ExecWait("/usr/sbin/rebootfromnand")</onclick>
<onclick>Reboot</onclick>
<visible>System.CanReboot</visible>
<visible>System.PathExist("/dev/system")</visible>
<visible>!Skin.HasSetting(ExtendedPowerMenu)</visible>
</item>

It was edited with these lines
<item>
<label>Reboot from eMMC/NAND</label>
<onclick>System.ExecWait("/usr/sbin/rebootfromnand")</onclick>
<onclick>Reset()</onclick>
<visible>System.PathExist("/dev/system") | System.PathExist("/dev/userdata")</visible>
 <icon>special://skin/extras/icons/Power menu/reboot_emmc.png</icon>
</item>

Image


RE: Estuary MOD V2 Matrix/Nexus KN Edition - _BJ1 - 2023-01-24

I will investigate some more time in the evening and compare some code arround the issue on several skins. I wonder why the folder /dev/system not exists and /dev/userdata instead is used. I also own a corelec build that runs with a dual boot system Android/Corelec on eMMC and S905x3 hardware (Tanix TX3). Everything is fine here.

But I'm glad that you found a solution for you now. Maybe this will included in future updates. 

Cheers.


RE: Estuary MOD V2 Matrix/Nexus KN Edition - spl147 - 2023-01-24

(2023-01-24, 00:30)crazyturk Wrote: I finally solved it.
These lines
<item>
<label>$LOCALIZE[31556]</label>
<icon>special://skin/extras/icons/Powermenu/reboot_emmc.png</icon>
<onclick>System.ExecWait("/usr/sbin/rebootfromnand")</onclick>
<onclick>Reboot</onclick>
<visible>System.CanReboot</visible>
<visible>System.PathExist("/dev/system")</visible>
<visible>!Skin.HasSetting(ExtendedPowerMenu)</visible>
</item>

It was edited with these lines
<item>
<label>Reboot from eMMC/NAND</label>
<onclick>System.ExecWait("/usr/sbin/rebootfromnand")</onclick>
<onclick>Reset()</onclick>
<visible>System.PathExist("/dev/system") | System.PathExist("/dev/userdata")</visible>
 <icon>special://skin/extras/icons/Power menu/reboot_emmc.png</icon>
</item>

Image

your changes to the skin were unnecessary, CoreELEC clearly states that upgrading from 19 to 20 is not advised due to permission issues, but recommend a clean install


RE: Estuary MOD V2 Matrix/Nexus KN Edition - crazyturk - 2023-01-24

CoreElec Nexus works smoothly. CoreElec Nexus software 905x3 kernel 4.9.269 and A311d2 and 905x4 processors work with kernel 5.4.125. The difference is here. Amlogic 922-H, the TV box's power menu is available in the EMMC/NAND option. The core works with 4.9.269. My friend has a TV box of ugoos am7 905x4, no emmc/nand menu on that device. That TV box also works with kernel 5.4.125
My TV Box GT King A311D2. Anyway, I solved the problem on my own device.
Thanks to everyone interested.
Best regards...