diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2005-05-12 11:01:29 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2005-05-12 11:01:29 +0200 |
commit | bebe0382652e0616c8d040b3e217c2a21b81beee (patch) | |
tree | 30378ade7ba3e45c4ed6fc0915580cecc344d226 /debian/patches | |
parent | 022c4f162d7b83cb287b7d16749899d9e7c4242a (diff) | |
download | vdradmin-am-0.97-am3.2.tar.gz vdradmin-am-0.97-am3.2.tar.bz2 |
2005-05-12: 0.97-am3.2v0.97-am3.2
- Added "make uninstall" to remove VDRAdmin from your system if you have installed it using "make install". Please always use this before you install a new release!
- Fixed programming of repeating timers when day is "D" (Thanks to "maxkr" for reporting this).
- Print date in prog_list & prog_list2 in system's locale. Please comment!
- More transparent "selected channels" usage.
- Added reccmds.conf content to rec_list (needs valid VDRCONFDIR in vdradmind.conf)
- AutoTimers can now be limited to certain weekdays (Patch submitted by Magnus Schmidt).
- Streaming can be turn on/off for live viewing and recordings viewing (Based on code submitted by Tobias Grimm).
- Added streaming button to prog_list2.
- Fixed handling of incorrect start/stop times in AutoTimer.
- Changed localisation to use gettext() (Thanks to Tobias Grimm for doing most of the needed work).
- Language can no longer be set in VDRAdmin, it's taken from your system's setting. Issue "export LC_MESSAGES=<language code>" if you need to change it, where <language code> is one of "de_DE", "en_EN", "es_ES", "fi_FI" or "fr_FR".
- Added Finnish i18n (Submitted by Rolf Ahrenberg).
- Fixed ":" & "|" handling in timer's directory (Thanks "vejoun").
- Added links to prog_list on channels in at_timer_list and timer_list.
- Added IMDb lookup button to recording's detail view.
- Added "Priority" and "Lifetime" tooltip to at_timer_list and timer_list (point mouse to timer's name).
- Small changes for streaming recordings: Please update your vdradmind.conf (VIDEODIR & ST_VIDEODIR)!
- Non-LinVDR logo on non-LinVDR machines (Posted by Unimatrix0 at vdrportal.de).
Diffstat (limited to 'debian/patches')
-rw-r--r-- | debian/patches/00list | 2 | ||||
-rw-r--r-- | debian/patches/01_dist-var.dpatch | 21 | ||||
-rw-r--r-- | debian/patches/03_cfgfiles-fhs.dpatch | 28 |
3 files changed, 0 insertions, 51 deletions
diff --git a/debian/patches/00list b/debian/patches/00list deleted file mode 100644 index 7b9e8ba..0000000 --- a/debian/patches/00list +++ /dev/null @@ -1,2 +0,0 @@ -01_dist-var -03_cfgfiles-fhs.dpatch diff --git a/debian/patches/01_dist-var.dpatch b/debian/patches/01_dist-var.dpatch deleted file mode 100644 index 3bf465e..0000000 --- a/debian/patches/01_dist-var.dpatch +++ /dev/null @@ -1,21 +0,0 @@ -#! /bin/sh /usr/share/dpatch/dpatch-run - -## 01_dist-var.dpatch by Thomas Schmidt <thomas.schmidt@in.stud.tu-ilmenau.de> -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: Change vdradmin.pl to search for it's files in system-directories, -## DP: instead of local, relative paths - -@DPATCH@ -diff -urNad /home/chelli/vdr/cvs/vdr/vdradmin/vdradmind.pl vdradmin/vdradmind.pl ---- /home/chelli/vdr/cvs/vdr/vdradmin/vdradmind.pl 2004-05-27 16:34:55.000000000 +0200 -+++ vdradmin/vdradmind.pl 2004-05-27 16:35:55.000000000 +0200 -@@ -42,7 +42,7 @@ - #use warnings; - - #my $SEARCH_FILES_IN_SYSTEM = (-d '/usr/share/vdradmin/lib' ? 1 : 0); # for distribution --my $SEARCH_FILES_IN_SYSTEM = 0; -+my $SEARCH_FILES_IN_SYSTEM = 1; - - sub true () { 1 }; - sub false () { 0 }; diff --git a/debian/patches/03_cfgfiles-fhs.dpatch b/debian/patches/03_cfgfiles-fhs.dpatch deleted file mode 100644 index 50bb8e1..0000000 --- a/debian/patches/03_cfgfiles-fhs.dpatch +++ /dev/null @@ -1,28 +0,0 @@ -#! /bin/sh /usr/share/dpatch/dpatch-run -## 03_cfgfiles-fhs.dpatch by Thomas Schmidt <thomas.schmidt@in.stud.tu-ilmenau.de> -## -## All lines beginning with `## DP:' are a description of the patch. -## DP: Change the path to the cfgfile and autotime-file to comply -## DP: with the FHS (vdradmin changes these files at runtime) - -@DPATCH@ -diff -urNad vdradmin-0.96/vdradmind.pl /tmp/dpep.0DtdZt/vdradmin-0.96/vdradmind.pl ---- vdradmin-0.96/vdradmind.pl 2005-01-23 21:41:19.000000000 +0100 -+++ /tmp/dpep.0DtdZt/vdradmin-0.96/vdradmind.pl 2005-01-23 21:42:53.000000000 +0100 -@@ -94,10 +94,10 @@ - } else { - $TEMPLATEDIR = "/usr/share/vdradmin/template"; - $I18NDIR = "/usr/share/vdradmin/i18n"; -- $CONFFILE = "/etc/vdradmin/vdradmind.conf"; -+ $CONFFILE = "/var/lib/vdradmin/vdradmind.conf"; - $LOGFILE = "/var/log/$CONFIG{LOGFILE}"; - $PIDFILE = "/var/run/vdradmind.pid"; -- $AT_FILENAME = "/etc/vdradmin/vdradmind.at"; -+ $AT_FILENAME = "/var/lib/vdradmin/vdradmind.at"; -- $DONE_FILENAME = "/etc/vdradmin/vdradmind.done"; -+ $DONE_FILENAME = "/var/lib/vdradmin/vdradmind.done"; -- $BL_FILENAME = "/etc/vdradmin/vdradmind.bl"; -+ $BL_FILENAME = "/var/lib/vdradmin/vdradmind.bl"; - } - my $DONE = &DONE_Read || {}; - |