Commit Graph

15443 Commits

Author SHA1 Message Date
Thilo Graf
4fd783306d testmenu: fix action key value, typo
Origin commit data
------------------
Branch: ni/coolstream
Commit: 190a990242
Author: Thilo Graf <dbt@novatux.de>
Date: 2021-10-04 (Mon, 04 Oct 2021)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-10-04 22:01:31 +02:00
Thilo Graf
0163f3b860 hintbox: expand ShowHintS() with slot parameter
This allows to execute one ore more methods inside the ShowHintS() method.
This should simplify calls of CHint messages with or without hide delays
In the simplest or most cases, only one code line is necessary for this,
see examples inside test_menu.cpp or here:

Single methode:
old:
CHintBox *hintBox new CHintBox(LOCALE_MESSAGEBOX_INFO, g_Locale->getText(LOCALE_SERVICEMENU_GETPLUGINS_HINT));
hintBox->paint();
g_Plugins->loadPlugins();
sleep(1);
hintBox->.hide();
delete hintbox;

new:
ShowHintS(LOCALE_SERVICEMENU_GETPLUGINS_HINT, 1, true, sigc::mem_fun(g_Plugins, &CPlugins::loadPlugins));

Multiple methods:
old:
	CHint *hint = new CHint("Restart Tuner");
	hint->paint();
	g_Zapit->setStandby(true);
	sleep(2);
	g_Zapit->setStandby(false);
	sleep(2);
	g_Zapit->Rezap();
	delete hint;

new:
	std::vector <hint_message_data_t> hints;
	hints.push_back({sigc::bind(sigc::mem_fun(g_Zapit, &CZapitClient::setStandby), true),"Stopping tuner...", NONEXISTANT_LOCALE, 2, true});
	hints.push_back({sigc::bind(sigc::mem_fun(g_Zapit, &CZapitClient::setStandby), false), "Start tuner...", NONEXISTANT_LOCALE, 2, true});
	hints.push_back({sigc::hide_return(sigc::mem_fun(g_Zapit, &CZapitClient::Rezap)), "Rezap...", NONEXISTANT_LOCALE, 2, true});
	ShowHintS(hints);

slots can be used with sigc::bind, sigc::hide_return (or what ever) too.
sample slot:
sigc::slot<void> sl = sigc::bind(sigc::mem_fun(this, &ClassName::method), parameter);

Note: Usage of namespace sigc are doing to simplify the lines,
 but this is a matter of discretion.

TODO: - timeoutbar should visualize a kind of busy mode.
 - implemetations


Origin commit data
------------------
Branch: ni/coolstream
Commit: 0ae328d081
Author: Thilo Graf <dbt@novatux.de>
Date: 2021-10-04 (Mon, 04 Oct 2021)

Origin message was:
------------------
hintbox: expand ShowHintS() with slot parameter

This allows to execute one ore more methods inside the ShowHintS() method.
This should simplify calls of CHint messages with or without hide delays
In the simplest or most cases, only one code line is necessary for this,
see examples inside test_menu.cpp or here:

Single methode:
old:
CHintBox *hintBox new CHintBox(LOCALE_MESSAGEBOX_INFO, g_Locale->getText(LOCALE_SERVICEMENU_GETPLUGINS_HINT));
hintBox->paint();
g_Plugins->loadPlugins();
sleep(1);
hintBox->.hide();
delete hintbox;

new:
ShowHintS(LOCALE_SERVICEMENU_GETPLUGINS_HINT, 1, true, sigc::mem_fun(g_Plugins, &CPlugins::loadPlugins));

Multiple methods:
old:
	CHint *hint = new CHint("Restart Tuner");
	hint->paint();
	g_Zapit->setStandby(true);
	sleep(2);
	g_Zapit->setStandby(false);
	sleep(2);
	g_Zapit->Rezap();
	delete hint;

new:
	std::vector <hint_message_data_t> hints;
	hints.push_back({sigc::bind(sigc::mem_fun(g_Zapit, &CZapitClient::setStandby), true),"Stopping tuner...", NONEXISTANT_LOCALE, 2, true});
	hints.push_back({sigc::bind(sigc::mem_fun(g_Zapit, &CZapitClient::setStandby), false), "Start tuner...", NONEXISTANT_LOCALE, 2, true});
	hints.push_back({sigc::hide_return(sigc::mem_fun(g_Zapit, &CZapitClient::Rezap)), "Rezap...", NONEXISTANT_LOCALE, 2, true});
	ShowHintS(hints);

slots can be used with sigc::bind, sigc::hide_return (or what ever) too.
sample slot:
sigc::slot<void> sl = sigc::bind(sigc::mem_fun(this, &ClassName::method), parameter);

Note: Usage of namespace sigc are doing to simplify the lines,
   but this is a matter of discretion.

TODO: - timeoutbar should visualize a kind of busy mode.
   - implemetations


------------------
This commit was generated by Migit
2021-10-04 22:01:31 +02:00
Thilo Graf
d69c74c13c testmenu: add CHint demos
Origin commit data
------------------
Branch: ni/coolstream
Commit: 6f0cac34bd
Author: Thilo Graf <dbt@novatux.de>
Date: 2021-10-04 (Mon, 04 Oct 2021)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-10-04 22:01:31 +02:00
vanhofen
ed365d9a58 movieplayer: switch from define to enum in AC3_ATYPE handling
Origin commit data
------------------
Branch: ni/coolstream
Commit: e0d5f4180b
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-03 (Sun, 03 Oct 2021)

Origin message was:
------------------
- movieplayer: switch from define to enum in AC3_ATYPE handling

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-10-03 23:09:22 +02:00
vanhofen
9fdcf87e26 movieplayer: better readability in AC3_ATYPE handling
Origin commit data
------------------
Branch: ni/coolstream
Commit: dae1a80d0f
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-03 (Sun, 03 Oct 2021)

Origin message was:
------------------
- movieplayer: better readability in AC3_ATYPE handling

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-10-03 23:09:22 +02:00
retsim01
74d6a7fcff movieplayer: introduce g_settings.movieplayer_select_ac3_atype0
Origin commit data
------------------
Branch: ni/coolstream
Commit: 13589d8689
Author: retsim01 <mrdata1972+neutrino@gmail.com>
Date: 2021-10-03 (Sun, 03 Oct 2021)

Origin message was:
------------------
- movieplayer: introduce g_settings.movieplayer_select_ac3_atype0

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-10-03 23:09:22 +02:00
vanhofen
e861435aa9 data: fix install of settingsupdate.conf
Origin commit data
------------------
Branch: ni/coolstream
Commit: 487212ba01
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-03 (Sun, 03 Oct 2021)

Origin message was:
------------------
- data: fix install of settingsupdate.conf

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-10-03 00:21:21 +02:00
vanhofen
323edb4b26 cst/hardware-caps: add pip_devs
Origin commit data
------------------
Branch: ni/coolstream
Commit: 84147b8b83
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-02 (Sat, 02 Oct 2021)

Origin message was:
------------------
- cst/hardware-caps: add pip_devs

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-10-02 22:33:10 +02:00
BPanther
1aa15f0384 DMX_PIP_CHANNEL removed, DMX_VIDEO_CHANNEL does the same
Origin commit data
------------------
Branch: ni/coolstream
Commit: 79908aca2f
Author: BPanther <bpanther_ts@hotmail.com>
Date: 2021-10-02 (Sat, 02 Oct 2021)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-10-02 22:28:41 +02:00
vanhofen
d9cde38ca1 helpers: simplify 364a86a34d
Origin commit data
------------------
Branch: ni/coolstream
Commit: dd5610b497
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-02 (Sat, 02 Oct 2021)

Origin message was:
------------------
- helpers: simplify 364a86a34d

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-10-02 19:08:11 +02:00
vanhofen
5a6b498278 neutrino: remove stop_lcd4l_support(void) function
Origin commit data
------------------
Branch: ni/coolstream
Commit: d62170c717
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-02 (Sat, 02 Oct 2021)

Origin message was:
------------------
- neutrino: remove stop_lcd4l_support(void) function

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-10-02 12:54:37 +02:00
vanhofen
9fbf5edd57 neutrino: more verbose console messages in Cleanup() function
Origin commit data
------------------
Branch: ni/coolstream
Commit: 7c9808633c
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-02 (Sat, 02 Oct 2021)

Origin message was:
------------------
- neutrino: more verbose console messages in Cleanup() function

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-10-02 12:39:27 +02:00
vanhofen
601a3fa3f1 moviebrowser: remove inactive code
Origin commit data
------------------
Branch: ni/coolstream
Commit: 033ef749e2
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-01 (Fri, 01 Oct 2021)

Origin message was:
------------------
- moviebrowser: remove inactive code

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-10-01 23:08:53 +02:00
Thilo Graf
203ae28da4 moviebrowser: simplify user guidance with sort menue
It's always easier to use blindly the cross control buttons,
than looking for the colored buttons on the remote control.
Nothing will change for users who want to use the colored keys directly,
but they will get used to it.
This was a directly user request.


Origin commit data
------------------
Branch: ni/coolstream
Commit: a3bba31908
Author: Thilo Graf <dbt@novatux.de>
Date: 2021-10-01 (Fri, 01 Oct 2021)

Origin message was:
------------------
moviebrowser: simplify user guidance with sort menue

It's always easier to use blindly the cross control buttons,
than looking for the colored buttons on the remote control.
Nothing will change for users who want to use the colored keys directly,
but they will get used to it.
This was a directly user request.


------------------
This commit was generated by Migit
2021-10-01 23:08:53 +02:00
Thilo Graf
da241ca4be lcd4l.cpp: exit ParseInfo() on missing instance of videoDecoder
Origin commit data
------------------
Branch: ni/coolstream
Commit: 731853f1ab
Author: Thilo Graf <dbt@novatux.de>
Date: 2021-10-01 (Fri, 01 Oct 2021)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-10-01 23:08:53 +02:00
Jacek Jendrzej
7ec6424e5c eitd:fix some compil warnings
Origin commit data
------------------
Branch: ni/coolstream
Commit: aba1f96d70
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2021-10-01 (Fri, 01 Oct 2021)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-10-01 23:08:53 +02:00
TangoCash
364a86a34d add url to curl error log
Origin commit data
------------------
Branch: ni/coolstream
Commit: c27672b573
Author: TangoCash <eric@loxat.de>
Date: 2021-09-30 (Thu, 30 Sep 2021)



------------------
This commit was generated by Migit
2021-10-01 20:50:22 +02:00
vanhofen
09e1980a07 change some hintboxes
Origin commit data
------------------
Branch: ni/coolstream
Commit: b43da640c5
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-30 (Thu, 30 Sep 2021)

Origin message was:
------------------
- change some hintboxes

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-30 22:56:15 +02:00
vanhofen
f0609fa301 hintbox: remove obsolete include
Origin commit data
------------------
Branch: ni/coolstream
Commit: ca10caf0d8
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-30 (Thu, 30 Sep 2021)

Origin message was:
------------------
- hintbox: remove obsolete include

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-30 22:04:18 +02:00
vanhofen
d5447061d6 hintbox: setDelay() prototype v2
Origin commit data
------------------
Branch: ni/coolstream
Commit: f67c5cce26
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-30 (Thu, 30 Sep 2021)

Origin message was:
------------------
- hintbox: setDelay() prototype v2

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-30 21:59:00 +02:00
vanhofen
b45931f7ce configure: rename ENABLE_HBBTV => ENABLE_AIT
Origin commit data
------------------
Branch: ni/coolstream
Commit: 9abe424ae0
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-29 (Wed, 29 Sep 2021)

Origin message was:
------------------
- configure: rename ENABLE_HBBTV => ENABLE_AIT

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-29 21:14:46 +02:00
max_10
89b7b1662a configure: update ait scan for hbbtv url configurable
Origin commit data
------------------
Branch: ni/coolstream
Commit: 34a896d819
Author: max_10 <max_10@gmx.de>
Date: 2021-09-29 (Wed, 29 Sep 2021)

Origin message was:
------------------
- configure: update ait scan for hbbtv url configurable

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-29 21:08:40 +02:00
max_10
66acafe062 make ait scan for hbbtv url configurable
Origin commit data
------------------
Branch: ni/coolstream
Commit: 71255ec5df
Author: max_10 <max_10@gmx.de>
Date: 2021-09-29 (Wed, 29 Sep 2021)

Origin message was:
------------------
- make ait scan for hbbtv url configurable

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-29 18:23:57 +02:00
vanhofen
dbbcc5396b hintbox: add setDelay() prototype
Origin commit data
------------------
Branch: ni/coolstream
Commit: 4686f51205
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-28 (Tue, 28 Sep 2021)

Origin message was:
------------------
- hintbox: add setDelay() prototype

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-28 23:12:14 +02:00
vanhofen
0bc0252359 neutrino: use simple hintboxes w/o header
To avoid the sleep command, a call hint->setDelay(1) nice. :)


Origin commit data
------------------
Branch: ni/coolstream
Commit: 94212a1536
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-28 (Tue, 28 Sep 2021)

Origin message was:
------------------
- neutrino: use simple hintboxes w/o header

To avoid the sleep command, a call hint->setDelay(1) nice. :)


------------------
This commit was generated by Migit
2021-09-28 22:52:06 +02:00
vanhofen
fe231232bc webchannels-setup: rework g_settings.livestreamResolution option chooser
Origin commit data
------------------
Branch: ni/coolstream
Commit: ee51b216f3
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-28 (Tue, 28 Sep 2021)

Origin message was:
------------------
- webchannels-setup: rework g_settings.livestreamResolution option chooser

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-28 22:31:12 +02:00
vanhofen
c207ef40c7 backup.sh: update shellexec configs
Origin commit data
------------------
Branch: ni/coolstream
Commit: f8e8ad97b7
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-26 (Sun, 26 Sep 2021)

Origin message was:
------------------
- backup.sh: update shellexec configs

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-26 21:34:45 +02:00
vanhofen
8171dc7253 webchannels-setup: re-add inactive code around g_settings.livestreamScriptPath
Origin commit data
------------------
Branch: ni/coolstream
Commit: 3f6718352e
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-26 (Sun, 26 Sep 2021)

Origin message was:
------------------
- webchannels-setup: re-add inactive code around g_settings.livestreamScriptPath

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-26 21:28:21 +02:00
vanhofen
883cd011a8 fix last two commits
Origin commit data
------------------
Branch: ni/coolstream
Commit: 44ef9bd489
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-26 (Sun, 26 Sep 2021)

Origin message was:
------------------
- fix last two commits

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-26 21:23:25 +02:00
vanhofen
4dd533048a scripts: move migration script away from control scripts
Origin commit data
------------------
Branch: ni/coolstream
Commit: 58f91648c0
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-26 (Sun, 26 Sep 2021)

Origin message was:
------------------
- scripts: move migration script away from control scripts

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-26 20:25:38 +02:00
vanhofen
53a13dd54f scripts: move flash.start script away from control scripts
Origin commit data
------------------
Branch: ni/coolstream
Commit: fa17da4f0a
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-26 (Sun, 26 Sep 2021)

Origin message was:
------------------
- scripts: move flash.start script away from control scripts

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-26 20:25:38 +02:00
vanhofen
3e0aa03c89 scripts: fix permissions of restore.sh.in
Origin commit data
------------------
Branch: ni/coolstream
Commit: d0c5011ac5
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-26 (Sun, 26 Sep 2021)

Origin message was:
------------------
- scripts: fix permissions of restore.sh.in

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-26 20:25:38 +02:00
TangoCash
e88fe31a50 getting ait after starting playback
Origin commit data
------------------
Branch: ni/coolstream
Commit: 7b2d9c6d9a
Author: TangoCash <eric@loxat.de>
Date: 2021-09-25 (Sat, 25 Sep 2021)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-25 19:39:22 +02:00
TangoCash
3304f21ce8 cleanup (supplemental to 58bad1ff9a)
Origin commit data
------------------
Branch: ni/coolstream
Commit: 0cbc918861
Author: TangoCash <eric@loxat.de>
Date: 2021-09-25 (Sat, 25 Sep 2021)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-25 19:39:22 +02:00
vanhofen
d9762a0739 epgview: correct labeling of green button
Origin commit data
------------------
Branch: ni/coolstream
Commit: 0cc94221de
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-24 (Fri, 24 Sep 2021)

Origin message was:
------------------
- epgview: correct labeling of green button

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-24 23:14:50 +02:00
vanhofen
a112cbe2eb locale: fix deutsch.locale
Origin commit data
------------------
Branch: ni/coolstream
Commit: ad3f09d92d
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-24 (Fri, 24 Sep 2021)

Origin message was:
------------------
- locale: fix deutsch.locale

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-24 23:00:37 +02:00
vanhofen
1dc37e309c epgview: fix switch back from movie database view
Origin commit data
------------------
Branch: ni/coolstream
Commit: d56e7e810d
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-24 (Fri, 24 Sep 2021)

Origin message was:
------------------
- epgview: fix switch back from movie database view

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-24 22:52:05 +02:00
vanhofen
ed97434fbf epgview: auto-calc buttons struct
Origin commit data
------------------
Branch: ni/coolstream
Commit: 1f21182405
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-24 (Fri, 24 Sep 2021)

Origin message was:
------------------
- epgview: auto-calc buttons struct

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-24 22:52:05 +02:00
vanhofen
11774308c0 epgview: add movie database selection
Origin commit data
------------------
Branch: ni/coolstream
Commit: 0b0cbabeca
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-24 (Fri, 24 Sep 2021)

Origin message was:
------------------
- epgview: add movie database selection

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-24 22:52:05 +02:00
vanhofen
ed081adc60 hintbox: just code formatting
Origin commit data
------------------
Branch: ni/coolstream
Commit: b53d07fcf4
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-24 (Fri, 24 Sep 2021)

Origin message was:
------------------
- hintbox: just code formatting

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-24 22:52:05 +02:00
vanhofen
3540bf3be2 luainstance: allow access to defined directories
Origin commit data
------------------
Branch: ni/coolstream
Commit: 603e0fefab
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-23 (Thu, 23 Sep 2021)

Origin message was:
------------------
- luainstance: allow access to defined directories

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-23 22:57:25 +02:00
TangoCash
c22c1576e4 add ait scan (hbbtvurls) to /tmp/ait.txt for now
Origin commit data
------------------
Branch: ni/coolstream
Commit: 11ef412ccd
Author: TangoCash <eric@loxat.de>
Date: 2021-09-22 (Wed, 22 Sep 2021)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-22 21:29:34 +02:00
vanhofen
b66cd77a12 Revert "webtv: add prefered quality option for use in webtv plugins"; ...
re-activate g_settings.livestreamResolution


Origin commit data
------------------
Branch: ni/coolstream
Commit: a56c04ca97
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-20 (Mon, 20 Sep 2021)

Origin message was:
------------------
- Revert "webtv: add prefered quality option for use in webtv plugins"; ...

re-activate g_settings.livestreamResolution


------------------
This commit was generated by Migit
2021-09-20 21:15:07 +02:00
vanhofen
fc35a64055 webchannels-setup: simplify WEBTV_XML_QUALITY_OPTIONS; small changes to menu structure
Origin commit data
------------------
Branch: ni/coolstream
Commit: cc3345d7a7
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-19 (Sun, 19 Sep 2021)

Origin message was:
------------------
- webchannels-setup: simplify WEBTV_XML_QUALITY_OPTIONS; small changes to menu structure

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-19 20:48:09 +02:00
Jacek Jendrzej
91a1ec674a webtv: add prefered quality option for use in webtv plugins
Origin commit data
------------------
Branch: ni/coolstream
Commit: 92b69d621b
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2021-09-19 (Sun, 19 Sep 2021)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-19 20:01:30 +02:00
vanhofen
81b7b4e7b8 miscsettings_menu: add hintbox around epg_read_now
Origin commit data
------------------
Branch: ni/coolstream
Commit: d9186c2110
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-18 (Sat, 18 Sep 2021)

Origin message was:
------------------
- miscsettings_menu: add hintbox around epg_read_now

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-18 22:33:21 +02:00
TangoCash
50979e5081 fix f92278c106
Origin commit data
------------------
Branch: ni/coolstream
Commit: e45940525e
Author: TangoCash <eric@loxat.de>
Date: 2021-09-17 (Fri, 17 Sep 2021)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-18 22:20:45 +02:00
vanhofen
28e8c9e0f9 miscsettings_menu: minor reworks in epg menu and epg locales
Origin commit data
------------------
Branch: ni/coolstream
Commit: 6b9effd62f
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-18 (Sat, 18 Sep 2021)

Origin message was:
------------------
- miscsettings_menu: minor reworks in epg menu and epg locales

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-18 22:17:52 +02:00
vanhofen
0c7df3fa96 lcd4l: add and use wrapper functions to handle /tmp/lcd/menu
Origin commit data
------------------
Branch: ni/coolstream
Commit: e2cf2d835a
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-09-18 (Sat, 18 Sep 2021)

Origin message was:
------------------
- lcd4l: add and use wrapper functions to handle /tmp/lcd/menu

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-18 21:52:01 +02:00
max_10
6459313cb9 fix build with ffmpeg version > 59.0.100
Origin commit data
------------------
Branch: ni/coolstream
Commit: efea65625b
Author: max_10 <max_10@gmx.de>
Date: 2021-09-18 (Sat, 18 Sep 2021)

Origin message was:
------------------
- fix build with ffmpeg version > 59.0.100

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2021-09-18 20:48:48 +02:00