Jump to content


Photo

merge requests for PLi's git


  • Please log in to reply
1748 replies to this topic

Re: merge requests for PLi's git #901 peteru

  • Senior Member
  • 36 posts

+5
Neutral

Posted 29 June 2015 - 03:05

 

If you are mirroring all the forks, you may want to add this one: https://bitbucket.or...nwiz/easy-ui-4/


"Beauty lies in the hands of the beer holder."

 


Re: merge requests for PLi's git #902 Persian Prince

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 29 June 2015 - 08:19

 

Hmm I did add it for test : https://github.com/O...ipsel/easy-ui-4 but what's special about it ?


Open Vision sources: https://github.com/OpenVisionE2


Re: merge requests for PLi's git #903 peteru

  • Senior Member
  • 36 posts

+5
Neutral

Posted 29 June 2015 - 11:49

It's pretty much the only e2 fork that works properly within the Australian DVB-T free to air environment. Numerous fixes and additions too.


"Beauty lies in the hands of the beer holder."

 


Re: merge requests for PLi's git #904 mx3L

  • Senior Member
  • 616 posts

+79
Good

Posted 8 July 2015 - 18:44

Hi,

 

I can see that in List source getCurrent routine returns False instead of None in case master element is None, since:

>>> None is not None and ()
False

Proposed patch:

From 4a204b4dab83271ec50c2fa76837b57d50f77841 Mon Sep 17 00:00:00 2001
From: mx3L <mx3ldev@gmail.com>
Date: Wed, 8 Jul 2015 13:12:58 +0200
Subject: [PATCH] Return None instead of False on getCurrent in case master is
 not set in List Source

---
 lib/python/Components/Sources/List.py | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lib/python/Components/Sources/List.py b/lib/python/Components/Sources/List.py
index 3959746..492b5f5 100644
--- a/lib/python/Components/Sources/List.py
+++ b/lib/python/Components/Sources/List.py
@@ -50,7 +50,9 @@ to generate HTML."""
 
 	@cached
 	def getCurrent(self):
-		return self.master is not None and self.master.current
+		if self.master is None:
+			return None
+		return self.master.current
 
 	current = property(getCurrent)
 
-- 
1.9.1

Attached Files


Edited by mx3L, 8 July 2015 - 18:45.


Re: merge requests for PLi's git #905 Persian Prince

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 28 July 2015 - 10:03

I'm sending some merge requests here : https://github.com/O...i/enigma2/pulls

 

Just for contribution :)


Open Vision sources: https://github.com/OpenVisionE2


Re: merge requests for PLi's git #906 littlesat

  • PLi® Core member
  • 56,267 posts

+691
Excellent

Posted 28 July 2015 - 18:33

return self.master is not None and self.master.current

 

->

 

return self.master is not None and self.master.current or None

 

or even....

 

return self.master and self.master.current or None


Edited by littlesat, 28 July 2015 - 18:34.

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


Re: merge requests for PLi's git #907 SpaceRat

  • Senior Member
  • 1,030 posts

+65
Good

Posted 22 November 2016 - 20:57

OpenPLi:
Please add package
python-ipaddress
to your feeds if you haven't already.

Will be required with one of the next OWIF updates.

It's inside openembedded, so activating it like here:
https://github.com/o...58a3d052ede2a48
is sufficient.
1st box: Vu+ Ultimo 4k 4xDVB-S2 FBC / 2xDVB-C / 1.8 TB HDD / OpenATV 6.2
2nd box: Gigablue Quad 4k 2xDVB-S2 FBC / 2xDVB-C / 1.8 TB HDD / OpenATV 6.2
testing boxes: Vu+ Duo² + AX Quadbox HD2400 + 2x Vu+ Solo² + Octagon SF4008
Sats & Pay-TV: Astra 19.2°E + Hotbird 13°E with Redlight / SCT HD / SES Astra HD- / Sky V14 / 4th empire propaganda TV
Card-Server: Raspberry Pi + IPv6-capable oscam
Router: Linksys WRT1900ACS w/ LEDE + Fritz!Box 7390

Re: merge requests for PLi's git #908 betacentauri

  • PLi® Core member
  • 7,185 posts

+323
Excellent

Posted 22 November 2016 - 21:14

Wouldn't be a depend in the bitbake file a better solution?
Xtrend ET-9200, ET-8000, ET-10000, OpenPliPC on Ubuntu 12.04

Re: merge requests for PLi's git #909 SpaceRat

  • Senior Member
  • 1,030 posts

+65
Good

Posted 22 November 2016 - 21:21

Will that add it to the feed as well?
Or will that just lead to some depend that can not be fulfilled?
1st box: Vu+ Ultimo 4k 4xDVB-S2 FBC / 2xDVB-C / 1.8 TB HDD / OpenATV 6.2
2nd box: Gigablue Quad 4k 2xDVB-S2 FBC / 2xDVB-C / 1.8 TB HDD / OpenATV 6.2
testing boxes: Vu+ Duo² + AX Quadbox HD2400 + 2x Vu+ Solo² + Octagon SF4008
Sats & Pay-TV: Astra 19.2°E + Hotbird 13°E with Redlight / SCT HD / SES Astra HD- / Sky V14 / 4th empire propaganda TV
Card-Server: Raspberry Pi + IPv6-capable oscam
Router: Linksys WRT1900ACS w/ LEDE + Fritz!Box 7390

Re: merge requests for PLi's git #910 betacentauri

  • PLi® Core member
  • 7,185 posts

+323
Excellent

Posted 22 November 2016 - 21:26

I would say yes. Or better it should work like this.
You only need to add it to feed bitbake if no other package need it.

But I'm no bitbake expert...
Xtrend ET-9200, ET-8000, ET-10000, OpenPliPC on Ubuntu 12.04

Re: merge requests for PLi's git #911 WanWizard

  • PLi® Core member
  • 68,577 posts

+1,737
Excellent

Posted 22 November 2016 - 23:16

It's not in the feed, there's already a request out for it (amongst others) because I want to start rewriting the crap network code in Enigma. But I think it will (or has been) looked only for master-next.


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Pro (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: merge requests for PLi's git #912 Persian Prince

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 23 November 2016 - 11:48

If you have access to "E2OpenPlugins" it's safe to merge these requests :

 

 
Also for "PLi" :
 
 
And for "littlesat" :
 
 
They're all about "Optimizing png files will reduce the image size." so no worries :)
 
I did upload enigma2 documentation here : https://pe4k.com/per...empire/enigma2/ (With optimized png files and our logo, No other changes)

 

If you think it's good to have this inside the https://github.com/O...ree/master/doxy folder I can send a merge request or maybe we can have a different repo for it like e2-documentation or something.


Open Vision sources: https://github.com/OpenVisionE2


Re: merge requests for PLi's git #913 Taapat

  • PLi® Core member
  • 2,343 posts

+120
Excellent

Posted 23 November 2016 - 12:36

@Persian Prince when you optimize these files or you also check whether they are correct sRGB profile?
After your optimization in enigma, using libpng 1.6.24 I saw a warning about incorrect sRGB profile in png files in countries: https://github.com/O...61a94f16a2757a9
I see that from this files you optimize hk.png.


Re: merge requests for PLi's git #914 Persian Prince

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 23 November 2016 - 13:24

I didn't know about this but is this important ? I think we can ignore it.

 

Also I think pngquant reduces the image quality instead we can remove the meta data from png files with exiftool.


Edited by Persian Prince, 23 November 2016 - 13:24.

Open Vision sources: https://github.com/OpenVisionE2


Re: merge requests for PLi's git #915 Persian Prince

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 23 November 2016 - 13:51

Done: https://github.com/O...nigma2/pull/537

Info: Optipng is doing a great job for optimizing png files but it seems libpng >=1.6.x cares about iCCP chunk so we could easily remove all meta data from all png files for future warnings.
Also we would have smaller png files after this.


Open Vision sources: https://github.com/OpenVisionE2


Re: merge requests for PLi's git #916 Taapat

  • PLi® Core member
  • 2,343 posts

+120
Excellent

Posted 23 November 2016 - 14:03

I'm sorry. You probably did not understand me.
 
I have not checked the other files, but in countries I have error message only on these two files which I alredy fixed.
 
I just wanted to draw your attention to this fact.
When you make the optimization, in addition please correct also this error, and then no one will not need to change these images later.

Edited by Taapat, 23 November 2016 - 14:05.


Re: merge requests for PLi's git #917 Persian Prince

  • Senior Member
  • 1,982 posts

+247
Excellent

Posted 23 November 2016 - 14:29

Yeah I know and I did send a new merge request not just for those 2 files but for all png files to have less size for all of them and no warnings for libpng

 

Good luck ;)


Open Vision sources: https://github.com/OpenVisionE2


Re: merge requests for PLi's git #918 mirakels

  • Forum Moderator
    PLi® Core member
  • 7,599 posts

+62
Good

Posted 23 November 2016 - 17:12

OpenPLi:
Please add package
python-ipaddress
to your feeds if you haven't already.

Will be required with one of the next OWIF updates.

It's inside openembedded, so activating it like here:
https://github.com/o...58a3d052ede2a48
is sufficient.

openpli-5 already has the package in the image and as ipk


Geen wonder... Had slechts een dm7000, maar wel ook een rotor. eigenlijk al een tijdje ook een dm600 en dm7025. Maar nu kijkend met een et9000 en vuduo

Re: merge requests for PLi's git #919 littlesat

  • PLi® Core member
  • 56,267 posts

+691
Excellent

Posted 23 November 2016 - 17:14

Consider to 'merge' this part to 4 for the time being...?


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


Re: merge requests for PLi's git #920 arn354

  • Senior Member
  • 146 posts

+12
Neutral

Posted 23 November 2016 - 17:27

Consider to 'merge' this part to 4 for the time being...?

 

if you not do do it - OWIF will cease to work as it is allready commited OWIF upstream https://github.com/E...09eb46ef5974b12




1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users