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 Wrote:Ok Big_Noid, that sounds great! Does that have the global search part enabled?

Not quite sure how to "do" the git-version, I'll search around here and figure it out!

I see this: https://github.com/BigNoid

but not quite sure where to go from here. I'll tinker around!
  • Install Git
  • open git bash console
  • type:
    Code:
    cd '/c/users/$$$/AppData/Roaming/xbmc/addons'
    $$$ = user directory for xbmc install
    Code:
    git clone git://github.com/BigNoid/Aeon-Nox.git

Then when ever you want to update
  • type:
    Code:
    cd '/c/users/$$$/AppData/Roaming/xbmc/addons/Aeon-Nox'
    Code:
    git pull


Also, copy the text and press insert when the git bash console has focus and it will paste the text.
htpc guy Wrote:
  • Install Git
  • open git bash console
  • type:
    Code:
    cd '/c/users/$$$/AppData/Roaming/xbmc/addons'
    $$$ = user directory for xbmc install
    Code:
    git clone git://github.com/BigNoid/Aeon-Nox.git

Then when ever you want to update
  • type:
    Code:
    cd '/c/users/$$$/AppData/Roaming/xbmc/addons/Aeon-Nox'
    Code:
    git pull


Also, copy the text and press insert when the git bash console has focus and it will paste the text.

Grand, cheers for that. I had just installed git, so that's fab!

Question though - will this make it easier for me to merge the updates with a couple tweaks that help my fragmented multi-drive system?
Big_Noid, in git version, every time I update, the Genre icons are erased. Is it the default behaviour for Git or is this a bug?
ferent Wrote:Big_Noid, in git version, every time I update, the Genre icons are erased. Is it the default behaviour for Git or is this a bug?

Git just pulls the contents of the repo to your machine, making a clone of whatever is in the reop. The reop doesn't have the genre images so they get deleted.

Only way to stop this behavior is to clone the reop, add your images and then merge in his updates whenever BN makes changes. Then you do a git pull from your repo to update.
ferent Wrote:Big_Noid, in git version, every time I update, the Genre icons are erased. Is it the default behaviour for Git or is this a bug?

Yep, +1.
I've noticed there's no sort by date option in the Posters view. Is this an error?
Rumik Wrote:I've noticed there's no sort by date option in the Posters view. Is this an error?

I don't control what sort by options are there. I just present them and XBMC fills them. So definitely should not be view specific.

@theGuillaume: I posted instructions somewhere in this thread.
Hmm that's odd. I only get the option to sort by name. Ah well. Thanks anyway Smile
tried the latest master version of the skin, and i must admit, i'm starting to like the changes made. the new blue selection border used for the infowall looks really nice. couple things need fixing though...

1. i can no longer enable/disable mediaflag in certain views (info list, episode, etc)

2. the white tab behind the "paused" and "chapter" popup in the fullscreen info screen is missing.
Big_Noid Wrote:Rofl
@fional: This is possible of course, but the skin now makes use of variables, so it's a bit different. But the basis is the same. You make the changes in Viewtype_LowList.xml and then look the variable up in variables.xml to see what infolabel should be shown on what content.
I reinstated the show info option so the labels are all present already.

I'm making a mess of this - not sure what to do next. This is a bit beyond me I think, I've been toying with this for the past 12 hours...which is a sad commentary on my ability.

I've been looking in variable.xml and Viewtype_Lowlist.xml - for instance I was looking for premiered as a reference point and was going to move "previous" to the right of "premiered", sort of like how I had moved director next to writer, in the past. Then with the gap left over, I'd shift Network and Episodes up one, and beneath that put the filepath of the file.

Then in episode view replace the banner.jpg in the left with the clearart.png, sort of like how you used to have it.

Then with movies, I was going to do the same as before and put the "writer" next to director, shift everything up one notch and then put the filepath under MPAA.

My attempts have actually yielded little. When I was tinkering with premiered, it's as if nothing would move or show at all. I even replaced it with random nonsense characters, and it was as if I was replacing it in the wrong place, as there was no change!

This is what I would search for before in Viewtype_Lowlist.xml:

I would look for banner.jpg, the first one by 'tv glass' and I'd replace it with
Code:
<control type="image">
          <posx>10</posx>
          <posy>110</posy>
          <width>250</width>
          <height>250</height>
          <aspectratio scalediffuse="true">keep</aspectratio>
          <fadetime>400</fadetime>
          <texture diffuse="thumbs/banner_mask.png" background="true">$INFO[ListItem.Path,,../clearart.png]</texture>
          <visible>!Skin.HasSetting(highlist)</visible>
        </control>

The banner.jpg which had pos 950,658 would remain untouched. There's a banner.jpg in the current Viewtype_Lowlist.xml

Then I would search for:

Code:
<control type="label">
            <posx>850</posx>
            <posy>625</posy>
            <height>13</height>
            <width>105</width>
            <font>Font_Reg18</font>
            <textcolor>abFFFFFF</textcolor>
            <scroll>true</scroll>
            <label>$LOCALIZE[2050]:</label>
          </control>
          <control type="label">
            <posx>960</posx>
            <posy>625</posy>
            <height>13</height>
            <width>280</width>
            <font>Font_Reg18</font>
            <textcolor>white</textcolor>
            <scroll>true</scroll>
            <label fallback="312577">$INFO[ListItem.Duration,, $LOCALIZE[12391]]</label>
          </control>
and I'd replace it with this:
Code:
<control type="label">
            <posx>1070</posx>
            <posy>525</posy>
            <height>13</height>
            <width>430</width>
            <font>Font_Info</font>
            <textcolor>abFFFFFF</textcolor>
            <scroll>true</scroll>
            <label>$LOCALIZE[20339]:</label>
          </control>
          <control type="label">
            <posx>1142</posx>
            <posy>525</posy>
            <height>13</height>
            <width>150</width>
            <font>Font_Info</font>
            <textcolor>white</textcolor>
            <scroll>true</scroll>
            <label fallback="312577">$INFO[ListItem.Director]</label>
          </control>
          <control type="label">
            <posx>850</posx>
            <posy>525</posy>
            <height>13</height>
            <width>430</width>
            <font>Font_Info</font>
            <textcolor>abFFFFFF</textcolor>
            <scroll>true</scroll>
            <label>$LOCALIZE[20417]:</label>
          </control>
          <control type="label">
            <posx>910</posx>
            <posy>525</posy>
            <height>13</height>
            <width>150</width>
            <font>Font_Info</font>
            <textcolor>white</textcolor>
            <scroll>true</scroll>
            <label fallback="312577">$INFO[ListItem.Writer]</label>
          </control>
          <control type="label">
            <posx>850</posx>
            <posy>550</posy>
            <height>13</height>
            <width>430</width>
            <font>Font_Info</font>
            <textcolor>abFFFFFF</textcolor>
            <scroll>true</scroll>
            <label>$LOCALIZE[572]:</label>
          </control>
          <control type="label">
            <posx>910</posx>
            <posy>550</posy>
            <height>13</height>
            <width>400</width>
            <font>Font_Info</font>
            <textcolor>white</textcolor>
            <scroll>true</scroll>
            <label fallback="312577">$INFO[ListItem.Studio]</label>
          </control>
          <control type="label">
            <posx>850</posx>
            <posy>575</posy>
            <height>13</height>
            <width>430</width>
            <font>Font_Info</font>
            <textcolor>abFFFFFF</textcolor>
            <scroll>true</scroll>
            <label>MPAA:</label>
          </control>
          <control type="label">
            <posx>910</posx>
            <posy>575</posy>
            <height>13</height>
            <width>400</width>
            <font>Font_Info</font>
            <textcolor>white</textcolor>
            <scroll>true</scroll>
            <label fallback="Not Rated">$INFO[ListItem.Mpaa]</label>
          </control>
          <control type="label">
            <posx>850</posx>
            <posy>600</posy>
            <height>13</height>
            <width>430</width>
            <font>Font_Info</font>
            <textcolor>abFFFFFF</textcolor>
            <scroll>true</scroll>
            <label>Time:</label>
          </control>
          <control type="label">
            <posx>910</posx>
            <posy>600</posy>
            <height>13</height>
            <width>299</width>
            <font>Font_Info</font>
            <textcolor>white</textcolor>
            <scroll>true</scroll>
            <label fallback="312577">$INFO[ListItem.Duration,, $LOCALIZE[12391]]</label>
          </control>
          <control type="label">
              <posx>850</posx>
              <posy>625</posy>
              <height>13</height>
              <width>430</width>
              <font>Font_Info</font>
              <textcolor>abFFFFFF</textcolor>
              <label>Drive:</label>
          </control>
          <control type="label">
            <posx>910</posx>
            <posy>625</posy>
            <height>13</height>
            <width>1730</width>
            <scroll>true</scroll>
            <haspath>true</haspath>
            <font>Font_Info</font>
            <textcolor>white</textcolor>
            <label fallback="Outer Space">$INFO[ListItem.Foldername]$INFO[ListItem.FileName]</label>        
          </control>

I'm trying to get things to look relatively like this (though I like the premiered, show status, network, and previous columns under the new tv show lowlist):
http://forum.xbmc.org/showpost.php?p=995...count=4736
I have a problem with Trakt Utilities and Nox SVN. XBMC freezes about 5 minutes after launch when TU are set to auto update on startup. It doesn't matter what XBMC is doing at the moment, it happens when I watch something, when I browse my library, even when my photo slideshow screen saver is active.

The problem doesn't appear when I use other skins, like Confluence or Transparency. Can you take a look at my log and tell me if there is something I can do to fix this?
@Shinu: I'll look into those bugs.

@fional: I'll see if I can do this for you.

minimoe Wrote:I have a problem with Trakt Utilities and Nox SVN. XBMC freezes about 5 minutes after launch when TU are set to auto update on startup. It doesn't matter what XBMC is doing at the moment, it happens when I watch something, when I browse my library, even when my photo slideshow screen saver is active.

The problem doesn't appear when I use other skins, like Confluence or Transparency. Can you take a look at my log and tell me if there is something I can do to fix this?
It's the watchlist script that is running that is freezing xbmc. If you disable everything watchlist related it should be fine.
I just realized I also run the script if featured items is enabled in menu. This is unnecessary. I'll fix that today. So wait for the next update from svn and just disable all the watchlist related widgets to fix this behaviour.
I cannot fix the fact that watchlist script locks xbmc up while updating library.
Shinu Wrote:tried the latest master version of the skin, and i must admit, i'm starting to like the changes made. the new blue selection border used for the infowall looks really nice. couple things need fixing though...

1. i can no longer enable/disable mediaflag in certain views (info list, episode, etc)

2. the white tab behind the "paused" and "chapter" popup in the fullscreen info screen is missing.

1: Added that option also to Episodes view. InfoList no longer has mediaflags. I simplified that view as the labels were too small. Looks better imo with just the plot.

2: That is still there. Check if you have an osd_top_bar.png and osd_bottom_bar.png in media/osd/ folder.
In the BigFan view, I can't enable extrafanart. Is there a reason for this?
ferent Wrote:In the BigFan view, I can't enable extrafanart. Is there a reason for this?

Yes, because the fanart you see is the actual list.