Kodi Community Forum
[MOD] Aeon65 1.0 (based on Hitched Mod) - 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 MQ (https://forum.kodi.tv/forumdisplay.php?fid=68)
+---- Thread: [MOD] Aeon65 1.0 (based on Hitched Mod) (/showthread.php?tid=55600)



- robinsj - 2010-05-20

I might just be an idiot. I have the movie view on Wall, and the show info panel on auto. When it pops up there is two blanks where there should be looks like screenshots of some sort, how do I get those to appear? Do I need to manually save images somewhere? Thanks for the help!!


- ekim232 - 2010-05-20

robinsj Wrote:I might just be an idiot. I have the movie view on Wall, and the show info panel on auto. When it pops up there is two blanks where there should be looks like screenshots of some sort, how do I get those to appear? Do I need to manually save images somewhere? Thanks for the help!!

They are for extrathumbs. You can use Ember Media Manager and it will automatically go through your movies and create them. Takes a little time if you have a lot.


- Tiburon11 - 2010-05-21

Uhhh...I installed the XBMC build in the first thread post, and now my 360 controller functions without any external programs. How do I remove this feature?


- Tiburon11 - 2010-05-21

Tiburon11 Wrote:Uhhh...I installed the XBMC build in the first thread post, and now my 360 controller functions without any external programs. How do I remove this feature?

Never mind, figured it out. Was looking in the wrong directory.


- mindweaver - 2010-05-24

If you want Aeon65 to work in the new SVN builds past r28256 of XBMC you need to rename the folder to "skin.aeon65" and put it in the addons-folder. Inside "skin.aeon65" create an addon.xml file and write the following to it:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<addon
  id="skin.aeon65"
  version="1.0"
  name="Aeon65"
  provider-name="Phil65">
  <requires>
    <import addon="xbmc.gui" version="2.11"/>
  </requires>
  <extension
    point="xbmc.gui.skin"
    defaultresolution="720p"
    defaultresolutionwide="720p"
    defaultthemename="textures.xbt"
    effectslowdown="1.0"
    debugging="false"/>
  <extension point="xbmc.addon.metadata">
    <platform>all</platform>
    <minversion>28000</minversion>
    <summary>Aeon65 based on AEON by djh</summary>
    <summary lang="en">Aeon65</summary>
    <description>An HD interface for XBMC</description>
  </extension>
</addon>

That's it Smile


- mindweaver - 2010-05-24

If you want to use the new subtitle OSD (old OpenSubtitles OSD) script with Aeon65 and the new SVN builds you need to download:

http://trac.xbmc.org/attachment/ticket/8737/script.xbmc.subtitles-1.6.6.zip

and place the files in the addon folder.

You will also need to replace line 46-56 in VideoOSD.xml in the skins 720p folder with the following code:

Code:
                <control type="button" id="19">
                    <include>Objects_OSDButton</include>
                    <onclick>RunScript(special://home/addons/script.xbmc.subtitles/default.py)</onclick>
                    <visible>![Player.Forwarding | Player.Rewinding] + !IsEmpty(VideoPlayer.TVshowtitle)</visible>            
                </control>        
                
                <control type="button" id="20">
                    <include>Objects_OSDButton</include>
                    <onclick>RunScript(special://home/addons/script.xbmc.subtitles/default.py)</onclick>
                    <visible>![Player.Forwarding | Player.Rewinding] + !IsEmpty(VideoPlayer.Title) + IsEmpty(VideoPlayer.TVShowTitle)</visible>            
                </control>

And rename the "script-OpenSubtitles_OSD-Aeon.xml"
to "script-XBMC-Subtitles-main.xml"


- mindweaver - 2010-05-24

If you get any errors saying that RecentlyAdded.py is not working you need to replace the following code in Home.xml

Code:
special://skin/extras/RecentlyAdded.py

with

Code:
script.recentlyadded

3 places.

and download the new script from here:

http://code.google.com/p/transparency-xbmc/downloads/list

unzip the files in your addons-directory.

EDIT2: New replace above, new recentyadded version. Follow the instructions and it will work! You might need to have a SVN version as late as 30538 to make it work though.


- User 49122 - 2010-05-24

I just deleted the RecentlyAdded.py file, and no more error messages...
the script in XBMC doesn't work anymore after doing this, but that's pretty much self explanatory Wink

Thanks for the help with the newest SVN's, mindweaver!


- mindweaver - 2010-05-24

Durkslag Wrote:I just deleted the RecentlyAdded.py file, and no more error messages...
the script in XBMC doesn't work anymore after doing this, but that's pretty much self explanatory Wink

Thanks for the help with the newest SVN's, mindweaver!

Check my new edited post to see how to get recentlyadded to work!


- mindweaver - 2010-05-24

If you want customized favourites on home menu to work in the new SVNs you need to download the new script from

http://code.google.com/p/transparenc...downloads/list

and unzip the files to your addons-directory

Then you have to replace

Code:
special://skin/extras/favourites.py
with
Code:
script.favourites

on two places.


- Gonzee - 2010-05-27

mindweaver Wrote:If you want Aeon65 to work in the new SVN builds past r28256 of XBMC you need to rename the folder to "skin.aeon65" and put it in the addons-folder. Inside "skin.aeon65" create an addon.xml file and write the following to it:

Code:
<?xml version="1.0" encoding="UTF-8"?>
<addon
  id="skin.aeon65"
  version="1.0"
  name="Aeon65"
  provider-name="Phil65">
  <requires>
    <import addon="xbmc.gui" version="2.11"/>
  </requires>
  <extension
    point="xbmc.gui.skin"
    defaultresolution="720p"
    defaultresolutionwide="720p"
    defaultthemename="textures.xbt"
    effectslowdown="1.0"
    debugging="false"/>
  <extension point="xbmc.addon.metadata">
    <platform>all</platform>
    <minversion>28000</minversion>
    <summary>Aeon65 based on AEON by djh</summary>
    <summary lang="en">Aeon65</summary>
    <description>An HD interface for XBMC</description>
  </extension>
</addon>

That's it Smile

Where is the addons-folder? :confused2:


- mindweaver - 2010-05-27

Gonzee Wrote:Where is the addons-folder? :confused2:

I am running in Vista and Windows 7 it is located at:

"C:\Users\<Your username>\AppData\Roaming\XBMC\addons"

In windows XP I believe it is somewhere in
"c:\documents & settings\application data\"


- Gonzee - 2010-05-27

mindweaver Wrote:I am running in Vista and Windows 7 it is located at:

"C:\Users\<Your username>\AppData\Roaming\XBMC\addons"

In windows XP I believe it is somewhere in
"c:\documents & settings\application data\"

I'm sorry, I am using Ubuntu 9.10.
I've looked in both my user .xbmc folder and my /usr/share/xbmc folder.


- User 49122 - 2010-05-27

Try to create a folder named addons in your XBMC folder.
Works for me.

I'm guessing
/usr/share/xbmc/addons


- Gonzee - 2010-05-27

Durkslag Wrote:Try to create a folder named addons in your XBMC folder.
Works for me.

I'm guessing
/usr/share/xbmc/addons

I tried creating /usr/share/xbmc/addons and also /$home/.xbmc/addons and then renaming the skin directory to skin.aeon65 and copying it to both directories and added the addon.xml file to each as per above.

The skin does not show up in the skin list if do those things.
If I just do a git clone in my /$home/.xbmc/skin directory, the skin shows up but if I enable it xbmc immediately crashes to command prompt (no xserver except xbmc).

Please help

I am running r28256.