summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorTimo Eskola <timo@tolleri.net>2015-09-08 12:59:54 +0300
committerTimo Eskola <timo@tolleri.net>2015-09-08 12:59:54 +0300
commitb94ebafe8c2f32b404d69f1ea8e6bc2de68e606a (patch)
treecfcdfef1696b16df880e5be0d880e8f72e96446f /config.c
parent47a129b230b2b2e9a880948b5bc188ab715ba3b2 (diff)
downloadvdr-plugin-duplicates-b94ebafe8c2f32b404d69f1ea8e6bc2de68e606a.tar.gz
vdr-plugin-duplicates-b94ebafe8c2f32b404d69f1ea8e6bc2de68e606a.tar.bz2
Version 0.1.0:
- Added hiding of duplicate recordings. - Updated German translations, thanks to Joerg Bornkessel.
Diffstat (limited to 'config.c')
-rw-r--r--config.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/config.c b/config.c
index 5818ebf..3b27a68 100644
--- a/config.c
+++ b/config.c
@@ -13,13 +13,14 @@
cDuplicatesConfig::cDuplicatesConfig() {
title = 1;
+ hidden = 0;
}
-cDuplicatesConfig::~cDuplicatesConfig() { }
-
+cDuplicatesConfig::~cDuplicatesConfig() {}
bool cDuplicatesConfig::SetupParse(const char *Name, const char *Value) {
if (!strcasecmp(Name, "title")) title = atoi(Value);
+ else if (!strcasecmp(Name, "hidden")) hidden = atoi(Value);
else
return false;
return true;