mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 06:00:30 -04:00
recordings menu: * renaming recordings and directories * moving recordings and directories, also between different filesystems * adjustable display of recording's length, date and size * directories are always shown on top of the list * reworked layout using icons for showing the status of list entries (directory, new recording, moving recording/directory, cutting recording, dvd archiv entry) * extended recordings info menu, shows name, path, channel, size, lifetime and priority of the recording * free disk space is shown for the filesystem of the current directory * sorting by name or date, adjustable for each directory; type of sorting will be stored * ascending/descending sorting * extends VDR's '-r'-option commands with 'move' and 'rename' * functionality of the DVDArchive-patch (see below) * protecting recordings in co-work with the PIN-plugin * a cutter queue WWW: http://projects.vdr-developer.org/projects/show/plg-extrecmenu
14 lines
500 B
C
14 lines
500 B
C
--- a/mymenurecordings.c
|
|
+++ b/mymenurecordings.c
|
|
@@ -1031,7 +1031,11 @@ eOSState myMenuRecordings::Play()
|
|
buffer=NULL;
|
|
}
|
|
golastreplayed=true;
|
|
+#if APIVERSNUM < 10728
|
|
myReplayControl::SetRecording(recording->FileName(),recording->Title());
|
|
+#else
|
|
+ myReplayControl::SetRecording(recording->FileName());
|
|
+#endif
|
|
cControl::Shutdown();
|
|
isyslog("[extrecmenu] starting replay of recording");
|
|
cControl::Launch(new myReplayControl());
|