Guest - Testers are needed for the reworked CDateTime core component. See... https://forum.kodi.tv/showthread.php?tid=378981 (September 29) x
  • 1
  • 67
  • 68
  • 69(current)
  • 70
  • 71
  • 93
Mod Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus)
@Shredder_guitar
A skin reset should have added those to settings.xml. You can manually add them if you'd rather not perform another reset. Close Kodi and add these two lines to settings.xml...

xml:
<setting id="view_554_music_discart" type="string">ifavailable</setting>
<setting id="view_554_videos_discart" type="string">ifavailable</setting>
Reply
(2023-12-31, 21:57)latts9923 Wrote: A skin reset should have added those to settings.xml. You can manually add them if you'd rather not perform another reset. Close Kodi and add these two lines to settings.xml...

ok that fixed it. I was looking in the addons\skin.aeonmq9\xml\settings.xml, not the userdata\skin.aeonmq9\settings.xml. After looking in the correct settings file, i was able to update the lines.
Kodi ver.19.1  Aeon MQ 8 Matrix Mod Windows 10 
Reply
(2023-12-31, 14:28)latts9923 Wrote: @Ruckus
Well crap...I thought that was it. I can't think of anything else that would keep that info from displaying.


Ok so it was obviously a problem with my install and something to do with installing over the top of the original skin or something, I did a complete reinstall and its working perfectly.

again, thank you for your help and your excellent work.
Reply
Hi @latts9923

I'm still having issues with the source media flag.  On some views it works and others it doesn't.  I usually use kodiflix and it only works for dvd and 3d blurays.  It doesn't work for regular blurays or 4k UHD.  Here is a screenshot showing kodiflix not working with one movie and working with same movie in another view.  Not sure what is going on.  Where does Kodiflix grab the source flag from vs. the other view?  Tested on windows and linux and same thing.  I use nfo's for local scraping of my library.

Image

Image
Reply
@Shredder_guitar
Good deal!

@Ruckus
Glad you got it working...and you're welcome!

@grimmace92
Hmm...let me check the code. I'm away from my mod PC for a few days, but I'll get back with you.
Reply
UPDATE #15*

Image Additions
  • I added the studio Sony Pictures Releasing.
  • I added the option to switch between the default MQ 9 Extended Info script or the MQ 8 version. There are two new buttons in the Top Menu under "ORGANIZE" named "SHOW DEFAULT EXTENDED INFO" and "SHOW AEON MQ 8 EXTENDED INFO". Thanks to Juan Mortyme for the request!
  • The "DAY BY DAY" will display 7 days when selecting Weather and you're using the 7 day widget. Thanks to andrzejls for the request!
  • I added the program name to the channel widget. At the top you will now see the channel name followed by the program name. Thanks to Buff for the request!
  • For those of you that would like to use Skin Helper to fetch your artwork, I added a new button named "SKIN HELPER FANART" to the top menu under "ART".
  • I created separate artwork controls for Movies/Sets and TV Shows. For example, you can now set Movies to "DEFAULT FANART" and TV Shows to "ARTWORK HELPER FANART". Thanks to Shredder_guitar for the request!
  • I added the header color to the scrollbar for KodiFlix and KodiFlix TV.

Image Bug fixes
  • I missed the "WEATHER SETTINGS" button when you open Weather and select CONFIGURE. That now takes you to the Weather settings. Thanks to andrzejls for reporting the bug!
  • The alphabet scrollbar was not working for View Type-23 (Magazine 3D). Thanks to Chalklands for reporting the bug!

*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.
Reply
@grimmace92
Can you post the entire filename of the video that won't display the 4K flag in KodiFlix?
Reply
its 4k and regular blu rays that don't work.  3d blu rays do work.  Here's an example of how I name the mkv files for each

an eample of a 4k movie would be:

All Quiet on the Western Front.2160p.dv.12bit.atmos.4k.mkv

an example of a regular bluray would be:

The Card Counter.bluray.mkv

an example of a 3D movie would be:

Wonder Woman 1984.bluray.3d.mkv
Reply
Is there a way to force all movie posters on the movies widget to be the same size? Every now and then I get one that's taller than the rest for some reason
Reply
@grimmace92
That filename should work...it just needs "4k" somewhere in it. I just tried a test movie with "All Quiet on the Western Front.2160p.dv.12bit.atmos.4k" as the filename and I see the 4K flag using KodiFlix. What OS are you using?

@starkos
Someone else posted that their Movies that have the word "Movie" in the title are sized differently. I can't reproduce this...might be an OS difference with this one as well. What OS are you using?
Reply
(2024-01-08, 01:46)latts9923 Wrote: @grimmace92
That filename should work...it just needs "4k" somewhere in it. I just tried a test movie with "All Quiet on the Western Front.2160p.dv.12bit.atmos.4k" as the filename and I see the 4K flag using KodiFlix. What OS are you using?

I'm not sure what the problem is.  I tested on OSMC and a Windows machne.  I even deleted my library and created a test library without nfo's and used the kodi scraper.  Same exact results.  Only displays the 3d bluray logo or dvd logo.  Everything works for me using the MQ8 mod which makes this even more frustrating.  Where are the logos grabbed from within kodi? Maybe those two are missing or named wrong?
Reply
For KodiFlix, open Includes.xml and find <include name="media_flags_type">. At the bottom of that include you will see the 4k control. For Shelf 3D, open Variables.xml and find <variable name="mediatype">. The second value is the one for 4K. Both are pointing to the same image path. You could try changing the visible line for 4k in "media_flags_type" to this...

xml:
<visible>$PARAM[visible] + [String.Contains($PARAM[condition],4k) | String.Contains($PARAM[condition],2160p)] + !String.Contains($PARAM[condition],web)</visible>
Reply
(2024-01-08, 13:55)latts9923 Wrote: For KodiFlix, open Includes.xml and find <include name="media_flags_type">. At the bottom of that include you will see the 4k control. For Shelf 3D, open Variables.xml and find <variable name="mediatype">. The second value is the one for 4K. Both are pointing to the same image path. You could try changing the visible line for 4k in "media_flags_type" to this...

xml:
<visible>$PARAM[visible] + [String.Contains($PARAM[condition],4k) | String.Contains($PARAM[condition],2160p)] + !String.Contains($PARAM[condition],web)</visible>

Unfortunately no good.  I even updated to Omega beta.  I tried adding a . in front of the 4k and didn't change anything.  Some of the includes like 3d have the . in front of it.  No clue what is going on. 

Image
Reply
(2024-01-08, 18:52)grimmace92 Wrote:
(2024-01-08, 13:55)latts9923 Wrote: For KodiFlix, open Includes.xml and find <include name="media_flags_type">. At the bottom of that include you will see the 4k control. For Shelf 3D, open Variables.xml and find <variable name="mediatype">. The second value is the one for 4K. Both are pointing to the same image path. You could try changing the visible line for 4k in "media_flags_type" to this...

xml:
<visible>$PARAM[visible] + [String.Contains($PARAM[condition],4k) | String.Contains($PARAM[condition],2160p)] + !String.Contains($PARAM[condition],web)</visible>

Unfortunately no good.  I even updated to Omega beta.  I tried adding a . in front of the 4k and didn't change anything.  Some of the includes like 3d have the . in front of it.  No clue what is going on. 

Image
This mod is for Nexus not Omega.
Reply
Yes I know thanks.  Thats why I said i upgraded to Omega to rule out it being a Nexus issue.  The issue remains for me on both.  Also doesn't matter if its an nfo or scraping directly with kodi.  Also tried a ton of different ways to name the file to rule that out as well.   i'm out of ideas.  It works for me using MQ8.  The difference being you have to load in all of the extra resource image files for MQ8.  Nexus its supposed to just work without them.
Reply
  • 1
  • 67
  • 68
  • 69(current)
  • 70
  • 71
  • 93

Logout Mark Read Team Forum Stats Members Help
Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus)0