summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorAndreas Mair <amair.sob@googlemail.com>2005-03-22 12:27:44 +0100
committerAndreas Mair <amair.sob@googlemail.com>2005-03-22 12:27:44 +0100
commit46de243c304867eff807fef1e2fc31c9ad8f2f66 (patch)
tree22a0cfb4e1f0c50d2f64ce875f99d03b141ce1a5 /contrib
parent5083c05ce2e2bfc5719346d809719ebf01b0e69d (diff)
downloadvdradmin-am-46de243c304867eff807fef1e2fc31c9ad8f2f66.tar.gz
vdradmin-am-46de243c304867eff807fef1e2fc31c9ad8f2f66.tar.bz2
2005-03-22: 0.97-am2av0.97-am2a
- fixed Volume+ and Volume- in TV (Reported by Unimatrix0) - fixed missplaced channel name prog_summary (Reported by several people) - added updated English templates (Supplied by C.Y.M) - now VDRAdmin understands timers format from vdr1.3.22- and vdr1.3.23 (Supplied by Stefan Neuwirth) - fixed small display problem in timeline.
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/vdradmin-0.97-am1-vdr1.3.23-timer.diff44
1 files changed, 0 insertions, 44 deletions
diff --git a/contrib/vdradmin-0.97-am1-vdr1.3.23-timer.diff b/contrib/vdradmin-0.97-am1-vdr1.3.23-timer.diff
deleted file mode 100755
index 14ad12b..0000000
--- a/contrib/vdradmin-0.97-am1-vdr1.3.23-timer.diff
+++ /dev/null
@@ -1,44 +0,0 @@
---- vdradmind.pl.save 2005-03-20 19:38:06.000000000 +0100
-+++ vdradmind.pl 2005-03-20 19:43:51.000000000 +0100
-@@ -1435,26 +1435,25 @@
- substr($stop, 0, 2), $stop > $start ? $3 : $3 + 1,
- ($2 - 1), $1);
- } else { # regular timer
-- $startsse = my_mktime(substr($start, 2, 2),
-- substr($start, 0, 2), $dor, (my_strftime("%m") - 1),
-- my_strftime("%Y"));
-+ $dor =~ /(\d\d\d\d)-(\d\d)-(\d\d)/;
-+ $startsse = my_mktime(substr($start, 2, 2), substr($start, 0, 2), $3, ($2 - 1), $1);
-
- $stopsse = my_mktime(substr($stop, 2, 2),
-- substr($stop, 0, 2), $stop > $start ? $dor : $dor + 1,
-- (my_strftime("%m") - 1), my_strftime("%Y"));
-+ substr($stop, 0, 2), $stop > $start ? $3 : $3 + 1, ($2 - 1), $1);
- }
-
-- # move timers which have expired one month into the future
-- if(length($dor) != 7 && $stopsse < time) {
-- $startsse = my_mktime(substr($start, 2, 2),
-- substr($start, 0, 2), $dor, (my_strftime("%m") % 12),
-- (my_strftime("%Y") + (my_strftime("%m") == 12 ? 1 : 0)));
--
-- $stopsse = my_mktime(substr($stop, 2, 2),
-- substr($stop, 0, 2), $stop > $start ? $dor : $dor + 1,
-- (my_strftime("%m") % 12),
-- (my_strftime("%Y") + (my_strftime("%m") == 12 ? 1 : 0)));
-- }
-+# vdr-1.3.23 changes day format to yyyy-mm-dd
-+# # move timers which have expired one month into the future
-+# if(length($dor) != 7 && $stopsse < time) {
-+# $startsse = my_mktime(substr($start, 2, 2),
-+# substr($start, 0, 2), $dor, (my_strftime("%m") % 12),
-+# (my_strftime("%Y") + (my_strftime("%m") == 12 ? 1 : 0)));
-+#
-+# $stopsse = my_mktime(substr($stop, 2, 2),
-+# substr($stop, 0, 2), $stop > $start ? $dor : $dor + 1,
-+# (my_strftime("%m") % 12),
-+# (my_strftime("%Y") + (my_strftime("%m") == 12 ? 1 : 0)));
-+# }
-
- if($CONFIG{RECORDINGS} && length($dor) == 7) { # repeating timer
- # generate repeating timer entries for up to 28 days