summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY3
-rw-r--r--Makefile3
-rw-r--r--plugin.c2
3 files changed, 5 insertions, 3 deletions
diff --git a/HISTORY b/HISTORY
index 55c24e5..6b9386b 100644
--- a/HISTORY
+++ b/HISTORY
@@ -4,6 +4,9 @@ VDR Plugin 'graphlcd' Revision History
2021-01-17
- Fix name inconsistency between read and write of setup config value "ShowReplayLogo"
+2020-08-19: Version 1.0.2
+- Fixed VDR version detection in Makefile
+
2018-11-10: Version 1.0.1
- Improved "trim" function which doesn't cause negative size_type values
diff --git a/Makefile b/Makefile
index f0321e8..a96cd0b 100644
--- a/Makefile
+++ b/Makefile
@@ -77,8 +77,7 @@ else
endif
# post 1.7.33 vdr?
-FLAG_NEWSTYLE=false
-$(shell [ $(APIVERSNUM) -gt 10733 ] && FLAG_NEWSTYLE=true)
+FLAG_NEWSTYLE = $(shell [ $(APIVERSNUM) -gt 10733 ] && echo true || echo false)
# do some adaptions and defaults for old vdr versions
ifeq ($(FLAG_NEWSTYLE),false)
diff --git a/plugin.c b/plugin.c
index cea0f7a..3d266d4 100644
--- a/plugin.c
+++ b/plugin.c
@@ -39,7 +39,7 @@
static const char * kPluginName = "graphlcd";
-static const char *VERSION = "1.0.1";
+static const char *VERSION = "1.0.2";
static const char *DESCRIPTION = trNOOP("Output to graphic LCD");
static const char *MAINMENUENTRY = NULL;