Posts: 18,204
Joined: Aug 2007
Reputation:
715
Hitcher
Team-Kodi Member
Posts: 18,204
2024-04-06, 19:26
(This post was last modified: 2024-04-14, 17:49 by Hitcher. Edited 1 time in total.)
I'm pretty sure he said he's only working on Artic Fuse from now on.
Posts: 13
Joined: Apr 2018
Reputation:
0
i mange to make it works on omega 21 but the Favorites page
making some problem.
Posts: 54
Joined: Nov 2021
2024-04-23, 00:30
(This post was last modified: 2024-04-23, 00:31 by User 468215. Edited 1 time in total.)
go to jurialmunkey github which is
https://github.com/jurialmunkey/skin.eminence.2/releases
download v2.1.20b source code zip file and then unzip it
inside file you will see addon.xml
edit with notepad++ notepad whatever you are using for text edit
change <import addon="xbmc.gui" version="5.15.0" /> to <import addon="xbmc.gui" version="5.17.0" />
and save file. Then make archives as zipfile (you can use winrar or whatever you are using for archieves)
after that open your addon and addon from zip file and click which you just created.
warning: Eminence works, but like previous post says, favourite doesn't work. Even if you make Activewindows(favouritesbrowser) due to the change of Omega it will
crash.
Well, then good luck
Posts: 1,043
Joined: Oct 2015
Reputation:
50
2024-04-23, 13:08
(This post was last modified: 2024-04-23, 13:15 by jdig4240. Edited 1 time in total.)
Rename dialogfavorites.xml to MyFavoirites.xml and replace with this code. Not sure if its exactly right, but it works for me..
<?xml version="1.0" encoding="UTF-8"?>
<window>
<defaultcontrol always="true">500</defaultcontrol>
<views>50,52,53,55,500</views>
<controls>
<include>GlobalOverlay</include>
<include>Furniture_Background</include>
<include>Furniture_TopBar</include>
<control type="group">
<include>Animation_SlideIn</include>
<include>Animation_FadeOut</include>
<centerleft>50%</centerleft>
<width>favdialogw</width>
<bottom>80</bottom>
<height>514</height>
<include>Dialog_Background</include>
<include content="Dialog_Top_IconHeader">
<param name="label" value="$LOCALIZE[1036]" />
<param name="icon" value="special://skin/extras/icons/favourites.png" />
</include>
<control type="group">
<left>side</left>
<bottom>side</bottom>
<width>414</width>
<height>414</height>
<include>Object_Background</include>
</control>
<control type="image">
<left>side</left>
<bottom>side</bottom>
<width>414</width>
<height>414</height>
<aspectratio>keep</aspectratio>
<texture background="true" fallback="DefaultAddon.png">$INFO[Container(500).ListItem.Icon]</texture>
</control>
<include content="Dialog_FavouriteList">
<param name="id" value="500" />
<param name="moveid" value="noop" />
</include>
</control>
</controls>
</window>
Posts: 1,043
Joined: Oct 2015
Reputation:
50
Then use the custom command ActivateWindow(MyFavourites) to access the new Favourites window.