mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
The 'epg.data' file is now read after all plugins have been started
This commit is contained in:
parent
08c96c2f0d
commit
bd23375248
@ -573,6 +573,7 @@ Florian Bartels <Florian.Bartels@envisage.de>
|
|||||||
Sascha Volkenandt <sascha@akv-soft.de>
|
Sascha Volkenandt <sascha@akv-soft.de>
|
||||||
for helping to fix a faulty behaviour of the "Mute" key in case the channel display
|
for helping to fix a faulty behaviour of the "Mute" key in case the channel display
|
||||||
is visible
|
is visible
|
||||||
|
for making the 'epg.data' file being read after all plugins have been started
|
||||||
|
|
||||||
Malcolm Caldwell <malcolm.caldwell@ntu.edu.au>
|
Malcolm Caldwell <malcolm.caldwell@ntu.edu.au>
|
||||||
for modifying LOF handling to allow for C-band reception
|
for modifying LOF handling to allow for C-band reception
|
||||||
|
2
HISTORY
2
HISTORY
@ -2026,3 +2026,5 @@ Video Disk Recorder Revision History
|
|||||||
is now used as primary device (just to have some device).
|
is now used as primary device (just to have some device).
|
||||||
- Adjusted some Premiere channels in 'channels.conf' (thanks to Thomas Koch).
|
- Adjusted some Premiere channels in 'channels.conf' (thanks to Thomas Koch).
|
||||||
- Updated 'channels.conf.cable' (thanks to Stefan Hußfeldt).
|
- Updated 'channels.conf.cable' (thanks to Stefan Hußfeldt).
|
||||||
|
- The 'epg.data' file is now read after all plugins have been started (thanks
|
||||||
|
to Sascha Volkenandt).
|
||||||
|
6
vdr.c
6
vdr.c
@ -22,7 +22,7 @@
|
|||||||
*
|
*
|
||||||
* The project's page is at http://www.cadsoft.de/people/kls/vdr
|
* The project's page is at http://www.cadsoft.de/people/kls/vdr
|
||||||
*
|
*
|
||||||
* $Id: vdr.c 1.148 2003/04/12 12:17:32 kls Exp $
|
* $Id: vdr.c 1.149 2003/04/12 13:57:45 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
@ -354,8 +354,6 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
cDvbDevice::Initialize();
|
cDvbDevice::Initialize();
|
||||||
|
|
||||||
cSIProcessor::Read();
|
|
||||||
|
|
||||||
// Start plugins:
|
// Start plugins:
|
||||||
|
|
||||||
if (!PluginManager.StartPlugins())
|
if (!PluginManager.StartPlugins())
|
||||||
@ -427,6 +425,8 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
cEITScanner EITScanner;
|
cEITScanner EITScanner;
|
||||||
|
|
||||||
|
cSIProcessor::Read();
|
||||||
|
|
||||||
// Signal handlers:
|
// Signal handlers:
|
||||||
|
|
||||||
if (signal(SIGHUP, SignalHandler) == SIG_IGN) signal(SIGHUP, SIG_IGN);
|
if (signal(SIGHUP, SignalHandler) == SIG_IGN) signal(SIGHUP, SIG_IGN);
|
||||||
|
Loading…
Reference in New Issue
Block a user