diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2014-08-05 07:39:04 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2014-08-05 07:39:04 +0200 |
commit | a05825b5f14e2c90e4ba60a81f9d530611fe61d8 (patch) | |
tree | 51ca78022404943cea300b88c6cc8085c04d54b7 | |
parent | 6e8176be9a70b972f3cfc80a79441c417219b326 (diff) | |
download | vdradmin-am-3.6.10.tar.gz vdradmin-am-3.6.10.tar.bz2 |
Updated for release 3.6.10.v3.6.10
-rw-r--r-- | HISTORY | 4 | ||||
-rwxr-xr-x | install.sh | 2 | ||||
-rw-r--r-- | po/de.po | 2 | ||||
-rw-r--r-- | template/default/about.html | 2 | ||||
-rwxr-xr-x | vdradmind.pl | 4 |
5 files changed, 8 insertions, 6 deletions
@@ -1,4 +1,6 @@ -20xx-xx-xx: x.x.x +2014-08-05: 3.6.10 +- Improved: Optimized images to reduze their size. (Submitted by Ville Skyttä) +- Improved: Sort recordings secondarily by date when sorting by name. Makes the ordering stabler for multiple recordings with the same name. (Submitted by Olli Lammi) - Added: streaming of recordings folders (Submitted by Daniel Matzke). - Added: Hungarian translation (Submitted by István Füley). - Fixed LSTR when executing recording commands on VDR >= 1.7.21 (Submitted by David Rütti) @@ -1,6 +1,6 @@ #!/bin/bash # vim:noet:sw=4:ts=4: -# Copyright (c) 2005-2011 Andreas Mair +# Copyright (c) 2005-2014 Andreas Mair # # # Download and patchscript for VDRAdmin-AM @@ -5,7 +5,7 @@ # msgid "" msgstr "" -"Project-Id-Version: VDRAdmin-AM-3.6.9\n" +"Project-Id-Version: VDRAdmin-AM-3.6.10\n" "Report-Msgid-Bugs-To: Andreas Mair <amair.sob@googlemail.com>\n" "POT-Creation-Date: 2012-07-09 12:23+0200\n" "PO-Revision-Date: 2011-11-19 08:55+0100\n" diff --git a/template/default/about.html b/template/default/about.html index 2a71ba9..29b8442 100644 --- a/template/default/about.html +++ b/template/default/about.html @@ -20,7 +20,7 @@ <td class="col_label"><h5></h5></td> <td class="col_value"> <p> - <strong>VDRAdmin-AM</strong> © 2005-2011 Andreas Mair. + <strong>VDRAdmin-AM</strong> © 2005-2014 Andreas Mair. </p> <p> This program is free software; you can redistribute it and/or modify<br /> diff --git a/vdradmind.pl b/vdradmind.pl index e762347..6bc40db 100755 --- a/vdradmind.pl +++ b/vdradmind.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl # vim:et:sw=4:ts=4: # -# VDRAdmin-AM 2005 - 2011 by Andreas Mair <amair.sob@googlemail.com> +# VDRAdmin-AM 2005 - 2014 by Andreas Mair <amair.sob@googlemail.com> # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -26,7 +26,7 @@ require 5.004; use vars qw($PROCNAME); -my $VERSION = "3.6.9"; +my $VERSION = "3.6.10"; my $BASENAME; my $EXENAME; |