merge requests for PLi's git
Re: merge requests for PLi's git #1321
Re: merge requests for PLi's git #1322
Posted 16 March 2019 - 13:00
https://github.com/O...igma2/pull/2061 (dvb.cpp: Restore removed code)
https://github.com/O...igma2/pull/2060 (Update po files using updateallpo-multiOS.sh)
Merged.
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.
Re: merge requests for PLi's git #1323
Posted 16 March 2019 - 13:01
I think wanwizard should look at that...
It is just a status gif.
The only issue I have with it is that it hardcodes the branch name, which means one more thing not to forget when we branch or merge....
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.
Re: merge requests for PLi's git #1324
Re: merge requests for PLi's git #1325
Posted 16 March 2019 - 20:16
I did also try Travis CI badge branch automatically with local pre-commit hook recently, but decided I did not like or use it in the end.
.git/hooks/pre-commit
#!/usr/bin/python # place pre-commit file in your local .git/hooks/ import subprocess, re # Hard-Coded for your repo GITHUB_USER="LraiZer" REPO="AutoBouquets" # pro #URL_TRAVIS="https://travis-ci.com/" #URL_TOKEN="token=niZCz6igtFadBMtbzzkY&" # free URL_TRAVIS="https://travis-ci.org/" URL_TOKEN="" print "Starting pre-commit hook..." BRANCH=subprocess.check_output(["git","rev-parse","--abbrev-ref","HEAD"]).strip() # Output String with Variable substitution travis="{REPO} [![Build Status]({URL_TRAVIS}" \ "{GITHUB_USER}/{REPO}.svn?{URL_TOKEN}branch={BRANCH})]" \ "({URL_TRAVIS}{GITHUB_USER}/{REPO})\n" \ .format(URL_TRAVIS=URL_TRAVIS,URL_TOKEN=URL_TOKEN, GITHUB_USER=GITHUB_USER,REPO=REPO,BRANCH=BRANCH,) sentinal_str="[![Build Status]" readmelines=open("README.md").readlines() with open("README.md", "w") as fh: for aline in readmelines: if sentinal_str in aline and travis != aline: print "Replacing Travis CI badge with ({URL_TRAVIS}" \ "{GITHUB_USER}/{REPO}.svn?{URL_TOKEN}branch={BRANCH})" \ .format(URL_TRAVIS=URL_TRAVIS,URL_TOKEN=URL_TOKEN, GITHUB_USER=GITHUB_USER,REPO=REPO,BRANCH=BRANCH,) fh.write(travis) else: fh.write(aline) subprocess.check_output(["git", "add", "README.md"]) print "pre-commit hook complete."
In the end i opted to only allow travis to run on selected branches in my .travis.yml
eg.
branches: only: - develop - rc
AS most branches are derived from develop now, maybe you only need to run travis on develop and rc branches and have both these badges showing at the same time on all README?
Enigma2 develop:[![Build Status](https://travis-ci.org/OpenPLi/enigma2.svg?branch=develop)](https://travis-ci.org/OpenPLi/enigma2) rc:[![Build Status](https://travis-ci.org/OpenPLi/enigma2.svg?branch=rc)](https://travis-ci.org/OpenPLi/enigma2) ======= To build enigma2, start reading here: https://wiki.openpli.org/Information_for_Developers
Edited by LraiZer, 16 March 2019 - 20:18.
Re: merge requests for PLi's git #1326
Posted 17 March 2019 - 08:22
https://github.com/O...e-core/pull/661 (Update enigma2-plugins.bb)
do_package_qa: QA Issue: non -staticdev package contains static .a library: enigma2-plugin-systemplugins-networkbrowser path '/enigma2-plugin-systemplugins-networkbrowser/usr/lib/enigma2/python/Plugins/SystemPlugins/NetworkBrowser/netscan.a' [staticdev]
Open Vision sources: https://github.com/OpenVisionE2
Re: merge requests for PLi's git #1327
Posted 17 March 2019 - 10:17
Do you think https://github.com/O...eced8cef5a61e2a is good for PLi too?
It's the adapted version of adenin's changes for ATV.
Edited by Persian Prince, 17 March 2019 - 10:17.
Open Vision sources: https://github.com/OpenVisionE2
Re: merge requests for PLi's git #1328
Re: merge requests for PLi's git #1329
Posted 31 March 2019 - 19:53
A video showing the effect is attached at following location
https://www.mediafire.com/file/2p288i6z6995r1a/subtitle_comparison.mp4/fileRight has modified code, left does not.
Re: merge requests for PLi's git #1330
Posted 31 March 2019 - 21:50
Tried:
[wanwizard@catwoman] $ git apply /tmp/vix.patch /tmp/vix.patch:209: trailing whitespace. error: patch failed: lib/gdi/accel.cpp:460 error: lib/gdi/accel.cpp: patch does not apply
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.
Re: merge requests for PLi's git #1331
Posted 31 March 2019 - 22:08
I got this conflict
<<<<<<< HEAD
eDebug("[gAccel] alloc failed");
=======
eDebug("[gAccel] accel alloc failed %d allocations already in place", m_accel_allocation.size());
>>>>>>> 8a1fc877a... Subtitle debug logging tweaks
return -3;
I picked first one here
https://github.com/A...de243e1b9729508
Re: merge requests for PLi's git #1332
Posted 8 April 2019 - 21:25
https://github.com/O...e-core/pull/672 (Update libdca_0.0.6.bb: Fix fetch error, old URL won't work anymore.)
Open Vision sources: https://github.com/OpenVisionE2
Re: merge requests for PLi's git #1333
Posted 9 April 2019 - 16:32
Merged by Littlsat.
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.
Re: merge requests for PLi's git #1334
Posted 10 April 2019 - 11:24
https://github.com/O...igma2/pull/2106 (Update po files using updateallpo-multiOS.sh)
Open Vision sources: https://github.com/OpenVisionE2
Re: merge requests for PLi's git #1335
Re: merge requests for PLi's git #1336
Posted 16 April 2019 - 19:23
Merged by Littlsat.
Merged by WanWizard
May I ask is there a plan for supporting "osmio4kplus" and "viper4k" by PLi?
Open Vision sources: https://github.com/OpenVisionE2
Re: merge requests for PLi's git #1337
Posted 16 April 2019 - 19:43
I haven't seen any request from the manufacturers, which is a prerequisite.
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.
Re: merge requests for PLi's git #1338
Posted 21 May 2019 - 20:04
Open Vision sources: https://github.com/OpenVisionE2
Re: merge requests for PLi's git #1339
Posted 1 June 2019 - 02:00
Would you please squash merge https://github.com/O...e-core/pull/687 into develop so we could use it?
Open Vision sources: https://github.com/OpenVisionE2
Re: merge requests for PLi's git #1340
Posted 27 July 2019 - 18:09
https://github.com/O...igma2/pull/2221 (frontend.cpp: Don't hardcode cab_max, also correct ATBM7821 which is an example of cab_max.)
https://github.com/O...e-core/pull/690 [Avoid PAK archive (application/x-pak)]
Seems these are last days for Iranian github users: https://www.reddit.c...hub_and_myself/
Open Vision sources: https://github.com/OpenVisionE2
6 user(s) are reading this topic
0 members, 6 guests, 0 anonymous users