for easy read/download/fork ...
More :
https://github.com/OpenHyperCube
https://github.com/OpenTechnomate
If you are mirroring all the forks, you may want to add this one: https://bitbucket.or...nwiz/easy-ui-4/
Posted 29 June 2015 - 03:05
for easy read/download/fork ...
More :
https://github.com/OpenHyperCube
https://github.com/OpenTechnomate
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."
Posted 29 June 2015 - 08:19
for easy read/download/fork ...
More :
https://github.com/OpenHyperCube
https://github.com/OpenTechnomate
If you are mirroring all the forks, you may want to add this one: https://bitbucket.or...nwiz/easy-ui-4/
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
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
Edited by mx3L, 8 July 2015 - 18:45.
Posted 28 July 2015 - 10:03
Open Vision sources: https://github.com/OpenVisionE2
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
Posted 22 November 2016 - 20:57
Posted 22 November 2016 - 21:21
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 Ultimate (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.
Posted 23 November 2016 - 11:48
If you have access to "E2OpenPlugins" it's safe to merge these requests :
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
Posted 23 November 2016 - 12:36
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
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
Posted 23 November 2016 - 14:03
Edited by Taapat, 23 November 2016 - 14:05.
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
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
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
0 members, 17 guests, 0 anonymous users