1
diff -Naur vdr-plugin-epgsearch.org/epgsearch.c vdr-plugin-epgsearch/epgsearch.c
2
--- vdr-plugin-epgsearch.org/epgsearch.c 2020-02-16 07:56:33.307310006 +0100
3
+++ vdr-plugin-epgsearch/epgsearch.c 2020-02-16 07:50:53.826938247 +0100
8
- ChannelGroups.Load(AddDirectory(CONFIGDIR, "epgsearchchangrps.conf"), true);
9
- Blacklists.Load(AddDirectory(CONFIGDIR, "epgsearchblacklists.conf"));
10
- SearchExts.Load(AddDirectory(CONFIGDIR, "epgsearch.conf"));
11
- SearchTemplates.Load(AddDirectory(CONFIGDIR, "epgsearchtemplates.conf"));
12
- RecsDone.Load(AddDirectory(CONFIGDIR, "epgsearchdone.data"));
13
- SwitchTimers.Load(AddDirectory(CONFIGDIR, "epgsearchswitchtimers.conf"));
14
- NoAnnounces.Load(AddDirectory(CONFIGDIR, "noannounce.conf"));
15
- DefTimerCheckModes.Load(AddDirectory(CONFIGDIR, "deftimerchkmodes.conf"));
16
- TimersDone.Load(AddDirectory(CONFIGDIR, "timersdone.conf"));
17
- PendingNotifications.Load(AddDirectory(CONFIGDIR, "pendingnotifications.conf"));
18
+ ChannelGroups.Load(AddDirectory("/var/lib/vdr/data/epgsearch", "epgsearchchangrps.conf"), true);
19
+ Blacklists.Load(AddDirectory("/var/lib/vdr/data/epgsearch", "epgsearchblacklists.conf"));
20
+ SearchExts.Load(AddDirectory("/var/lib/vdr/data/epgsearch", "epgsearch.conf"));
21
+ SearchTemplates.Load(AddDirectory("/var/lib/vdr/data/epgsearch", "epgsearchtemplates.conf"));
22
+ RecsDone.Load(AddDirectory("/var/lib/vdr/data/epgsearch", "epgsearchdone.data"));
23
+ SwitchTimers.Load(AddDirectory("/var/lib/vdr/data/epgsearch", "epgsearchswitchtimers.conf"));
24
+ NoAnnounces.Load(AddDirectory("/var/lib/vdr/data/epgsearch", "noannounce.conf"));
25
+ DefTimerCheckModes.Load(AddDirectory("/var/lib/vdr/data/epgsearch", "deftimerchkmodes.conf"));
26
+ TimersDone.Load(AddDirectory("/var/lib/vdr/data/epgsearch", "timersdone.conf"));
27
+ PendingNotifications.Load(AddDirectory("/var/lib/vdr/data/epgsearch", "pendingnotifications.conf"));
29
cSearchTimerThread::Init(this);
30
cSwitchTimerThread::Init();
31
diff -Naur vdr-plugin-epgsearch.org/epgsearchcfg.c vdr-plugin-epgsearch/epgsearchcfg.c
32
--- vdr-plugin-epgsearch.org/epgsearchcfg.c 2020-02-16 07:56:33.323310490 +0100
33
+++ vdr-plugin-epgsearch/epgsearchcfg.c 2020-02-16 07:51:58.065261524 +0100
35
strcpy(MailAuthUser, "");
36
strcpy(MailAuthPass, "");
37
strcpy(LastMailConflicts, "");
40
manualTimerCheckDefault = 0;
41
noAnnounceWhileReplay = 0;
43
diff -Naur vdr-plugin-epgsearch.org/scripts/recordingdone.sh vdr-plugin-epgsearch/scripts/recordingdone.sh
44
--- vdr-plugin-epgsearch.org/scripts/recordingdone.sh 2020-02-16 07:56:33.319310370 +0100
45
+++ vdr-plugin-epgsearch/scripts/recordingdone.sh 2020-02-16 07:53:37.255598512 +0100
50
-EPGSEARCH_HOME="/etc/vdr/plugins"
51
+EPGSEARCH_HOME="/var/lib/vdr/data/epgsearch"
55
+VIDEO_ROOT="/var/video"
57
# do not edit below this line
58
#------------------------------------------------------------------------------
59
diff -Naur vdr-plugin-epgsearch.org/scripts/recrep.sh vdr-plugin-epgsearch/scripts/recrep.sh
60
--- vdr-plugin-epgsearch.org/scripts/recrep.sh 2020-02-16 07:56:33.319310370 +0100
61
+++ vdr-plugin-epgsearch/scripts/recrep.sh 2020-02-16 07:54:21.508751492 +0100
63
# adjust the following lines to your config
65
# your plugins config dir
66
-PLUGINCONFDIR=/var/lib/vdr/plugins/epgsearch
67
+PLUGINCONFDIR=/etc/vdr/plugins/epgsearch
70
# the key used to call epgsearch
71
diff -Naur vdr-plugin-epgsearch.org/scripts/timercmds-auxinfo.sh vdr-plugin-epgsearch/scripts/timercmds-auxinfo.sh
72
--- vdr-plugin-epgsearch.org/scripts/timercmds-auxinfo.sh 2020-02-16 07:56:33.319310370 +0100
73
+++ vdr-plugin-epgsearch/scripts/timercmds-auxinfo.sh 2020-02-16 07:54:58.685432309 +0100
78
-TIMERS="/video/timers.conf"
79
+TIMERS="/etc/vdr/timers.conf"