Jump to content


Photo

PLi-Full-HD-Night mod


  • This topic is locked This topic is locked
198 replies to this topic

Re: PLi-Full-HD-Night mod #101 delagroov

  • Senior Member
  • 1,579 posts

+21
Neutral

Posted 11 November 2012 - 18:21

One request to delagroov: Please remove the "version number" in the top of the file. That line also contains the licensing information, so if you change that line, you change the license, and then the build fails because it won't build until someone manually checks the licensing terms...


I do not really understand what you check in an xml file when building, but i changed it.

Edited by delagroov, 11 November 2012 - 18:23.

Vu+ Solo2 / Atemio Nemesis / Et9000 / TM Twin / Spark2

Astra 1/2/3 en HB / Harmony Touch, & 600
https://github.com/d...in-PLi-Full-HD-Night


Re: PLi-Full-HD-Night mod #102 delagroov

  • Senior Member
  • 1,579 posts

+21
Neutral

Posted 11 November 2012 - 18:55

Hi i update openpli 3.0 today and try this new skin from delagroov and is great but as someone refers before in my tv the background apears in grey, i like it more in black like in the original PLI-HD, or a soft black, and in epg in the description of the program, in the bottom left it apears in bouble. But its great, more detailed, good job. Thanks

Nice modification.But is it possible to make background black in channel selection and all other menus?Now is looking like dark blue,but I think clear black could be better.Regards.


Put this skin_user.xml in etc/enigma2 folder to get the deepblack

As far as i know one can not use skin name in skin_user.xml so when using/switching to another skin you have to rename skin_user.xml or delete it.

Attached Files


Vu+ Solo2 / Atemio Nemesis / Et9000 / TM Twin / Spark2

Astra 1/2/3 en HB / Harmony Touch, & 600
https://github.com/d...in-PLi-Full-HD-Night


Re: PLi-Full-HD-Night mod #103 blzr

  • PLi® Core member
  • 2,269 posts

+118
Excellent

Posted 11 November 2012 - 21:14

I do not really understand what you check in an xml file when building, but i changed it.

this is excerpt from recipe:
LIC_FILES_CHKSUM = "file://usr/share/enigma2/PLi-Full-HD-Night/skin.xml;beginline=3;endline=8;md5=409b3b23f250fe72f10b306ba373791c"
every time you change something in lines 3 - 8 of xml, then new license md5 checksum has to be calculated and added to recipe, otherwise skin won't build...

... As far as i know one can not use skin name in skin_user.xml so when using/switching to another skin you have to rename skin_user.xml or delete it.

you can use skin_user_skinname.xml for some time now...
http://openpli.git.s...20222349c5849f8
True sarcasm doesn't need green font...

Re: PLi-Full-HD-Night mod #104 delagroov

  • Senior Member
  • 1,579 posts

+21
Neutral

Posted 12 November 2012 - 10:44

Okay i understand now..


I see a problem rising with some config screens

In the plugin epgimport and fullbackup same screentitle for config is used, which gaves me a problem using the tiltle for a specific screen.


From EPGImport plugin.py

class Config(ConfigListScreen,Screen):
	skin = """
<screen position="center,center" size="560,400" title="EPG Import Configuration" >
	<ePixmap name="red"	position="0,0"   zPosition="2" size="140,40" pixmap="skin_default/buttons/red.png" transparent="1" alphatest="on" />
	<ePixmap name="green"  position="140,0" zPosition="2" size="140,40" pixmap="skin_default/buttons/green.png" transparent="1" alphatest="on" />



From Fullbackup plugin.py


class Config(ConfigListScreen,Screen):
	skin = """
<screen position="center,center" size="560,400" title="FullBackup Configuration" >
	<ePixmap name="red"	position="0,0"   zPosition="2" size="140,40" pixmap="skin_default/buttons/red.png" transparent="1" alphatest="on" />
	<ePixmap name="green"  position="140,0" zPosition="2" size="140,40" pixmap="skin_default/buttons/green.png" transparent="1" alphatest="on" />


Edited by delagroov, 12 November 2012 - 10:45.

Vu+ Solo2 / Atemio Nemesis / Et9000 / TM Twin / Spark2

Astra 1/2/3 en HB / Harmony Touch, & 600
https://github.com/d...in-PLi-Full-HD-Night


Re: PLi-Full-HD-Night mod #105 delagroov

  • Senior Member
  • 1,579 posts

+21
Neutral

Posted 12 November 2012 - 10:54

And also in Autobackup

class Config(ConfigListScreen,Screen):
    skin = """
<screen position="center,center" size="560,400" title="FullBackup Configuration" >
    <ePixmap name="red"    position="0,0"   zPosition="2" size="140,40" pixmap="skin_default/buttons/red.png" transparent="1" alphatest="on" />
    <ePixmap name="green"  position="140,0" zPosition="2" size="140,40" pixmap="skin_default/buttons/green.png" transparent="1" alphatest="on" />

Vu+ Solo2 / Atemio Nemesis / Et9000 / TM Twin / Spark2

Astra 1/2/3 en HB / Harmony Touch, & 600
https://github.com/d...in-PLi-Full-HD-Night


Re: PLi-Full-HD-Night mod #106 delagroov

  • Senior Member
  • 1,579 posts

+21
Neutral

Posted 12 November 2012 - 11:59

I suggest to use specific names in the plugins for calling configs

class EPGImportConfig(ConfigListScreen,Screen):

class AutobackupConfig(ConfigListScreen,Screen):

This way it does not confict when using it in skins....

Vu+ Solo2 / Atemio Nemesis / Et9000 / TM Twin / Spark2

Astra 1/2/3 en HB / Harmony Touch, & 600
https://github.com/d...in-PLi-Full-HD-Night


Re: PLi-Full-HD-Night mod #107 littlesat

  • PLi® Core member
  • 56,309 posts

+691
Excellent

Posted 12 November 2012 - 12:28

It is better that these plugins do use text widget.... then it is compatible with other config screens.... and we do not need separate configs screens for each small thing....

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: PLi-Full-HD-Night mod #108 delagroov

  • Senior Member
  • 1,579 posts

+21
Neutral

Posted 12 November 2012 - 12:41

Can gave an exapmle how that would work to call

Now i see a problem to give the specific config screen a title

Vu+ Solo2 / Atemio Nemesis / Et9000 / TM Twin / Spark2

Astra 1/2/3 en HB / Harmony Touch, & 600
https://github.com/d...in-PLi-Full-HD-Night


Re: PLi-Full-HD-Night mod #109 littlesat

  • PLi® Core member
  • 56,309 posts

+691
Excellent

Posted 12 November 2012 - 14:01

In the plugin something like this...

self["text"] = Label(_("The Text you want there"))

Edited by littlesat, 12 November 2012 - 14:02.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: PLi-Full-HD-Night mod #110 Stigarta

  • Senior Member
  • 225 posts

+1
Neutral

Posted 12 November 2012 - 15:25

Hello,

THX for this great skin.
I like this skin, because the colours are not so bright as the original pli skin.
Is it right, that this skin is automatically in the pli image?
Today i saw in the skin menü 2 pli skins, The older one and the pli-full-hd-night skin.
Is the second your skin?

Regards Stigarta

P:S: Sorry for my bad englisch ;)

Edited by Stigarta, 12 November 2012 - 15:27.

Gruß Stigarta

Re: PLi-Full-HD-Night mod #111 metoo

  • Senior Member
  • 1,573 posts

+33
Good

Posted 12 November 2012 - 15:34

yes, pli-full-hd-night skin in menu is Delagroove skin

Edited by metoo, 12 November 2012 - 15:34.

ET10000 C C C C/T  2TB HDD ET7000 + ET6000 dvb-S  OpenPli Triax 88 multifeed quad LNBs VU Uno4K SE C+2TB HDD Mutant HD60


Re: PLi-Full-HD-Night mod #112 ims

  • PLi® Core member
  • 13,625 posts

+212
Excellent

Posted 12 November 2012 - 23:09

will be repaired LIC_FILES_CHKSUM for this plugin ? Night building does not work due it...
Kdo nic nedělá, nic nezkazí!

Re: PLi-Full-HD-Night mod #113 delagroov

  • Senior Member
  • 1,579 posts

+21
Neutral

Posted 12 November 2012 - 23:45

Thats odd..i did not change anything in beginline=3;endline=8 and yesterday it has been build

Vu+ Solo2 / Atemio Nemesis / Et9000 / TM Twin / Spark2

Astra 1/2/3 en HB / Harmony Touch, & 600
https://github.com/d...in-PLi-Full-HD-Night


Re: PLi-Full-HD-Night mod #114 radxnl

  • Senior Member
  • 1,527 posts

+57
Good

Posted 12 November 2012 - 23:49

should be okay now, license md5sum was still stuck on an older ( pre your header change ) checksum

Re: PLi-Full-HD-Night mod #115 KBDE

  • Senior Member
  • 34 posts

0
Neutral

Posted 13 November 2012 - 02:17

Great work! Installed it on my DM800 from openpli3.0 feed. :)
Looking good. Finally the EHD skin we were all waiting for. :)

I would rename it though since its not technically a fullhd skin (still 720p)

Edited by KBDE, 13 November 2012 - 02:18.


Re: PLi-Full-HD-Night mod #116 delagroov

  • Senior Member
  • 1,579 posts

+21
Neutral

Posted 13 November 2012 - 08:42

Thanks...

Its just renamed from PLI-HD-Night to Pli-Full-HD-Night and there are more skins using full hd as description.

I like it like it is and its not worth the trouble/work for me as Pli to change it again.

Vu+ Solo2 / Atemio Nemesis / Et9000 / TM Twin / Spark2

Astra 1/2/3 en HB / Harmony Touch, & 600
https://github.com/d...in-PLi-Full-HD-Night


Re: PLi-Full-HD-Night mod #117 kocus37

  • Senior Member
  • 121 posts

+4
Neutral

Posted 13 November 2012 - 23:41

Hi delagroov i follow your instructions and if all fine now, great image, thanks

OpenPli 4.0 - Vu+Solo2 - 30W Hispasat


Re: PLi-Full-HD-Night mod #118 delagroov

  • Senior Member
  • 1,579 posts

+21
Neutral

Posted 14 November 2012 - 08:30

Hi delagroov i follow your instructions and if all fine now, great image, thanks


Nice..

it seems one can use the skin name, so U can use this

Attached Files


Vu+ Solo2 / Atemio Nemesis / Et9000 / TM Twin / Spark2

Astra 1/2/3 en HB / Harmony Touch, & 600
https://github.com/d...in-PLi-Full-HD-Night


Re: PLi-Full-HD-Night mod #119 alsat1

  • Senior Member
  • 221 posts

+1
Neutral

Posted 14 November 2012 - 10:26

Where from I can download latest versions of this skin?

Re: PLi-Full-HD-Night mod #120 Erik Slagter

  • PLi® Core member
  • 46,960 posts

+541
Excellent

Posted 14 November 2012 - 10:29

It's called Pli-FullHD-night how and it's in the openpli 3.0 feed.

* Wavefrontier T90 with 28E/23E/19E/13E via SCR switches 2 x 2 x 6 user bands
I don't read PM -> if you have something to ask or to report, do it in the forum so others can benefit. I don't take freelance jobs.
Ik lees geen PM -> als je iets te vragen of te melden hebt, doe het op het forum, zodat anderen er ook wat aan hebben.



2 user(s) are reading this topic

0 members, 2 guests, 0 anonymous users