diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-07-16 10:00:04 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-07-16 10:00:04 +0200 |
commit | 8393525165b9149a6e9d725eba88a65ce3fde0ba (patch) | |
tree | 0fc94589e7de1fae6935a5eb153addb0476710e5 | |
parent | c9e45322981dbe4c235ad7b9909138626184666f (diff) | |
download | vdr-8393525165b9149a6e9d725eba88a65ce3fde0ba.tar.gz vdr-8393525165b9149a6e9d725eba88a65ce3fde0ba.tar.bz2 |
The 'Recordings' menu is now listed alphabetically
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | recording.c | 4 |
3 files changed, 4 insertions, 2 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 5e48bc1f..c038e7ae 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -2,6 +2,7 @@ Thanks go to the following people for patches and contributions: Carsten Koch <Carsten.Koch@icem.de> for adding LIRC support + for making the 'Recordings' menu be listed alphabetically Plamen Ganev <pganev@com-it.net> for fixing the frequency offset for Hotbird channels @@ -67,3 +67,4 @@ Video Disk Recorder Revision History not to be correctly tuned (thanks to Plamen Ganev!). - Now clearing the replay buffer in search forward/back, which results in faster reaction. +- The 'Recordings' menu is now listed alphabetically (thanks to Carsten Koch!). diff --git a/recording.c b/recording.c index 2eba90b4..77c46aa5 100644 --- a/recording.c +++ b/recording.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.c 1.8 2000/05/13 16:16:56 kls Exp $ + * $Id: recording.c 1.9 2000/07/15 16:55:08 kls Exp $ */ #define _GNU_SOURCE @@ -20,7 +20,7 @@ #define DATAFORMAT "%4d-%02d-%02d.%02d:%02d.%02d.%02d" RECEXT #define NAMEFORMAT "%s/%s/" DATAFORMAT -#define FINDCMD "find %s -type d -name '%s'" +#define FINDCMD "find %s -type d -name '%s' | sort -df" #define DFCMD "df -m %s" #define MINDISKSPACE 1024 // MB |