summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Mair <amair.sob@googlemail.com>2012-04-29 10:43:15 +0200
committerAndreas Mair <amair.sob@googlemail.com>2012-04-29 10:43:15 +0200
commit4a9601e4aaf71de72e9aaf0103dee096c15b5dfb (patch)
tree36e6ede3475b0c40269036d35777faf89de6a059
parentee51a6e81510657265dd9903eadbd07b0ca6bbea (diff)
downloadvdr-plugin-skinenigmang-4a9601e4aaf71de72e9aaf0103dee096c15b5dfb.tar.gz
vdr-plugin-skinenigmang-4a9601e4aaf71de72e9aaf0103dee096c15b5dfb.tar.bz2
Updated for release 0.1.2.v0.1.2
-rw-r--r--HISTORY8
-rw-r--r--README8
-rw-r--r--skinenigmang.c2
3 files changed, 12 insertions, 6 deletions
diff --git a/HISTORY b/HISTORY
index 213cd02..1283e2e 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,10 +1,16 @@
VDR Skin 'EnigmaNG' Revision History
------------------------------------------
-2010-xx-xx: Version 0.1.2
+2012-04-29: Version 0.1.2
- Changed: Use vdr fuctions to determine signal strength (Closes #811).
- Added: Hungarian translation (Provided by István Füley).
+- Fixed: Don't use deprecated member access (introduced in VDR 1.7.21).
+- Changed: Increased max values for image/logo width/height and logo cache.
+- Fixed: Handle case if curent event starts in the future in channel info OSD (Fixes #649).
+- Fixed: width of a timer's title in menu OSD info area (Closes #633).
+- Included: Catalan translation (Submitted by Innocent De Marchi).
- Updated: Italian translation (Provided by Diego Pierotto).
+- Fixed: Displaying Content Descriptor in EPG details.
- Added: New setup options for height and width of channel logos area.
- Changed: Look for channel logos only in "logos" folder ("hqlogos" folder no longer supported).
diff --git a/README b/README
index 5373880..3d7c932 100644
--- a/README
+++ b/README
@@ -42,8 +42,8 @@ SKINENIGMA_USE_PLUGIN_MAILBOX = 1
If you use the mailbox plugin this will include support for it.
SKINENIGMA_NO_MENULOGO = 1
-This turns usage of logos in the main menu complete. This might also
-improve the performance of the menus. EXPERIMENTAL!!!
+This turns usage of logos in the main menu completely off. This might
+also improve the performance of the menus. EXPERIMENTAL!!!
HAVE_IMAGEMAGICK = 1
If you have installed ImageMagick and want to use images in event's
@@ -252,11 +252,11 @@ Setup Options
The algorithm to use for resizing. Please ask the Imagemagick documentation if
you want to know how the algorithms work.
-- Image width (80 - 180)
+- Image width (80 - 360)
(NOTE: only visible if Imagemagick support is compiled in!)
The width for event/recording images.
-- Image height (80 - 144)
+- Image height (80 - 244)
(NOTE: only visible if Imagemagick support is compiled in!)
The height for event/recording images.
diff --git a/skinenigmang.c b/skinenigmang.c
index fe96453..577ceb7 100644
--- a/skinenigmang.c
+++ b/skinenigmang.c
@@ -20,7 +20,7 @@
#endif
-static const char VERSION[] = "0.1.1";
+static const char VERSION[] = "0.1.2";
static const char DESCRIPTION[] = trNOOP("EnigmaNG skin");
class cPluginSkinEnigma : public cPlugin {