Commit Graph

15601 Commits

Author SHA1 Message Date
vanhofen
b2c97d6789 icons: add missing hourglass.png
Origin commit data
------------------
Branch: ni/coolstream
Commit: 2910c4830e
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-09 (Sat, 09 Oct 2021)

Origin message was:
------------------
- icons: add missing hourglass.png

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

------------------
This commit was generated by Migit
2021-10-09 23:57:52 +02:00
vanhofen
3b74ce1acf icons: rename hourglass0.png => hourglass.png
Origin commit data
------------------
Branch: ni/coolstream
Commit: eae02ba211
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-09 (Sat, 09 Oct 2021)

Origin message was:
------------------
- icons: rename hourglass0.png => hourglass.png

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

------------------
This commit was generated by Migit
2021-10-09 23:55:33 +02:00
vanhofen
fbbb25e1bc hourglass: allow hourglass.png
Origin commit data
------------------
Branch: ni/coolstream
Commit: ca16db0604
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-09 (Sat, 09 Oct 2021)

Origin message was:
------------------
- hourglass: allow hourglass.png

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

------------------
This commit was generated by Migit
2021-10-09 23:53:50 +02:00
vanhofen
4b95537580 icons: remove "animated" hourglass icons
Origin commit data
------------------
Branch: ni/coolstream
Commit: 8084b88df0
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-09 (Sat, 09 Oct 2021)

Origin message was:
------------------
- icons: remove "animated" hourglass icons

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

------------------
This commit was generated by Migit
2021-10-09 23:45:23 +02:00
Thilo Graf
b0886e8b8d neutrino.cpp: action reloadplugins, implement ShowHintS
Origin commit data
------------------
Branch: ni/coolstream
Commit: acdb0dac8a
Author: Thilo Graf <dbt@novatux.de>
Date: 2021-10-09 (Sat, 09 Oct 2021)


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

------------------
This commit was generated by Migit
2021-10-09 01:23:28 +02:00
Thilo Graf
17fdceab54 neutrino.cpp: action save settings, implement ShowHintS
The same is possible with tuxtxt_init() and tuxtxt_close(), if reqiured


Origin commit data
------------------
Branch: ni/coolstream
Commit: 7a62a65a9f
Author: Thilo Graf <dbt@novatux.de>
Date: 2021-10-09 (Sat, 09 Oct 2021)



------------------
This commit was generated by Migit
2021-10-09 01:23:28 +02:00
Thilo Graf
48dec73e14 gui/widget: add class CHourGlass
Provides an hourglass/snake-loader function to visualize running processes.
A template xcf-file for Gimp 2.10 is appended. Feel free to edit.


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



------------------
This commit was generated by Migit
2021-10-09 01:23:28 +02:00
Thilo Graf
187465838b hintbox: try to fix logic for enable/disable timeout bar.
Timeout bar could not be switched off, is now disabled for CHint
TODO: find a better solution to vizualize timeout for CHint.
 It looks not so good on the top of the hintbox, especially
 with round corners or frameless window.


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

Origin message was:
------------------
hintbox: try to fix logic for enable/disable timeout bar.

Timeout bar could not be switched off, is now disabled for CHint
TODO: find a better solution to vizualize timeout for CHint.
   It looks not so good on the top of the hintbox, especially
   with round corners or frameless window.


------------------
This commit was generated by Migit
2021-10-04 22:01:31 +02:00
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