Kodi Community Forum

Full Version: [RELEASE] Aeon Nox 2.0 (deprecated)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
@fional:

Try replacing the group that has the description ListItem Info with this code:
Code:
<control type="group">
          <description>ListItem Info</description>
          <animation effect="slide" start="0,0" end="0,-110" time="150" condition="!Skin.HasSetting(highlist)">Conditional</animation>
          <control type="image">
            <posx>850</posx>
            <posy>714</posy>
            <height>1</height>
            <width>410</width>
            <colordiffuse>66FFFFFF</colordiffuse>
            <texture background="true">views/listpanel_line.png</texture>
            <visible>[Container.Content(seasons)|Container.Content(tvshows)]+!Skin.HasSetting(highlist)</visible>
          </control>
          <control type="label">
            <posx>850</posx>
            <posy>720</posy>
            <height>13</height>
            <width>430</width>
            <font>Font_Reg18</font>
            <textcolor>abFFFFFF</textcolor>
            <label>$LOCALIZE[20360]:</label>
            <visible>[Container.Content(seasons)|Container.Content(tvshows)]+!Skin.HasSetting(highlist)</visible>
          </control>
          <control type="label">
            <posx>960</posx>
            <posy>720</posy>
            <height>13</height>
            <width>220</width>
            <font>Font_Reg18</font>
            <textcolor>white</textcolor>
            <label>$INFO[ListItem.Property(TotalEpisodes)]$INFO[ListItem.Property(UnwatchedEpisodes), ($LOCALIZE[16101]: ,)]</label>
            <visible>[Container.Content(seasons)|Container.Content(tvshows)]+!Skin.HasSetting(highlist)</visible>
          </control>
          <control type="label">
            <posx>850</posx>
            <posy>745</posy>
            <height>13</height>
            <width>430</width>
            <font>Font_Reg18</font>
            <textcolor>abFFFFFF</textcolor>
            <label>Drive:</label>
            <visible>[Container.Content(seasons)|Container.Content(tvshows)]+!Skin.HasSetting(highlist)</visible>
          </control>
          <control type="label">
            <posx>960</posx>
            <posy>745</posy>
            <height>13</height>
            <width>320</width>
            <font>Font_Reg18</font>
            <textcolor>white</textcolor>
            <scroll>true</scroll>
            <label fallback="Outer Space">$INFO[ListItem.Foldername]$INFO[ListItem.FileName]</label>
            <visible>[Container.Content(seasons)|Container.Content(tvshows)]+!Skin.HasSetting(highlist)</visible>
          </control>
          <control type="textbox">
            <posx>850</posx>
            <posy>510</posy>
            <width>425</width>
            <height>148</height>
            <font>Font_Reg18</font>
            <label>$INFO[ListItem.Plot]</label>
            <textcolor>d0FFFFFF</textcolor>
            <autoscroll delay="8000" time="2000" repeat="8000">Skin.HasSetting(AutoScroll)</autoscroll>
            <visible>Skin.HasSetting(highlist)</visible>
          </control>
          <control type="textbox">
            <posx>850</posx>
            <posy>510</posy>
            <width>425</width>
            <height>128</height>
            <font>Font_Reg18</font>
            <label>$INFO[ListItem.Plot]</label>
            <textcolor>d0FFFFFF</textcolor>
            <autoscroll delay="8000" time="2000" repeat="8000">Skin.HasSetting(AutoScroll)</autoscroll>
            <visible>!Container.Content(tvshows)+!Container.Content(seasons)+Skin.HasSetting(LowListPlotOnly)+!Skin.HasSetting(highlist)</visible>
          </control>
          <control type="textbox">
            <posx>850</posx>
            <posy>515</posy>
            <width>425</width>
            <height>190</height>
            <font>Font_Reg18</font>
            <label>$INFO[ListItem.Plot]</label>
            <textcolor>d0FFFFFF</textcolor>
            <autoscroll delay="8000" time="2000" repeat="8000">Skin.HasSetting(AutoScroll)</autoscroll>
            <visible>!Container.Content(seasons)+[!Skin.HasSetting(LowListPlotOnly)|Container.Content(tvshows)]+!Skin.HasSetting(highlist)</visible>
          </control>
          <control type="textbox">
            <posx>850</posx>
            <posy>510</posy>
            <width>425</width>
            <height>148</height>
            <font>Font_Reg18</font>
            <label>$INFO[Container.ShowPlot]</label>
            <textcolor>d0FFFFFF</textcolor>
            <autoscroll delay="8000" time="2000" repeat="8000">Skin.HasSetting(AutoScroll)</autoscroll>
            <visible>Container.Content(seasons)+Skin.HasSetting(highlist)+ListItem.IsFolder</visible>
          </control>
          <control type="textbox">
            <posx>850</posx>
            <posy>515</posy>
            <width>425</width>
            <height>190</height>
            <font>Font_Reg18</font>
            <label>$INFO[Container.ShowPlot]</label>
            <textcolor>d0FFFFFF</textcolor>
            <autoscroll delay="8000" time="2000" repeat="8000">Skin.HasSetting(AutoScroll)</autoscroll>
            <visible>Container.Content(seasons)+!Skin.HasSetting(highlist)+ListItem.IsFolder</visible>
          </control>
        </control>
Big_Noid Wrote:@fional:

Try replacing the group that has the description ListItem Info with this code:
Code:
<control type="group">
          <description>ListItem Info</description>
          <animation effect="slide" start="0,0" end="0,-110" time="150" condition="!Skin.HasSetting(highlist)">Conditional</animation>
          <control type="image">
            <posx>850</posx>
            <posy>714</posy>
            <height>1</height>
            <width>410</width>
            <colordiffuse>66FFFFFF</colordiffuse>
            <texture background="true">views/listpanel_line.png</texture>
            <visible>[Container.Content(seasons)|Container.Content(tvshows)]+!Skin.HasSetting(highlist)</visible>
          </control>
          <control type="label">
            <posx>850</posx>
            <posy>720</posy>
            <height>13</height>
            <width>430</width>
            <font>Font_Reg18</font>
            <textcolor>abFFFFFF</textcolor>
            <label>$LOCALIZE[20360]:</label>
            <visible>[Container.Content(seasons)|Container.Content(tvshows)]+!Skin.HasSetting(highlist)</visible>
          </control>
          <control type="label">
            <posx>960</posx>
            <posy>720</posy>
            <height>13</height>
            <width>220</width>
            <font>Font_Reg18</font>
            <textcolor>white</textcolor>
            <label>$INFO[ListItem.Property(TotalEpisodes)]$INFO[ListItem.Property(UnwatchedEpisodes), ($LOCALIZE[16101]: ,)]</label>
            <visible>[Container.Content(seasons)|Container.Content(tvshows)]+!Skin.HasSetting(highlist)</visible>
          </control>
          <control type="label">
            <posx>850</posx>
            <posy>745</posy>
            <height>13</height>
            <width>430</width>
            <font>Font_Reg18</font>
            <textcolor>abFFFFFF</textcolor>
            <label>Drive:</label>
            <visible>[Container.Content(seasons)|Container.Content(tvshows)]+!Skin.HasSetting(highlist)</visible>
          </control>
          <control type="label">
            <posx>960</posx>
            <posy>745</posy>
            <height>13</height>
            <width>320</width>
            <font>Font_Reg18</font>
            <textcolor>white</textcolor>
            <scroll>true</scroll>
            <label fallback="Outer Space">$INFO[ListItem.Foldername]$INFO[ListItem.FileName]</label>
            <visible>[Container.Content(seasons)|Container.Content(tvshows)]+!Skin.HasSetting(highlist)</visible>
          </control>
          <control type="textbox">
            <posx>850</posx>
            <posy>510</posy>
            <width>425</width>
            <height>148</height>
            <font>Font_Reg18</font>
            <label>$INFO[ListItem.Plot]</label>
            <textcolor>d0FFFFFF</textcolor>
            <autoscroll delay="8000" time="2000" repeat="8000">Skin.HasSetting(AutoScroll)</autoscroll>
            <visible>Skin.HasSetting(highlist)</visible>
          </control>
          <control type="textbox">
            <posx>850</posx>
            <posy>510</posy>
            <width>425</width>
            <height>128</height>
            <font>Font_Reg18</font>
            <label>$INFO[ListItem.Plot]</label>
            <textcolor>d0FFFFFF</textcolor>
            <autoscroll delay="8000" time="2000" repeat="8000">Skin.HasSetting(AutoScroll)</autoscroll>
            <visible>!Container.Content(tvshows)+!Container.Content(seasons)+Skin.HasSetting(LowListPlotOnly)+!Skin.HasSetting(highlist)</visible>
          </control>
          <control type="textbox">
            <posx>850</posx>
            <posy>515</posy>
            <width>425</width>
            <height>190</height>
            <font>Font_Reg18</font>
            <label>$INFO[ListItem.Plot]</label>
            <textcolor>d0FFFFFF</textcolor>
            <autoscroll delay="8000" time="2000" repeat="8000">Skin.HasSetting(AutoScroll)</autoscroll>
            <visible>!Container.Content(seasons)+[!Skin.HasSetting(LowListPlotOnly)|Container.Content(tvshows)]+!Skin.HasSetting(highlist)</visible>
          </control>
          <control type="textbox">
            <posx>850</posx>
            <posy>510</posy>
            <width>425</width>
            <height>148</height>
            <font>Font_Reg18</font>
            <label>$INFO[Container.ShowPlot]</label>
            <textcolor>d0FFFFFF</textcolor>
            <autoscroll delay="8000" time="2000" repeat="8000">Skin.HasSetting(AutoScroll)</autoscroll>
            <visible>Container.Content(seasons)+Skin.HasSetting(highlist)+ListItem.IsFolder</visible>
          </control>
          <control type="textbox">
            <posx>850</posx>
            <posy>515</posy>
            <width>425</width>
            <height>190</height>
            <font>Font_Reg18</font>
            <label>$INFO[Container.ShowPlot]</label>
            <textcolor>d0FFFFFF</textcolor>
            <autoscroll delay="8000" time="2000" repeat="8000">Skin.HasSetting(AutoScroll)</autoscroll>
            <visible>Container.Content(seasons)+!Skin.HasSetting(highlist)+ListItem.IsFolder</visible>
          </control>
        </control>

Thank you so much, I'll give that a try - I'm almost home! Smile I really liked how the banner shows up in TV Show browsing in lowlist, so you can see the banner by the channel logo, that was a very nice idea!

When you select a TV Show or Movie and hit "C", the movie/show selected is highlighted in an orange colour. What file would this be stored in for a custom edit, so I could have it match that new glowbar configuration which I have set at blue right now. Or is that an XBMC thing I never noticed until now?
No that was blue, but I didn't like how the blue color contrasted with the new list selectbar. So I made the selected color for focused items orange. Unfocused items are still bue when playing.
That would be in includes.xml, search for listcolorfocus.

But that might be a nice touch, to automatically set the same color as the glowbar. Only problem is when you have it set to white, then the text is unreadable.
Big_Noid Wrote:No that was blue, but I didn't like how the blue color contrasted with the new list selectbar. So I made the selected color for focused items orange. Unfocused items are still bue when playing.
That would be in includes.xml, search for listcolorfocus.

But that might be a nice touch, to automatically set the same color as the glowbar. Only problem is when you have it set to white, then the text is unreadable.

I'm home and that bit of cut & paste you gave me worked perfectly, thank you very much! Smile

Just for a point of reference, so I can better learn - is there a place where the previous Nox is kept? I can learn better how some things worked by examining what was changed.
In the addons folder should be a packages folder. There would be where previous and current zips of addons are stored.
Hi mate just got your new version of the skin

i noticed in showcase view with panel info you can not select the country: to audio/subtitles as i never used country and al;ways like the audio/subs option as i like to know what movies have subs ? how can i enable this
Hallo,

I have two "problems" with the new version:

1. My keymap-entry to filter does not work anymore Sad
Code:
<f mod="ctrl">SendClick(25,19)</f>
Any idea how i can fix this?

2. Before the update the view "showcase" hat no start and no end. It was like a big "circle". Now the movies goes only from left to the right and then at the end it just "jumps" to the first movie. I liked the view much more before the update. Is it possible to enable the "circle view" again?

Thanks,
Daniel
meridius Wrote:Hi mate just got your new version of the skin

i noticed in showcase view with panel info you can not select the country: to audio/subtitles as i never used country and al;ways like the audio/subs option as i like to know what movies have subs ? how can i enable this
I told you I would remove it Wink I'll make a xml file with the country and subs which you can replace in 720p folder.
_Daniel_ Wrote:Hallo,

I have two "problems" with the new version:

1. My keymap-entry to filter does not work anymore Sad
Code:
<f mod="ctrl">SendClick(25,19)</f>
Any idea how i can fix this?

2. Before the update the view "showcase" hat no start and no end. It was like a big "circle". Now the movies goes only from left to the right and then at the end it just "jumps" to the first movie. I liked the view much more before the update. Is it possible to enable the "circle view" again?

Thanks,
Daniel

1: this is because it is now no longer a button but a edit control. Which is handy because you can type directly in it. But in your case not so handy. Only manual intervention will solve this. In Includes_MediaMenu.xml search for "edit" and replace with "button" ( with quotes!!) Should be two instances.
2: this is an option in viewtype options. Enable showcase and landscape use wrap list option.
Big_Noid Wrote:I told you I would remove it Wink I'll make a xml file with the country and subs which you can replace in 720p folder.


1: this is because it is now no longer a button but a edit control. Which is handy because you can type directly in it. But in your case not so handy. Only manual intervention will solve this. In Includes_MediaMenu.xml search for "edit" and replace with "button" ( with quotes!!) Should be two instances.
2: this is an option in viewtype options. Enable showcase and landscape use wrap list option.

thanks if you dont mind as i liked the sub/audio info, would of thought you would of left that in and got rid of country instead as that does not seem to be much use

cheers
Well, from my point of view, the country item always has useful info (it is always "true" so to say), the subtitle/audio labels only get the first audio stream and first subtitle stream. Also external subs are not detected, so that was why it's not useful info for me to put in the skin.

Here is the file, overwrite in 720p folder:
http://aeon--nox.googlecode.com/files/In...wtypes.xml
Big_Noid Wrote:Well, from my point of view, the country item always has useful info (it is always "true" so to say), the subtitle/audio labels only get the first audio stream and first subtitle stream. Also external subs are not detected, so that was why it's not useful info for me to put in the skin.

Here is the file, overwrite in 720p folder:
http://aeon--nox.googlecode.com/files/In...wtypes.xml

thanks worked great
Big_Noid Wrote:The final update for Dharma is now out on the repo!

Thanks again for all your time and effort porting features back for us Dharma people Smile

'Zero

-----
XBMC Dharma | Windows Vista | Aeon Nox 1.6 ish
-----
On a long enough timeline. The survival rate for everyone drops to zero.
Hey just wanted to say Thank you for this wonderful skin. I have notice one thing though, when i go to change the theme and theme colours they always revert back to default when I go back to the appearance settings.

Sorry should of mentions I am running XBMC Live Dhama 10.1
Hi, My favourite skin ever noticed something though:
1. IN CDART:
1.1 when in song level with a song playing and the cdart shown; hit pause; music pauses; but the cdart is still moving, might need a fix.
1.2 while playing music and in home window OR music OSD and then pausing, the cdart pops back to the initial place which looks bad, if you could make it stop where itis and continue from where it left it would look much better.

2 in any song information (choosing any song and pressing "i") there is a weird permanent "SHUTDOWN IN" phrase....I think it's misplaced in the code.Needs a check

on last question --- does this skin support a separate album fanarts cause I placed a .jpg image and named it fanart.jpg in the album folder and it didn't work.
Thanks.
Just a thought... I don't know if any one agrees with me but the new highlighter for the low list view doesn't look good. it's so Primitive and different than the whole skin (Odd).