Kodi Community Forum
Aeon Nox 4.1.9 : Showcase mod and more - FRODO - 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 Nox: Silvo (https://forum.kodi.tv/forumdisplay.php?fid=142)
+---- Thread: Aeon Nox 4.1.9 : Showcase mod and more - FRODO (/showthread.php?tid=165395)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16


Aeon Nox 4.1.9 : Showcase mod and more - FRODO - mikebzh44 - 2013-05-21

This mod is the future of :

http://forum.xbmc.org/showthread.php?tid=149698

As Aeon Nox 4.1.9 is stable for few days, I have made this new mod for 4e097d484d commit :

https://github.com/BigNoid/Aeon-Nox

Features :

* Display disc case for widget :

Image

* Display resolution case for widget :

Image

* Remove case for movieset in Showcase view :

Image

You can then provide your own case, with resolution as Phil think is meaningless to calculate an average resolution Wink

* Resolution cases for dynamic background in movieset (need script.extendedinfo to be overwritten) :

Image

What's you need :

* Files to overwrite Aeon Nox 4.1.9 files :

https://www.dropbox.com/s/7qro9vqa0ubwzaq/AeonNox-4.1.9-Mod.zip

* Modded script.extendedinfo :

https://www.dropbox.com/s/mdpv0v47yg79g8q/script.extendedinfo.zip

* Cases background for square theme :

https://www.dropbox.com/s/kcgmz681fgrxgh4/AeonNox-4.1.9-Mod-Square.zip

* How to install and configure this mod : https://www.dropbox.com/s/7s251l73ef6ixif/AeonNox4.1.9Mod_EN.pdf

* If you are running Aeon Nox 4.1.9 for Gotham, Warlion have merged my mod into Aeon Nox 4.1.9.9


RE: Aeon Nox 4.1.9 : Showcase mod and more - mikebzh44 - 2013-05-23

Like Scharwzy, I'm back Wink

So, it's still WIP and it's not available on my dropbox but case opening is back for movies and for moviesets.

I have change the color of the default case to identify movieset a the first sight and up to 6 discarts can roll into the case :

Image

Image

Image


RE: Aeon Nox 4.1.9 : Showcase mod and more - Eisi2005 - 2013-05-23

@mike

i have downloaded latest git version and installed your mod. I dont get live DVD Cover as background, i have enabled dvd live case in Background Customizer.
Second you have coded a patch to show for sets all movie dates in and not only one date of movie. Could you put this in your mod ?

Image


RE: Aeon Nox 4.1.9 : Showcase mod and more - mikebzh44 - 2013-05-23

I will check but I got cases in live DVD background for moviesets on my HTPC and my laptop at my office. But I forgot to include resolution for cases so I will push a new version on my dropbox soon. I will add all years for movieset too.


RE: Aeon Nox 4.1.9 : Showcase mod and more - toutoune290 - 2013-05-24

hi,
where can i find aeon 4.1.9 ?


RE: Aeon Nox 4.1.9 : Showcase mod and more - st graveyard - 2013-05-24

(2013-05-24, 09:46)toutoune290 Wrote: hi,
where can i find aeon 4.1.9 ?

Yes, where? Is 4.1.9 a new official repo release? or still GIT?


RE: Aeon Nox 4.1.9 : Showcase mod and more - mikebzh44 - 2013-05-24

Aeon Nox 4.1.9 For GITHUB : https://github.com/BigNoid/Aeon-Nox


RE: Aeon Nox 4.1.9 : Showcase mod and more - ShadowTek - 2013-05-26

Nice work Mike !


RE: Aeon Nox 4.1.9 : Showcase mod and more - boppyman - 2013-05-27

Hi mike

I've installed the latest git version but when after installed you mod nothing happens

Where can i check to make sure i have the 4.1.9 version?


RE: Aeon Nox 4.1.9 : Showcase mod and more - mikebzh44 - 2013-05-27

(2013-05-27, 16:27)boppyman Wrote: Hi mike

I've installed the latest git version but when after installed you mod nothing happens

Where can i check to make sure i have the 4.1.9 version?

Check in your enabled addons. But you have to configure the showcase view to see something.


RE: Aeon Nox 4.1.9 : Showcase mod and more - _Andy_ - 2013-05-28

Helle Mike

I love your mod. I read case opening is back in 4.1.9. Any chance for making it public soon?


RE: Aeon Nox 4.1.9 : Showcase mod and more - mikebzh44 - 2013-05-28

I have to fix something when not using coverflow option.


RE: Aeon Nox 4.1.9 : Showcase mod and more - mikebzh44 - 2013-05-28

@Phil : I don't understand why DiscArt for movie sets are not displayed when coverflow is OFF.

I have added this code :

Code:
<control type="image">
            <posx>1426</posx>
            <posy>70</posy>
            <width>240</width>
            <height>240</height>
            <aspectratio align="bottom">keep</aspectratio>
            <texture background="true">$INFO[Window(home).Property(Set.Movie.1.Art(discart))]</texture>
            <animation type="Conditional" condition="Control.IsVisible(1970) + Control.IsVisible(7550)" reversible="false">
                <effect type="slide" start="0,0" end="-1400,0" delay="0" time="2300" tween="cubic" easing="inout"/>
                <effect type="rotate" start="0" center="auto" end="720" delay="0" time="2300" tween="cubic" easing="inout"/>
            </animation>
            <visible>Skin.HasSetting(usecases) + !IsEmpty(Window(home).Property(Set.Movie.1.Art(discart)))</visible>
        </control>

in <focusedlayout>.

Everything is OK when coverflow is ON but when it's OFF, discart art is not shown but case open.

If I replace $INFO[Window(home).Property(Set.Movie.1.Art(discart)) with common/cdart/default.png, disc is displayed :

Image

I have modded infopanel to display $INFO[Window(home).Property(Set.Movie.1.Art(discart)) instead of Director, the property is OK :

Image

Image

Last release of my mod :

https://www.dropbox.com/s/7qro9vqa0ubwzaq/AeonNox-4.1.9-Mod.zip

PS : As I'm testing my mod on my laptop at my office, I don't have any movies on my laptop. I have just copy my databases and cache from my OpenELEC HTPC.
I don't think it's the reason because DiscArt are displayed when Coverflow is ON


Thanks for your help.


RE: Aeon Nox 4.1.9 : Showcase mod and more - boppyman - 2013-05-28

Thanks its working now Smile

I'm not getting disk arts to roll into the case for sets though for some reason


RE: Aeon Nox 4.1.9 : Showcase mod and more - mikebzh44 - 2013-05-28

@boppyman : Are you using Coverflow or not ?