RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - latts9923 - 2024-03-06
@andrzejls
I just fixed the TV Show studio code for View Type-24, 26 and 28. Thanks for letting me know!
RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - IceFreak - 2024-03-06
(2024-03-03, 22:18)latts9923 Wrote: @Schenckmeier
I just added Skin Helper to my Omega repo yesterday, but for some reason it continually fails to install (getting a "Failed with code 404:" in the logs). All the other add-ons are installing just fine...very strange.
@rob63
You're welcome!
Hello @latts9923
Thanks for your work. I did a test install before migrating my all media center.
Found a small issue regarding the skin helper module that leads to the fail install (did it manually)
there's a mismatch between what kodi is looking for :
Open - <https://holybid.com/kodi/lattsrepo/master/omega/script.skin.helper.service/script.skin.helper.service-1.20.1.zip> Failed with code 404
And the actual file on the link :https://holybid.com/kodi/lattsrepo/master/omega/script.skin.helper.service/script.skin.helper.service-1-20.1.zip
1.20 vs 1-20
Hope that helps
RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - andrzejls - 2024-03-07
(2024-03-06, 16:00)latts9923 Wrote: @andrzejls
I just fixed the TV Show studio code for View Type-24, 26 and 28. Thanks for letting me know! @latts9923 Great, thank you. Could you post this ?
RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - latts9923 - 2024-03-07
@IceFreak
Well crap...the whole time it was just a typo on my end. Thanks for catching that! It installs just fine from my repo now.
@andrzejls
Sure...open Variables.xml and find...
xml: <variable name="studio">
<value condition="!String.IsEmpty(Window(0).Property(SkinHelper.ListItem.Studio))">$VAR[studios_path]$INFO[Window(0).Property(SkinHelper.ListItem.Studio),,.png]</value>
<value condition="String.IsEmpty(Window(0).Property(SkinHelper.ListItem.Studio))">$VAR[studios_path]$INFO[ListItem.Studio.png]</value>
</variable>
<variable name="studio_tv">
<value condition="Container.Content(tvshows) | Container.Content(seasons) | Container.Content(episodes)">$VAR[studios_path]$INFO[ListItem.Studio.png]</value>
</variable>
Change it to this...
xml: <variable name="studio">
<value>$VAR[studios_path]$INFO[ListItem.Studio,,.png]</value>
</variable>
<variable name="studio_tv">
<value condition="Container.Content(tvshows) | Container.Content(seasons) | Container.Content(episodes)">$VAR[studios_path]$INFO[ListItem.Studio,,.png]</value>
</variable>
RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - andrzejls - 2024-03-07
@latts9923 Thanks so much.
In Movies VIEW-24, 26 and 28 do not display Country flag, also VIEW-28 uses left arrow to access TOP MENU verse UP arrow as all other VIEWS. Could this be adjusted?
RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - latts9923 - 2024-03-07
@andrzejls
You're welcome!
The media flags for those views have been carried over from MQ 7 Krypton, so they never had code for the country flag. There's not a lot of room to add another flag, but I'll see if I can fit it in.
*UPDATE*
I just added the country flag and it fits just fine. I also changed the Top Menu access to up for View Type-28.
RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - andrzejls - 2024-03-07
(2024-03-07, 15:26)latts9923 Wrote: @andrzejls
You're welcome!
The media flags for those views have been carried over from MQ 7 Krypton, so they never had code for the country flag. There's not a lot of room to add another flag, but I'll see if I can fit it in.
*UPDATE*
I just added the country flag and it fits just fine. I also changed the Top Menu access to up for View Type-28. @"lats9923" This is just fantstic, thank you!
Could you post it?
RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - latts9923 - 2024-03-10
UPDATE #15 -This will update the skin to v1.1.6
Additions- I added the duration label for Songs to View Type-01.
- I added code to View Type-01 and View Type-18 to display the bitrate, samplerate and beats per minute (BPM) for Songs. The BPM will only display if it's in your ID3 tags.
- I added code to all the music viz styles to display the BPM for the song (if available).
- I added the versions, version w/extras and extras icons to View Type-10.
- I added separate artwork buttons for Seasons and Episodes. They both now have a "DEFAULT FANART" (TV Show fanart), "ARTWORK HELPER" (multiple TV Show fanart if available) and "SEASON FANART" (multiple Season fanart if available). Thanks to Shredder_guitar for the request!
- I added code to display programs in the TV Guide in different colors based on their genre.
- I added the country flag to View Type-24, 26 and 28. Thanks to andrzejls for the request!
Bug fixes- The clearlogo for style2 in music viz was persistent even if Skin Helper displayed multiple logos.
- The "+ ICONS:" button for View Type-36 was not cycling "CHARACTERART" as an option for Movies.
- The audio flag for View Type-24 and 26 was not sized correctly when "AUDIO AND SUBTITLE FLAGS" was set to "TEXT" in the Top Menu.
- The studio flag for View Type-24, 26 and 28 was not displaying in the media flags for TV Shows. Thanks to andrzejls for reporting the bug!
- The 3D case for View Type-24 and 26 was not displaying. Thanks to twinpeaks for reporting the bug!
Maintenance- You can now toggle the "EXTRA ZOOM FOCUS" for the Boxsets layout in View Type-16 when "CENTER LIST" is enabled.
- I changed the Top Menu access to up instead of left for View Type-28. Thanks to andrzejls for the request!
*This update will require another skin reset for new settings to be forced to settings.xml. To keep from losing your current settings, make sure you export your skin settings (SKIN SETTINGS > RESTORE SETTINGS > EXPORT SKIN SETTINGS) before you install the update. After installing the update you will need to reset the skin and then import the latest settings export.
RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - melons2 - 2024-03-10
(2024-03-10, 05:54)latts9923 Wrote: UPDATE #15 -This will update the skin to v1.1.6
Additions- I added the duration label for Songs to View Type-01.
- I added code to View Type-01 and View Type-18 to display the bitrate, samplerate and beats per minute (BPM) for Songs. The BPM will only display if it's in your ID3 tags.
- I added code to all the music viz styles to display the BPM for the song (if available).
- I added the versions, version w/extras and extras icons to View Type-10.
- I added separate artwork buttons for Seasons and Episodes. They both now have a "DEFAULT FANART" (TV Show fanart), "ARTWORK HELPER" (multiple TV Show fanart if available) and "SEASON FANART" (multiple Season fanart if available). Thanks to Shredder_guitar for the request!
- I added code to display programs in the TV Guide in different colors based on their genre.
- I added the country flag to View Type-24, 26 and 28. Thanks to andrzejls for the request!
Bug fixes- The clearlogo for style2 in music viz was persistent even if Skin Helper displayed multiple logos.
- The "+ ICONS:" button for View Type-36 was not cycling "CHARACTERART" as an option for Movies.
- The audio flag for View Type-24 and 26 was not sized correctly when "AUDIO AND SUBTITLE FLAGS" was set to "TEXT" in the Top Menu.
- The studio flag for View Type-24, 26 and 28 was not displaying in the media flags for TV Shows. Thanks to andrzejls for reporting the bug!
- The 3D case for View Type-24 and 26 was not displaying. Thanks to twinpeaks for reporting the bug!
Maintenance- You can now toggle the "EXTRA ZOOM FOCUS" for the Boxsets layout in View Type-16 when "CENTER LIST" is enabled.
- I changed the Top Menu access to up instead of left for View Type-28. Thanks to andrzejls for the request!
*This update will require another skin reset for new settings to be forced to settings.xml. To keep from losing your current settings, make sure you export your skin settings (SKIN SETTINGS > RESTORE SETTINGS > EXPORT SKIN SETTINGS) before you install the update. After installing the update you will need to reset the skin and then import the latest settings export. @latts9923
As always, thank you for the dedication and work you put into these updates!
Your friend
RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - andrzejls - 2024-03-10
(2024-03-10, 05:54)latts9923 Wrote: UPDATE #15 -This will update the skin to v1.1.6
Additions- I added the country flag to View Type-24, 26 and 28. Thanks to andrzejls for the request!
@latts9923. Thanks for the update. Unless I am doing something wrong, I am missing is addition of the Country Flag it View Type-24, 26 and 28. I also adjusted View Ttpe-29 to have arrow up to access Top Menu.
RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - IceFreak - 2024-03-11
Hello
So I've search this thread, but I can't find a report of the issue I'm seeing.
Basically, hitting pause (spacebar or using the kodi remote on android), I don't see the "pause" overlay that I used to see on the marcosqui's version of Aeon MQ9 I was using before.
I also don't see the seek bar trying to move forward or backwards, I have to use the keyboard shortcut to see it.
I do not know however if it's a skin issue or a kodi 21 beta 3 issue. The kodi log doesn't show anything of interest.
Please advise.
RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - MB1968 - 2024-03-11
(2024-03-11, 18:44)IceFreak Wrote: Hello
So I've search this thread, but I can't find a report of the issue I'm seeing.
Basically, hitting pause (spacebar or using the kodi remote on android), I don't see the "pause" overlay that I used to see on the marcosqui's version of Aeon MQ9 I was using before.
I also don't see the seek bar trying to move forward or backwards, I have to use the keyboard shortcut to see it.
I do not know however if it's a skin issue or a kodi 21 beta 3 issue. The kodi log doesn't show anything of interest.
Please advise.
https://forum.kodi.tv/showthread.php?tid=375410&pid=3186380#pid3186380
https://forum.kodi.tv/showthread.php?tid=375410&pid=3186385#pid3186385
RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - IceFreak - 2024-03-11
Thank you, your file fixes the problem.
I was searching the thread with the keyword pause, and I missed your reply.
RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - andrzejls - 2024-03-11
(2024-03-11, 19:02)MB1968 Wrote: (2024-03-11, 18:44)IceFreak Wrote: Hello
So I've search this thread, but I can't find a report of the issue I'm seeing.
Basically, hitting pause (spacebar or using the kodi remote on android), I don't see the "pause" overlay that I used to see on the marcosqui's version of Aeon MQ9 I was using before.
I also don't see the seek bar trying to move forward or backwards, I have to use the keyboard shortcut to see it.
I do not know however if it's a skin issue or a kodi 21 beta 3 issue. The kodi log doesn't show anything of interest.
Please advise.
https://forum.kodi.tv/showthread.php?tid=375410&pid=3186380#pid3186380
https://forum.kodi.tv/showthread.php?tid=375410&pid=3186385#pid3186385 Or you just move line #4 (" <controls>") and insert it in Line #5, rifgt above "<control type="group">". Looks like in newest version there is code error.
RE: Aeon MQ 9 Mod for Kodi 21 (Omega) - MB1968 - 2024-03-11
(2024-03-11, 19:57)andrzejls Wrote: Or you just move line #4 (" <controls>") and insert it in Line #5, rifgt above "<control type="group">". Looks like in newest version there is code error. I've noticed the difference with Winmerge. Versions of DiaglogSeekbar.xml prior to skin version 1.1.1 work fine.
|