Release version 0.4.5.

This commit is contained in:
Johns 2012-01-28 13:32:12 +01:00
parent 60a7c36fa6
commit eed708b9ea
4 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,7 @@
User johns User johns
Date: Date:
Release Version 0.4.5
Add configurable skip lines at video top and bottom. Add configurable skip lines at video top and bottom.
Add auto-crop tolerance configuration. Add auto-crop tolerance configuration.
Reduces audio latency, increases audio buffer time. Reduces audio latency, increases audio buffer time.

1
Todo
View File

@ -107,6 +107,7 @@ setup:
unsorted: unsorted:
Menu -> Setup -> Plugins -> skingenigmang -> General Menu -> Setup -> Plugins -> skingenigmang -> General
-> Try 8bpp single area: no, has missing parts. -> Try 8bpp single area: no, has missing parts.
stoping vdr while plugin is suspended opens and closes a window.
future features (not planed for 1.0 - 1.5) future features (not planed for 1.0 - 1.5)

2
misc.h
View File

@ -86,7 +86,7 @@ static inline void Syslog(const int level, const char *format, ...)
/** /**
** Show fatal error. ** Show fatal error.
*/ */
#define Fatal(fmt...) do { Error(fmt); exit(-1); } while (0) #define Fatal(fmt...) do { Error(fmt); abort(); } while (0)
/** /**
** Show warning. ** Show warning.

View File

@ -42,7 +42,7 @@ extern "C"
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
static const char *const VERSION = "0.4.0"; static const char *const VERSION = "0.4.5";
static const char *const DESCRIPTION = static const char *const DESCRIPTION =
trNOOP("A software and GPU emulated HD device"); trNOOP("A software and GPU emulated HD device");