summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY6
-rw-r--r--Makefile2
-rw-r--r--README.git16
-rw-r--r--bitmap.c2
-rw-r--r--bitmap.h2
-rw-r--r--ffont.c2
-rw-r--r--ffont.h2
-rw-r--r--imon.c2
-rw-r--r--imon.h2
-rw-r--r--imonlcd.c4
-rw-r--r--po/de_DE.po4
-rw-r--r--po/it_IT.po2
-rw-r--r--setup.c2
-rw-r--r--setup.h2
-rw-r--r--status.c2
-rw-r--r--status.h2
-rw-r--r--watch.c2
-rw-r--r--watch.h2
18 files changed, 32 insertions, 26 deletions
diff --git a/HISTORY b/HISTORY
index fb4027f..ee1e7dc 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,6 +1,12 @@
VDR Plugin 'imonlcd' Revision History
-------------------------------------
+2012-06-30 Version 1.0.0
+- Update plugin interface for vdr 1.7.26
+- Wrong time on playback of HD recordings (Bug #517)
+- Ignore empty subtitle on replay (Feature #484)
+- Avoid hidden ‘ciMonFont::DrawText’ [-Werror=overloaded-virtual] (Bug #1034)
+
2010-11-03 Version 0.0.5
- blank the device by svdrp command 'off'
- Allow turn display off at night (Feature #175)
diff --git a/Makefile b/Makefile
index 0e85bbc..4565ed2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for iMON LCD plugin to VDR (C++)
#
-# (C) 2009 Andreas Brachold <vdr07 AT deltab de>
+# (C) 2009-2012 Andreas Brachold <vdr07 AT deltab de>
#
# This iMON LCD plugin is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published
diff --git a/README.git b/README.git
index 71e6f97..54b21e8 100644
--- a/README.git
+++ b/README.git
@@ -12,21 +12,21 @@ set date in HISTORY
git commit
git status # must be clean
-git tag -a -m'new release' '0.0.5'
+git tag -a -m'new release' '1.0.0'
git push --tags
cd
cd tmp
-rm -rf imonlcd-0.0.5
-git clone git://projects.vdr-developer.org/vdr-plugin-imonlcd.git imonlcd-0.0.5
-cd imonlcd-0.0.5
-git checkout 0.0.5
+rm -rf imonlcd-1.0.0
+git clone git://projects.vdr-developer.org/vdr-plugin-imonlcd.git imonlcd-1.0.0
+cd imonlcd-1.0.0
+git checkout 1.0.0
rm -rf .git*
cd ..
-tar cfz vdr-imonlcd-0.0.5.tgz imonlcd-0.0.5
+tar cfz vdr-imonlcd-1.0.0.tgz imonlcd-1.0.0
-in the project configuration, add new version 0.0.5
-upload vdr-imonlcd-0.0.5.tgz
+in the project configuration, add new version 1.0.0
+upload vdr-imonlcd-1.0.0.tgz
announce new version at vdr@linuxtv.org
diff --git a/bitmap.c b/bitmap.c
index ef0c58b..eae8c24 100644
--- a/bitmap.c
+++ b/bitmap.c
@@ -1,7 +1,7 @@
/*
* iMON LCD plugin for VDR (C++)
*
- * (C) 2009 Andreas Brachold <vdr07 AT deltab de>
+ * (C) 2009-2012 Andreas Brachold <vdr07 AT deltab de>
*
* This iMON LCD plugin is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
diff --git a/bitmap.h b/bitmap.h
index f782f31..ed73d43 100644
--- a/bitmap.h
+++ b/bitmap.h
@@ -1,7 +1,7 @@
/*
* iMON LCD plugin for VDR (C++)
*
- * (C) 2009 Andreas Brachold <vdr07 AT deltab de>
+ * (C) 2009-2012 Andreas Brachold <vdr07 AT deltab de>
*
* This iMON LCD plugin is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
diff --git a/ffont.c b/ffont.c
index b2a0003..175ed58 100644
--- a/ffont.c
+++ b/ffont.c
@@ -1,7 +1,7 @@
/*
* iMON LCD plugin for VDR (C++)
*
- * (C) 2009 Andreas Brachold <vdr07 AT deltab de>
+ * (C) 2009-2012 Andreas Brachold <vdr07 AT deltab de>
* Glyph handling based on <vdr/font.c>
*
* This iMON LCD plugin is free software: you can redistribute it and/or
diff --git a/ffont.h b/ffont.h
index 2681650..614e6b7 100644
--- a/ffont.h
+++ b/ffont.h
@@ -1,7 +1,7 @@
/*
* iMON LCD plugin for VDR (C++)
*
- * (C) 2009 Andreas Brachold <vdr07 AT deltab de>
+ * (C) 2009-2012 Andreas Brachold <vdr07 AT deltab de>
* Glyph handling based on <vdr/font.c>
*
* This iMON LCD plugin is free software: you can redistribute it and/or
diff --git a/imon.c b/imon.c
index 789a76e..42b8a0c 100644
--- a/imon.c
+++ b/imon.c
@@ -1,7 +1,7 @@
/*
* iMON LCD plugin for VDR (C++)
*
- * (C) 2009 Andreas Brachold <vdr07 AT deltab de>
+ * (C) 2009-2012 Andreas Brachold <vdr07 AT deltab de>
* Based on lcdproc Driver for SoundGraph iMON OEM LCD Modules
* Copyright (c) 2004, Venky Raju <dev (at) venky (dot) ws>
* 2007, Dean Harding <dean (at) codeka dotcom>
diff --git a/imon.h b/imon.h
index 0f588f7..8fbe3c8 100644
--- a/imon.h
+++ b/imon.h
@@ -1,7 +1,7 @@
/*
* iMON LCD plugin for VDR (C++)
*
- * (C) 2009-2010 Andreas Brachold <vdr07 AT deltab de>
+ * (C) 2009-2012 Andreas Brachold <vdr07 AT deltab de>
*
* This iMON LCD plugin is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
diff --git a/imonlcd.c b/imonlcd.c
index f17686e..c1064e6 100644
--- a/imonlcd.c
+++ b/imonlcd.c
@@ -1,7 +1,7 @@
/*
* iMON LCD plugin for VDR (C++)
*
- * (C) 2009-2010 Andreas Brachold <vdr07 AT deltab de>
+ * (C) 2009-2012 Andreas Brachold <vdr07 AT deltab de>
*
* This iMON LCD plugin is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
@@ -20,7 +20,7 @@
#include "status.h"
#include "setup.h"
-static const char *VERSION = "0.0.5";
+static const char *VERSION = "1.0.0";
static const char *DEFAULT_LCDDEVICE = "/dev/lcd0";
diff --git a/po/de_DE.po b/po/de_DE.po
index 8a692f4..f7e44e6 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -2,10 +2,10 @@
# Copyright (C) Andreas Brachold <vdr07 AT deltab de>
# This file is distributed under the same license as the PACKAGE package.
#
-# Andreas Brachold <vdr07 AT deltab de> 2009, 2010.
+# Andreas Brachold <vdr07 AT deltab de> 2009, 2012.
msgid ""
msgstr ""
-"Project-Id-Version: vdr-imonlcd-plugin 0.0.3\n"
+"Project-Id-Version: vdr-imonlcd-plugin 1.0.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2010-04-18 18:21+0200\n"
diff --git a/po/it_IT.po b/po/it_IT.po
index 20f55c4..dfdd0b5 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -5,7 +5,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: vdr-imonlcd-plugin 0.0.1\n"
+"Project-Id-Version: vdr-imonlcd-plugin 1.0.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2010-11-19 19:23+0100\n"
"PO-Revision-Date: 2010-08-09 20:18+0100\n"
diff --git a/setup.c b/setup.c
index b629457..4168332 100644
--- a/setup.c
+++ b/setup.c
@@ -1,7 +1,7 @@
/*
* iMON LCD plugin for VDR (C++)
*
- * (C) 2009 Andreas Brachold <vdr07 AT deltab de>
+ * (C) 2009-2012 Andreas Brachold <vdr07 AT deltab de>
*
* This iMON LCD plugin is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
diff --git a/setup.h b/setup.h
index da7b5ba..36e4ea9 100644
--- a/setup.h
+++ b/setup.h
@@ -1,7 +1,7 @@
/*
* iMON LCD plugin for VDR (C++)
*
- * (C) 2009 Andreas Brachold <vdr07 AT deltab de>
+ * (C) 2009-2012 Andreas Brachold <vdr07 AT deltab de>
*
* This iMON LCD plugin is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
diff --git a/status.c b/status.c
index 9f6c41c..612e8c4 100644
--- a/status.c
+++ b/status.c
@@ -1,7 +1,7 @@
/*
* iMON LCD plugin for VDR (C++)
*
- * (C) 2009 Andreas Brachold <vdr07 AT deltab de>
+ * (C) 2009-2012 Andreas Brachold <vdr07 AT deltab de>
*
* This iMON LCD plugin is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
diff --git a/status.h b/status.h
index b8e0d4e..8aa7dae 100644
--- a/status.h
+++ b/status.h
@@ -1,7 +1,7 @@
/*
* iMON LCD plugin for VDR (C++)
*
- * (C) 2009 Andreas Brachold <vdr07 AT deltab de>
+ * (C) 2009-2012 Andreas Brachold <vdr07 AT deltab de>
*
* This iMON LCD plugin is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
diff --git a/watch.c b/watch.c
index 4e96c85..68c40aa 100644
--- a/watch.c
+++ b/watch.c
@@ -1,7 +1,7 @@
/*
* iMON LCD plugin for VDR (C++)
*
- * (C) 2009-2010 Andreas Brachold <vdr07 AT deltab de>
+ * (C) 2009-2012 Andreas Brachold <vdr07 AT deltab de>
*
* This iMON LCD plugin is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
diff --git a/watch.h b/watch.h
index 2b1f61b..22bce2c 100644
--- a/watch.h
+++ b/watch.h
@@ -1,7 +1,7 @@
/*
* iMON LCD plugin for VDR (C++)
*
- * (C) 2009 Andreas Brachold <vdr07 AT deltab de>
+ * (C) 2009-2012 Andreas Brachold <vdr07 AT deltab de>
*
* This iMON LCD plugin is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published