RE: Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus) - Pi7a - 2023-11-13
(2023-11-13, 09:43)Juan Mortyme Wrote: @Deano81
To have the set overview shown go to the top menu and under the 'View Type' column scroll down to 'Plot' and select either 'Consensus' or 'Plot' if you select either 'Extended Consensus' or 'Extended Plot' it will cycle through the plot of each movie in the set. I'm not 100% sure if that option is available in every view because I only two or three view types on a regular basis. Thats not available on view 15. Ive come over from nox silvo and it always worked from the initial scrape but not now. Not sure what view Deano81 is using.
RE: Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus) - latts9923 - 2023-11-14
@Pi7a
The Movie Set plot should be working...I see it in View Type-15. What scraper are you using?
RE: Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus) - Juan Mortyme - 2023-11-14
I use view 16 and it works fine.
RE: Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus) - Pi7a - 2023-11-14
@latts9923
I've tried Universal, Tmdb and tvdb v4 even as far as a fresh unmodified install before trying each to see if id missed or messed up a setting. Only items on view are the cases, panel, backgrounds and logo. I get no other info at all until I highlight a single movie.
edit:ive jus reinstalled and scraped in the default skin and scraper and it worked. Keeping the files i installed mq 9 and set plots are blank.
Here is a log from a fresh install and files scraped under mq9 and plots blank still.
https://paste.kodi.tv/uvoxeqolid.kodi
thanks
RE: Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus) - Juan Mortyme - 2023-11-15
@Pi7a
I just checked View 15 and I see the plot for sets. Do you see the set plot in any other views?
RE: Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus) - latts9923 - 2023-11-15
@Pi7a
Ah...after looking at your log I see why you're missing the plot. You don't have Skin Helper installed. MQ 9 uses Skin Helper to display the plot for Sets. I changed the code to work either way. Try this if you would. Open Variables.xml and find this (should be line 4,154)...
xml: <variable name="media_plot">
<value condition="Control.HasFocus(6700)">$INFO[Container(6700).ListItem.Property(plot)]</value>
<value condition="String.IsEqual(ListItem.DbType,set)">$INFO[Window(home).Property(SkinHelper.ListItem.Plot)]</value>
<value condition="String.IsEqual(ListItem.DbType,album)">$INFO[ListItem.Property(Album_Description)]</value>
<value condition="String.IsEqual(ListItem.DbType,artist)">$INFO[ListItem.Property(Artist_Description)]</value>
<value condition="String.IsEqual(ListItem.DbType,song)">$INFO[Window(home).Property(SkinHelper.Music.Info)]</value>
<value condition="!String.IsEmpty(ListItem.AddonDescription)">$INFO[ListItem.AddonSummary][CR]$INFO[ListItem.AddonDescription]</value>
<value>$INFO[ListItem.Plot]</value>
</variable>
Replace that variable with this...
xml: <variable name="media_plot">
<value condition="Control.HasFocus(6700)">$INFO[Container(6700).ListItem.Property(plot)]</value>
<value condition="String.IsEqual(ListItem.DbType,set)">$INFO[ListItem.Plot]</value>
<value condition="String.IsEqual(ListItem.DbType,set) + String.IsEmpty(ListItem.Plot)">$INFO[Window(home).Property(SkinHelper.ListItem.Plot)]</value>
<value condition="String.IsEqual(ListItem.DbType,album)">$INFO[ListItem.Property(Album_Description)]</value>
<value condition="String.IsEqual(ListItem.DbType,artist)">$INFO[ListItem.Property(Artist_Description)]</value>
<value condition="String.IsEqual(ListItem.DbType,song)">$INFO[Window(home).Property(SkinHelper.Music.Info)]</value>
<value condition="!String.IsEmpty(ListItem.AddonDescription)">$INFO[ListItem.AddonSummary][CR]$INFO[ListItem.AddonDescription]</value>
<value>$INFO[ListItem.Plot]</value>
</variable>
Now open Kodi and see if the plot is displayed.
RE: Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus) - Pi7a - 2023-11-15
(2023-11-15, 13:55)latts9923 Wrote: @Pi7a
Now open Kodi and see if the plot is displayed. Great stuff thanks, Thats done the job.
When you get time is there a chance you can help me with the panel multi-art you did for me please?
Ive tried to keep the panel fanart rotating and the main background a fixed black image but everything i do changes both and im stuck.
massive thanks for all this help its greatly appreciated
@Juan_Mortyme
it did actually work in view 16 but only 16
EDIT: ocd had me quickly sort skin helper, that has also worked so somethig to remember
thanks again
RE: Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus) - latts9923 - 2023-11-16
@Pi7a
Try this. Change the control I provided from this...
xml: <control type="multiimage">
<left>30</left>
<top>126</top>
<width>1160</width>
<height>630</height>
<fadetime>common_fade_time</fadetime>
<timeperimage>common_time_per_fanart</timeperimage>
<include condition="Skin.HasSetting(keep_aspect)">keep_aspect</include>
<imagepath background="true">$VAR[media_fanart]</imagepath>
<include>animation_panscan</include>
</control>
To this...
xml: <control type="multiimage">
<left>30</left>
<top>126</top>
<width>1160</width>
<height>630</height>
<fadetime>common_fade_time</fadetime>
<timeperimage>common_time_per_fanart</timeperimage>
<include condition="Skin.HasSetting(keep_aspect)">keep_aspect</include>
<imagepath background="true">plugin://script.artwork.helper/multiimage/listitem/?refresh=$INFO[ListItem.DBID]&&arttype=fanart</imagepath>
<include>animation_panscan</include>
</control>
Now open includes.xml and find this (line 13,725)...
xml: <control type="image">
<fadetime>common_fade_time</fadetime>
<include condition="Skin.HasSetting(keep_aspect)">keep_aspect</include>
<texture>$INFO[Window(home).Property(background_copy)]</texture>
<include>animation_panscan</include>
<animation effect="fade" end="100" time="200">Visible</animation>
<visible>![Window.IsVisible(pictures) + !String.IsEmpty(Control.GetLabel(8887))]</visible>
</control>
Replace it with this...
xml: <control type="image">
<fadetime>common_fade_time</fadetime>
<include condition="Skin.HasSetting(keep_aspect)">keep_aspect</include>
<texture>$INFO[Window(home).Property(background_copy)]</texture>
<include>animation_panscan</include>
<animation effect="fade" end="100" time="200">Visible</animation>
<visible>![Window.IsVisible(pictures) + !String.IsEmpty(Control.GetLabel(8887))] + !Control.IsVisible(54)</visible>
</control>
Below that find...
xml: <control type="multiimage">
<fadetime>common_fade_time</fadetime>
<timeperimage>common_time_per_fanart</timeperimage>
<include condition="Skin.HasSetting(keep_aspect)">keep_aspect</include>
<imagepath background="true">$VAR[media_fanart]</imagepath>
<include>animation_panscan</include>
<visible>!ListItem.IsParentFolder + !Control.IsVisible(84)</visible>
</control>
Replace with...
xml: <control type="multiimage">
<fadetime>common_fade_time</fadetime>
<timeperimage>common_time_per_fanart</timeperimage>
<include condition="Skin.HasSetting(keep_aspect)">keep_aspect</include>
<imagepath background="true">$VAR[media_fanart]</imagepath>
<include>animation_panscan</include>
<visible>!ListItem.IsParentFolder + !Control.IsVisible(84) + !Control.IsVisible(54)</visible>
</control>
See if that works for you...and you're welcome!
RE: Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus) - Pi7a - 2023-11-16
(2023-11-16, 13:51)latts9923 Wrote: @Pi7a
Try this. Change the control I provided from this...
See if that works for you...and you're welcome! Thats done it mate, working and looking great. Thanks so much, i would never have figured that out. The panel and cases stand out and look so much better without the fanart behind them, for us at least.
Truly grateful as we use it all the time and its brilliant to finally have it setup nicely, loved silvo but this is great.
thanks for all your help, i cant say it enough.
RE: Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus) - latts9923 - 2023-11-16
@Pi7a
You're welcome!
RE: Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus) - Shredder_guitar - 2023-11-18
*comment removed* I answered my own question.
On another note. I've had intermittent results with the repo. the dl of mq9 went fine, but mq8 and the theme pack either hung or went enormously slow for me and i ended up canceling the dl and manually installing.
RE: Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus) - wags1 - 2023-11-18
@Shredder_guitar I have found that updating the theme pac goes VERY slow but eventually does complete. I have completely given up on updating MQ9 Mod or MQ8 Mod from the repo and just DL the zip file and manually update. I'm running on Nvidia Shields so just chalked it up to some anomaly with the platform. It never used to be a problem but I forget now exactly when the issue started, it's been awhile.
RE: Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus) - latts9923 - 2023-11-18
UPDATE #8
Additions- I added a button named "SHOW VIDEO INFO SEPARATORS" to the Top Menu for the MQ 8 Video Info screen. Thanks to melons2 for the request!
- I added View Type-06 to the list of views for Music Videos. Thanks to _Mike_ for the request!
- I added the following studios to the Colored Studio Icons add-on...6th and Idaho, 7Flix, 7HD, 7mate HD, 7th Art Releasing, 9Gem HD, 9Go!, 9HD, 9Life, 9Rush, 10 Bold, 10 Peach, 10 shake, 24 25 Films, 87Eleven, 777 Films Corporation, 1111 MediaWorks, AbbottVision, ABC (Au), ABC AU, ABC Classics, ABC Comedy, ABC Jazz, ABC ME, ABC Me2, ABC Me3, ABC News 24, ABC Pictures International, ABC Pictures, ABC TV Plus, Acorn TV, Acorn, AcornTV, Ad Vitam Production, Adler Entertainment, AFI, Aftermath Entertainment, Aftermath, AFTRS, Agamemnon Films, Agat Films & Cie, AGBO, Agencia Nacional do Cinema (ANCINE), Agência Nacional do Cinema (ANCINE), AI-Film, alfa matrix, Alfama Films, alfred hitchcock productions, alfred j. hitchcock productions, All 4, Almeida Theatre, Alter Ego Pictures, Amazon Freevee, AMBI Group, AMC+, américa, Amicus Productions, Amusement Park Films, ANCINE, Anova Pictures, Archangel Studios, Ariztical Entertainment, Ariztical, Armory Films, ARTE GEIE, Artebis Entertainment, Artébis Entertainment, Artemis Productions, Artémis Productions, Artsploitation Films, Aspect Ratio Films, Aspect Ratio, Asta Film, Astillero Films, Asymmetrical Productions, Atomic Monster, Atresmedia, ATRESplayer Premium, Attraction Images, Audience, Avante Filmes. These images are provided by the user lynxstrike. I will continue to merge icons alphabetically as time permits.
Bug fixes- I removed the "SHOW ALTERNATE 4K FLAG" button from SKIN SETTINGS > ICONS AND IMAGES. The 4K UHD flag is now available as a flag style under SKIN SETTINGS > MEDIA CASE FOR VIDEOS. This allows you to choose a case color and display the 4K UHD logo for the 4K case if you desire. Thanks to escoces1968 for reporting the case color problem!
- I removed an image from View Type-36 that was keeping the fanart from being displayed. Thanks to cd-r for reporting the bug!
- The Chinese language flag was displaying as blue instead of red. Thanks to MB1968 for reporting the bug!
- The Panel settings were not working for View Type-06. Thanks to _Mike_ for reporting the bug!
Maintenance- The "SHOW DIFFUSE FOR DISC ART" button is now visible for all views that require the option. Thanks to _Mike_ for requesting this!
- I replaced the TVDB rating/votes info for Trakt rating/votes info in the MQ 8 Video Info screen due to the fact that the TVDB ratings are no longer being updated. Thanks to MB1968 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 Multi-Mod for Kodi 20 (Nexus) - Zurpa - 2023-11-18
Hello,
the skin is great and fast, it's just missing the vertical menu, any chance to get it someday?
RE: Aeon MQ 9 Multi-Mod for Kodi 20 (Nexus) - wags1 - 2023-11-18
@Zurpa That was a change to the MQ base skin that was made in the update from MQ8 to MQ9. Lots of folks, including myself, have asked the base MQ dev MarcosQui if it could be brought back and so far the answer has been no.
|