Version 1.2.6pre5

- Added cDevice::GetSTC() (suggested by Sven Goethel).
- Added Asia-Pacific satellites to 'sources.conf' (thanks to Richard Scobie).
- Added North American satellites to 'sources.conf' (thanks to Luke Jenkins).
- Fixed getting the list of recordings in case VDR is started from a directory
  where it doesn't have access to (thanks to Dirk Mueller).
This commit is contained in:
Klaus Schmidinger
2003-11-08 18:00:00 +01:00
parent d62fbea7ba
commit 17c5b4169e
11 changed files with 83 additions and 12 deletions

View File

@@ -261,7 +261,7 @@ The next steps you should perform now are:
sub CreateFile
{
my ($Name, $Content) = @_;
open(FILE, ">$PLUGINDIR/$Name") || die "$Name: $!\n";
open(FILE, ">$PLUGINDIR/$Name") || die "$Name: V126pre5 $!\n";
print FILE $Content;
close(FILE);
}