Kodi Community Forum
Mod Aeon MQ 9 Mod for Kodi 21 (Omega) - 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: Aeon MQ (https://forum.kodi.tv/forumdisplay.php?fid=68)
+---- Thread: Mod Aeon MQ 9 Mod for Kodi 21 (Omega) (/showthread.php?tid=375410)



RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - latts9923 - 2024-02-10

@MB1968
I'll take a look.

@woggs
Howdy...I'll take a look at this as well.


RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - latts9923 - 2024-02-10

@MB1968
I changed the simple Up Next script to the MQ 8 version (with a few tweaks). I also tweaked the fancy version. You can try them here...see what you think.

@woggs
I think I have a fix for the Grab Fanart button being available for video playlists...it will be in the next update.


RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - MB1968 - 2024-02-10

(2024-02-10, 15:47)latts9923 Wrote: @MB1968
I changed the simple Up Next script to the MQ 8 version (with a few tweaks). I also tweaked the fancy version. You can try them here...see what you think.
Thanks for the test file. I tested with the simple version. I think part of the text and the countdown is missing on the far right side.

Image


RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - latts9923 - 2024-02-10

@MB1968
Find "<label>$ADDON[service.upnext 30036]</label>" at the bottom of the file and change the code to this...
xml:
<control type="label">
<left>3080</left>
<top>62</top>
<width>700</width>
<height>70</height>
<align>right</align>
<aligny>center</aligny>
<font>Font_settings</font>
<textcolor>eeffffff</textcolor>
<shadowcolor>00000000</shadowcolor>
<label>$ADDON[service.upnext 30036]</label>
</control>

I lowered the left value to 3080 and I changed the width to 700. You might have to adjust the left and width until you can see all of your text since your language has more text than mine. If you would, let me know what you end up changing those values to.

Also...if you'd like to make your Dutch country flags available I can add them to the Textures file. Thanks!


RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - MB1968 - 2024-02-11

(2024-02-10, 21:51)latts9923 Wrote: @MB1968
Find "<label>$ADDON[service.upnext 30036]</label>" at the bottom of the file and change the code to this...
xml:
<control type="label">
<left>3080</left>
<top>62</top>
<width>700</width>
<height>70</height>
<align>right</align>
<aligny>center</aligny>
<font>Font_settings</font>
<textcolor>eeffffff</textcolor>
<shadowcolor>00000000</shadowcolor>
<label>$ADDON[service.upnext 30036]</label>
</control>

I lowered the left value to 3080 and I changed the width to 700. You might have to adjust the left and width until you can see all of your text since your language has more text than mine. If you would, let me know what you end up changing those values to.

Also...if you'd like to make your Dutch country flags available I can add them to the Textures file. Thanks!
1. I think you should move the text "Next Episode" up a bit.
2. The "Next Episode" field is indeed too small for foreign languages. Tomorrow I'll report back what I had to change, to see the complete Next Episode text and the countdown timer.

Image

Regarding the fancy widget: I'm still seeing 3 countdown timers. And the text Next Episode (Volgende Aflevering) is being displayed twice.

Image

(2024-02-10, 21:51)latts9923 Wrote: Also...if you'd like to make your Dutch country flags available I can add them to the Textures file.
Okay, thanks. I'm still struggling with non-ascii characters. I copied the letter ë (from Windows charmap) to the country flags that have an ë in the name , but that trick did not work.


RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - latts9923 - 2024-02-11

@MB1968
Doh! I guess it would help if I gave you the updated file. Here's the updated simple script.

In this file you can change the left and width values for the label I posted above until your language fits on the screen correctly. Let me know what you end up with and I will change mine as well.

For the "fancy" script, I forgot to give you the new variable code. Open Variables.xml and find "upnext_countdown_label". Change that variable to this...
xml:
<variable name="upnext_countdown_label">
<value condition="!Integer.IsGreater(Player.TimeRemaining,59)">$ADDON[service.upnext 30036]</value>
<value>$ADDON[service.upnext 30036] [COLOR=$INFO[skin.string(header_color)]]$INFO[Player.TimeRemaining,,][/COLOR]</value>
</variable>

I just made a custom Chile flag and named it chilë.png. I then changed the country for a Movie in my database to Chilë. The flag displays for me in the media flags and View Type-01 displays the country text as Chilë.


RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - MB1968 - 2024-02-11

Thanks for the updated file and further instructions. I'll continue tomorrow.

Concerning the country flags, thanks for testing. Have you tested this in Windows or in Android? I'm having this issue on my Android box. Tomorrow I'll run a test on my Windows pc.


RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - MB1968 - 2024-02-11

(2024-02-11, 00:37)latts9923 Wrote: @MB1968
In this file you can change the left and width values for the label I posted above until your language fits on the screen correctly. Let me know what you end up with and I will change mine as well.

@latts9923,
This piece of code works fine for the Dutch language.
xml:

<control type="label">
   <left>2600</left>
   <top>62</top>
   <width>1200</width>
   <height>70</height>
   <align>right</align>
   <aligny>center</aligny>
   <font>Font_settings</font>
   <textcolor>eeffffff</textcolor>
   <shadowcolor>00000000</shadowcolor>
   <label>$ADDON[service.upnext 30036]</label>
</control>

Image

After applying the changes to Variables.xml, the fancy Next Up notification does not show 3 countdown timers anymore. Thanks for the improvements.
Image


RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - latts9923 - 2024-02-11

@MB1968
I just tested the country flags on Windows.

Cool...I'll adjust the left and width on my script. Thanks!


RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - MB1968 - 2024-02-11

@latts9923, the behaviour of the scrollbar in the file browser is weird. There's often a scrollbar in the centre, that imho should only be visible on the far right side. Nothing to scroll for on the left side.

Or there's a scrollbar in the centre and simultaneously one on the far right side, whilst both are controls for the right panel.

I suspect this inconsistent behaviour is also causing the issue that I often have to click twice to navigate from LTR or RTL.

Image

Image


RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - latts9923 - 2024-02-11

@MB1968
You're right...the scrollbar left values need to be reversed. If you open FileManager.xml, find "scroll_bar_vertical" and switch the left values it should fix it.


RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - andrzejls - 2024-02-11

@latts9923  I installed this morning KODI-20240210-DF86CFDC version and noticed that it created/migrated Database to "MyVideo130". There is no problem that I can see, all is working fine if not better/faster. My question is, is there e forum/discussion among KODI developers that I could follow to find out details of revisions/updates to KODI and Database?.


RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - MB1968 - 2024-02-11

(2024-02-11, 21:55)andrzejls Wrote: My question is, is there e forum/discussion among KODI developers that I could follow to find out details of revisions/updates to KODI and Database?.

https://github.com/xbmc/xbmc


RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - latts9923 - 2024-02-11

@andrzejls
There's no thread to follow that I know of. All I can think of is to monitor the Github issues.


RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - andrzejls - 2024-02-11

(2024-02-11, 22:13)latts9923 Wrote: @andrzejls
There's no thread to follow that I know of. All I can think of is to monitor the Github issues.
@latts9923 Thanks.