summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--Todo1
-rw-r--r--misc.h2
-rw-r--r--softhddevice.cpp2
4 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 4053327..34b470c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,7 @@
User johns
Date:
+ Release Version 0.4.5
Add configurable skip lines at video top and bottom.
Add auto-crop tolerance configuration.
Reduces audio latency, increases audio buffer time.
diff --git a/Todo b/Todo
index 640aebb..03ea597 100644
--- a/Todo
+++ b/Todo
@@ -107,6 +107,7 @@ setup:
unsorted:
Menu -> Setup -> Plugins -> skingenigmang -> General
-> 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)
diff --git a/misc.h b/misc.h
index a64a475..1cfa88d 100644
--- a/misc.h
+++ b/misc.h
@@ -86,7 +86,7 @@ static inline void Syslog(const int level, const char *format, ...)
/**
** Show fatal error.
*/
-#define Fatal(fmt...) do { Error(fmt); exit(-1); } while (0)
+#define Fatal(fmt...) do { Error(fmt); abort(); } while (0)
/**
** Show warning.
diff --git a/softhddevice.cpp b/softhddevice.cpp
index 67cb13a..55eb0f2 100644
--- a/softhddevice.cpp
+++ b/softhddevice.cpp
@@ -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 =
trNOOP("A software and GPU emulated HD device");