Will Eminence support Omega?
#1
As we know from Omega beta 2 the ABI will be bumped to 5.17.0 therefore Eminence is not compatible with it. Eminence is my best choice for Kodi. Any chance it will support Omega in the near future?
@jurialmunkey
Reply
#2
Up
Reply
#3
I'm pretty sure he said he's only working on Artic Fuse from now on.
Reply
#4
This is my favorite skin. Kodi just isn't the same without it. @jurialmunkey please don't give up on this skin!
Reply
#5
i mange to make it works on omega 21 but the Favorites page
making some problem.
Reply
#6
How did you manage this?
Reply
#7
(2024-04-13, 19:43)medan79 Wrote: i mange to make it works on omega 21 but the Favorites page
making some problem.
See here: Changes to the skinning engine for Kodi Omega (v21)
Reply
#8
Bump
Reply
#9
(2024-04-13, 19:43)medan79 Wrote: i mange to make it works on omega 21 but the Favorites page
making some problem.

It would be great if someone could create a mod of Eminence that would work on Kodi 21 (Omega).
Could you share the changes you made for us to try them with Kodi Omega?
Reply
#10
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
Reply
#11
(2024-04-23, 00:30)pazu1 Wrote: 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

This worked! Thank you so much!
Reply
#12
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>
Reply
#13
Then use the custom command ActivateWindow(MyFavourites) to access the new Favourites window.
Reply
#14
(2024-04-23, 13:08)jdig4240 Wrote: 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>

I can't seem to find dialogfavorites.xml. Where is it located?

Thank you,

-Chris
Reply
#15
(2024-04-23, 22:29)ihchris Wrote:
(2024-04-23, 13:08)jdig4240 Wrote: 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>

I can't seem to find dialogfavorites.xml. Where is it located?

Thank you,

-Chris

Kodi\addons\skin.eminence.2.mod\16x9
Reply

Logout Mark Read Team Forum Stats Members Help
Will Eminence support Omega?0