So this no longer depends on the common skin? That would make things simpler... but... can't commit like that. All the makefiles are missing.
Yes, only 1 folder 'YouViX-Blue-Mod'. What are 'makefiles' ?
Is it Makefile.am ?
Looks like this ?
installdir = $(datadir)/enigma2/YouViX-Blue-Mod
SUBDIRS = buttons countries crossepg epg extensions fonts icons imdb infobar logos menuicons networkbrowser ondemand pvr screens selectionbars spinner vixcore
dist_install_DATA = *.png *.xml
Does it also need 'meta' folder ?
Yes, there needs to be a makefile in every folder and then they all need listing in configure.ac.
https://github.com/OpenViX/skins/blo...e.ac#L286-L299
So have a look at the ones in the current folders for the basics.
Orlandox (05-03-23)
Hello Huevos,
here is the YouViX-Blue-Mod zip file with Makefile.am added to each folder + meta folder added with files Makefile.am and skin_YouViX-Blue-Mod.xml.
So, I modified configure.ac. Do I need to make a PR for both ?
YouViX-Blue-Mod_05032023.zip
configure.zip
Last edited by Orlandox; 05-03-23 at 09:58.
Thank you @Huevos for adding my skin !
If changes are needed in the future, how do I commit them ? By creating PR ?
Last edited by Orlandox; 05-03-23 at 18:01.
Hello @Huevos,
I made https://github.com/OpenViX/skins/pull/74 couple of days ago, is it okay ? When you have time, can you please check it ?
I don't see why changes to fix a skin have to be a new skin.
Orlandox (10-03-23)
Because they are not changes to fix a skin. They are modifying the skin. And from the start point there was no proper commit record of the skin mods. So now Orlandox has his own play area.
By the way I had to fix the build because of this skin: https://github.com/OpenViX/skins/com...9360ea49186605
abu baniaz (10-03-23)
Okay, and thank you Huevos ! Just made a PR about those dot.png and fulldot.png (copied from your skin).
So this is experimental code. In Setup lists and other lists that use your MenuConfigWidget in templates.xml, (you can experiment with other lists and widgets too), you can lose the scrollbar and add the pagination icons instead.
Something like this in templates:
Code:<!-- ## MENU WIDGETS ## --> <screen name="MenuConfigWidget"> <widget name="config" objectTypesInverted="config,ConfigList" position="680,157" size="1160,765" font="youvix-r;27" itemHeight="45" foregroundColor="white" backgroundColor="menubackground" transparent="1" enableWrapAround="1" scrollbarMode="showOnDemand" zPosition="1" /> <widget name="config" objectTypes="config,ConfigList" position="680,157" size="1160,720" font="youvix-r;27" itemHeight="45" foregroundColor="white" backgroundColor="menubackground" transparent="1" enableWrapAround="1" scrollbarMode="never" zPosition="1" /> <widget addon="Pager" connection="config" objectTypes="config,ConfigList" position="680,890" size="1160,25" spacing="30" transparent="1" backgroundColor="background" /> </screen>
Orlandox (11-03-23)
Tested and okay, except this must be scrollbarMode="showNever", just for an info, if someone want to use that.