summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--LIESMICH9
-rw-r--r--Makefile4
-rw-r--r--README11
-rw-r--r--commands.c2
-rw-r--r--commands.h2
-rw-r--r--control-image.c21
-rw-r--r--control-image.h2
-rw-r--r--data-image.c2
-rw-r--r--data-image.h2
-rw-r--r--data.c2
-rw-r--r--data.h2
-rw-r--r--exif.c8
-rw-r--r--exif.h2
-rw-r--r--image.c2
-rw-r--r--image.h2
-rw-r--r--libimage/Makefile2
-rw-r--r--libimage/pnm.c2
-rw-r--r--libimage/pnm.h2
-rw-r--r--libimage/xpm.c2
-rw-r--r--libimage/xpm.h2
-rw-r--r--liboutput/Makefile2
-rw-r--r--liboutput/encode.c2
-rw-r--r--liboutput/encode.h2
-rw-r--r--liboutput/stillimage-player.c2
-rw-r--r--liboutput/stillimage-player.h2
-rw-r--r--liboutput/stillimage.c2
-rw-r--r--liboutput/stillimage.h2
-rw-r--r--list.c2
-rw-r--r--list.h2
-rw-r--r--menu-commands.c8
-rw-r--r--menu-commands.h2
-rw-r--r--menu-image.c2
-rw-r--r--menu-image.h2
-rw-r--r--menu.c2
-rw-r--r--menu.h2
-rw-r--r--player-image.c2
-rw-r--r--player-image.h2
-rw-r--r--po/ca_ES.po4
-rw-r--r--po/cs_CZ.po4
-rw-r--r--po/da_DK.po4
-rw-r--r--po/de_DE.po4
-rw-r--r--po/el_GR.po4
-rw-r--r--po/es_ES.po4
-rw-r--r--po/et_EE.po4
-rw-r--r--po/fi_FI.po4
-rw-r--r--po/fr_FR.po4
-rw-r--r--po/hr_HR.po4
-rw-r--r--po/hu_HU.po4
-rw-r--r--po/it_IT.po4
-rw-r--r--po/nl_NL.po4
-rw-r--r--po/nn_NO.po4
-rw-r--r--po/pl_PL.po4
-rw-r--r--po/pt_PT.po4
-rw-r--r--po/ro_RO.po4
-rw-r--r--po/ru_RU.po4
-rw-r--r--po/sl_SI.po4
-rw-r--r--po/sv_SE.po4
-rw-r--r--po/tr_TR.po4
-rwxr-xr-xscripts/imageplugin.sh2
-rwxr-xr-xscripts/magickplugin.sh2
-rw-r--r--setup-image.c2
-rw-r--r--setup-image.h2
63 files changed, 102 insertions, 114 deletions
diff --git a/.gitignore b/.gitignore
index a64d3e5..4c2e775 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,3 +4,4 @@
*.mo
*.pot
*.tgz
+*.a \ No newline at end of file
diff --git a/LIESMICH b/LIESMICH
index e53bb56..59cd4f2 100644
--- a/LIESMICH
+++ b/LIESMICH
@@ -3,14 +3,11 @@ This is a "plugin" for the Video Disk Recorder (VDR).
Originaly written by: Kai Tobias Burwieck <kai-at-burwieck.net>
"Interpohl" <vdr-portal.de>
Onno Kreuzinger <o.kreuzinger-at-kreuzinger.biz>
- Andreas Brachold <anbr at users.berlios.de>
+ Andreas Brachold <vdr07 at deltab.de>
-Former project's homepage: http://www.burwieck.net/vdr (dead?)
- http://vdr-image.kreuzinger.biz>
+Maintainer: Andreas Brachold <vdr07 at deltab.de>
-Maintainer: Andreas Brachold <anbr at users.berlios.de>
-
-Project homepage: http://vdr-image.berlios.de/
+Project homepage: http://projects.vdr-developer.org/projects/plg-image
Einige Dateien stammen vom mp3/MPlayer Plugin, der danke geht an Stefan Hülswitt
diff --git a/Makefile b/Makefile
index c8b2e46..f3ab62a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for Image plugin to VDR
#
-# (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+# (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
#
# This code is distributed under the terms and conditions of the
# GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
@@ -155,7 +155,7 @@ I18Npot = $(PODIR)/$(PLUGIN).pot
msgfmt -c -o $@ $<
$(I18Npot): $(wildcard *.c)
- xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='Andreas Brachold <anbr at user.berlios.de>' -o $@ $^
+ xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='Andreas Brachold <vdr07 at deltab.de>' -o $@ $^
%.po: $(I18Npot)
msgmerge -U --no-wrap --no-location --backup=none -q $@ $<
diff --git a/README b/README
index bab0249..a57ea1a 100644
--- a/README
+++ b/README
@@ -3,16 +3,11 @@ This is a "plugin" for the Video Disk Recorder (VDR).
Originaly written by: Kai Tobias Burwieck <kai-at-burwieck.net>
"Interpohl" <interpohl-at-vdr-portal.de>
Onno Kreuzinger <o.kreuzinger-at-kreuzinger.biz>
- Andreas Brachold <anbr at users.berlios.de>
+ Andreas Brachold <vdr07 at deltab.de>
-Maintainer: Andreas Brachold <anbr at users.berlios.de>
-
-Project homepage: http://vdr-image.berlios.de/
-
-
-Former project's homepage: http://www.burwieck.net/vdr (dead?)
- http://vdr-image.kreuzinger.biz>
+Maintainer: Andreas Brachold <vdr07 at deltab.de>
+Project homepage: http://projects.vdr-developer.org/projects/plg-image
Some files are from the mp3/MPlayer Plugin. Thanks to Stefan Hülswitt
diff --git a/commands.c b/commands.c
index dcb652b..e35b8ee 100644
--- a/commands.c
+++ b/commands.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (c) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (c) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
diff --git a/commands.h b/commands.h
index 8d6e8ab..95403de 100644
--- a/commands.h
+++ b/commands.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (c) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (c) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
diff --git a/control-image.c b/control-image.c
index 2285af6..8983a4d 100644
--- a/control-image.c
+++ b/control-image.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2011 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* based on (C) 2003 Kai Tobias Burwieck <kai -at- burwieck.net>
*
* This code is distributed under the terms and conditions of the
@@ -337,9 +337,18 @@ eOSState cImageControl::ProcessKey(eKeys nKey)
@return eOSState
@param eKeys Key - the processed Keycode
*/
-eOSState cImageControl::ProcessKeyPlayMode(eKeys Key)
+eOSState cImageControl::ProcessKeyPlayMode(eKeys nKey)
{
- switch (Key)
+
+ switch (nKey & ~k_Repeat) {
+ // Change time how long image is see
+ case k4|k_Repeat:
+ case k4: DecSlideTime(); return osContinue;
+ case k6|k_Repeat:
+ case k6: IncSlideTime(); return osContinue;
+ }
+
+ switch (nKey)
{
// Mode select
case kBack: return ProcessKeyStopped();
@@ -351,12 +360,6 @@ eOSState cImageControl::ProcessKeyPlayMode(eKeys Key)
case k1: LFlipImage(); break;
case k3: RFlipImage(); break;
- // Change time how long image is see
- case k4|k_Repeat:
- case k4: DecSlideTime(); break;
- case k6|k_Repeat:
- case k6: IncSlideTime(); break;
-
// Navigate between images
case kLeft: PrevImage(1); break;
case kRight:NextImage(1); break;
diff --git a/control-image.h b/control-image.h
index d9db7ec..f234927 100644
--- a/control-image.h
+++ b/control-image.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (c) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (c) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* based on (C) 2003 Kai Tobias Burwieck <kai -at- burwieck.net>
*
* This code is distributed under the terms and conditions of the
diff --git a/data-image.c b/data-image.c
index 0717293..a23815a 100644
--- a/data-image.c
+++ b/data-image.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2011 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* based on (C) 2003 Kai Tobias Burwieck <kai -at- burwieck.net>
*
* This code is distributed under the terms and conditions of the
diff --git a/data-image.h b/data-image.h
index 29badae..3878fd1 100644
--- a/data-image.h
+++ b/data-image.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2011 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* (C) 2003 Kai Tobias Burwieck <kai@burwieck.net>
*
* This code is distributed under the terms and conditions of the
diff --git a/data.c b/data.c
index aedc3e3..c120567 100644
--- a/data.c
+++ b/data.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* (C) 2003 Kai Tobias Burwieck <kai at burwieck.net>
*
* based on MP3/MPlayer plugin to VDR (C++)
diff --git a/data.h b/data.h
index 7528c88..7f731ac 100644
--- a/data.h
+++ b/data.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* (C) 2003 Kai Tobias Burwieck <kai@burwieck.net>
* based on MP3/MPlayer plugin to VDR (C++)
* (C) 2001,2002 Stefan Huelswitt <huels@iname.com>
diff --git a/exif.c b/exif.c
index ed53973..037a04a 100644
--- a/exif.c
+++ b/exif.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2006-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2006-2011 Andreas Brachold <vdr07 at deltab.de>
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
@@ -103,14 +103,10 @@ cImageMenuExif::cImageMenuExif(const char *szFileName)
eOSState cImageMenuExif::ProcessKey(eKeys nKey)
{
- switch (nKey) {
- case kUp|k_Repeat:
+ switch (nKey & ~k_Repeat) {
case kUp:
- case kDown|k_Repeat:
case kDown:
- case kLeft|k_Repeat:
case kLeft:
- case kRight|k_Repeat:
case kRight:
DisplayMenu()->Scroll(NORMALKEY(nKey) == kUp || NORMALKEY(nKey) == kLeft, NORMALKEY(nKey) == kLeft || NORMALKEY(nKey) == kRight);
return osContinue;
diff --git a/exif.h b/exif.h
index 8e19a9b..da10939 100644
--- a/exif.h
+++ b/exif.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2006-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2006-2011 Andreas Brachold <vdr07 at deltab.de>
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
diff --git a/image.c b/image.c
index cce8c0e..4c49660 100644
--- a/image.c
+++ b/image.c
@@ -5,7 +5,7 @@
* (C) 2004 "Interpohl" <interpohl at vdr-portal.de>
* (C) 2004 O. Kreuzinger <Onno at Kreuzinger.biz>
* (C) 2004 A. Holzhammer for the massive script updates
- * (C) 2004-2011 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
*
* based on mp3/mplayer plugin by Stefan Hülswitt <huels at iname.com>
*
diff --git a/image.h b/image.h
index 8951035..00ea989 100644
--- a/image.h
+++ b/image.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
diff --git a/libimage/Makefile b/libimage/Makefile
index d6e9a35..ec3110e 100644
--- a/libimage/Makefile
+++ b/libimage/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for Image plugin to VDR
#
-# (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+# (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
#
# This code is distributed under the terms and conditions of the
# GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
diff --git a/libimage/pnm.c b/libimage/pnm.c
index ae1feee..18cc15c 100644
--- a/libimage/pnm.c
+++ b/libimage/pnm.c
@@ -1,6 +1,6 @@
/***************************************************************************
* pnm.c
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* based on works from Fabian E. Bustamante <fabianb-at-cs.umd.edu>
* Created: Thu Aug 7 2004
*
diff --git a/libimage/pnm.h b/libimage/pnm.h
index 9020abc..0f58c75 100644
--- a/libimage/pnm.h
+++ b/libimage/pnm.h
@@ -1,6 +1,6 @@
/***************************************************************************
* pnm.h
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* based on works from Fabian E. Bustamante <fabianb-at-cs.umd.edu>
* Created: Thu Aug 7 2004
*
diff --git a/libimage/xpm.c b/libimage/xpm.c
index 9de80f0..ec60795 100644
--- a/libimage/xpm.c
+++ b/libimage/xpm.c
@@ -1,7 +1,7 @@
/***************************************************************************
* xpm.c
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* Created: Thu Aug 11 2004
*
* This code is distributed under the terms and conditions of the
diff --git a/libimage/xpm.h b/libimage/xpm.h
index 18b6f45..dddf832 100644
--- a/libimage/xpm.h
+++ b/libimage/xpm.h
@@ -1,7 +1,7 @@
/***************************************************************************
* xpm.h
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* Created: Thu Aug 11 2004
*
* This code is distributed under the terms and conditions of the
diff --git a/liboutput/Makefile b/liboutput/Makefile
index 27c2871..96eb09d 100644
--- a/liboutput/Makefile
+++ b/liboutput/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for Image plugin to VDR
#
-# (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+# (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
#
# This code is distributed under the terms and conditions of the
# GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
diff --git a/liboutput/encode.c b/liboutput/encode.c
index 4f9b508..6098ab0 100644
--- a/liboutput/encode.c
+++ b/liboutput/encode.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* Created: Thu Aug 5 2004
*
* This code is distributed under the terms and conditions of the
diff --git a/liboutput/encode.h b/liboutput/encode.h
index 9e944c9..db7f122 100644
--- a/liboutput/encode.h
+++ b/liboutput/encode.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* Created: Thu Aug 5 2004
*
* This code is distributed under the terms and conditions of the
diff --git a/liboutput/stillimage-player.c b/liboutput/stillimage-player.c
index 7b3a439..8c114ee 100644
--- a/liboutput/stillimage-player.c
+++ b/liboutput/stillimage-player.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* Created: Thu Aug 5 2004
*
* This code is distributed under the terms and conditions of the
diff --git a/liboutput/stillimage-player.h b/liboutput/stillimage-player.h
index 70df783..bbc4ef8 100644
--- a/liboutput/stillimage-player.h
+++ b/liboutput/stillimage-player.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* Created: Thu Aug 5 2004
*
* This code is distributed under the terms and conditions of the
diff --git a/liboutput/stillimage.c b/liboutput/stillimage.c
index 703b049..56f3300 100644
--- a/liboutput/stillimage.c
+++ b/liboutput/stillimage.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* Created: Thu Aug 5 2004
*
* parts of the code (c) Peter Seyringer
diff --git a/liboutput/stillimage.h b/liboutput/stillimage.h
index 6818f1d..8d86ff4 100644
--- a/liboutput/stillimage.h
+++ b/liboutput/stillimage.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* Created: Thu Aug 5 2004
*
* This code is distributed under the terms and conditions of the
diff --git a/list.c b/list.c
index e96370d..346f58d 100644
--- a/list.c
+++ b/list.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2011 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
diff --git a/list.h b/list.h
index ddcd678..422b939 100644
--- a/list.h
+++ b/list.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
diff --git a/menu-commands.c b/menu-commands.c
index 97abe01..66b58f9 100644
--- a/menu-commands.c
+++ b/menu-commands.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
@@ -111,14 +111,10 @@ cImageMenuResult::cImageMenuResult(const char *szTitle, const char *szText)
eOSState cImageMenuResult::ProcessKey(eKeys nKey)
{
- switch (nKey) {
- case kUp|k_Repeat:
+ switch (nKey & ~k_Repeat) {
case kUp:
- case kDown|k_Repeat:
case kDown:
- case kLeft|k_Repeat:
case kLeft:
- case kRight|k_Repeat:
case kRight:
DisplayMenu()->Scroll(NORMALKEY(nKey) == kUp || NORMALKEY(nKey) == kLeft, NORMALKEY(nKey) == kLeft || NORMALKEY(nKey) == kRight);
return osContinue;
diff --git a/menu-commands.h b/menu-commands.h
index 1db04ca..6228dd0 100644
--- a/menu-commands.h
+++ b/menu-commands.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
diff --git a/menu-image.c b/menu-image.c
index c42bfc3..bdbf006 100644
--- a/menu-image.c
+++ b/menu-image.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* based on (C) 2003 Kai Tobias Burwieck <kai-at-burwieck.net>
*
* This code is distributed under the terms and conditions of the
diff --git a/menu-image.h b/menu-image.h
index 52c6eda..693af24 100644
--- a/menu-image.h
+++ b/menu-image.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* (C) 2003 Kai Tobias Burwieck <kai@burwieck.net>
*
* This code is distributed under the terms and conditions of the
diff --git a/menu.c b/menu.c
index daf3b87..191416f 100644
--- a/menu.c
+++ b/menu.c
@@ -1,7 +1,7 @@
/*
* image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* (C) 2004 "Interpohl" <interpohl-at-vdr-portal.de>
* (C) 2004 O.Kreuzinger <Onno-at-Kreuzinger.biz>
* (C) 2003 Kai Tobias Burwieck <kai-at-burwieck.net>
diff --git a/menu.h b/menu.h
index 36f0c88..95ac08c 100644
--- a/menu.h
+++ b/menu.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* (C) 2003 Kai Tobias Burwieck <kai@burwieck.net>
*
* based on MP3/MPlayer plugin to VDR (C++)
diff --git a/player-image.c b/player-image.c
index 0718d5f..b7b4ff4 100644
--- a/player-image.c
+++ b/player-image.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2011 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* based on (C) 2003 Kai Tobias Burwieck <kai-at-burwieck.net>
*
* This code is distributed under the terms and conditions of the
diff --git a/player-image.h b/player-image.h
index ab46ee1..c58da6a 100644
--- a/player-image.h
+++ b/player-image.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* 2003 Kai Tobias Burwieck <kai-at-burwieck.net>
*
* This code is distributed under the terms and conditions of the
diff --git a/po/ca_ES.po b/po/ca_ES.po
index 46dbf01..2a28bf8 100644
--- a/po/ca_ES.po
+++ b/po/ca_ES.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index 11d2ffd..b645bd5 100644
--- a/po/cs_CZ.po
+++ b/po/cs_CZ.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/da_DK.po b/po/da_DK.po
index f371522..01567f8 100644
--- a/po/da_DK.po
+++ b/po/da_DK.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/de_DE.po b/po/de_DE.po
index 85df513..24b2539 100644
--- a/po/de_DE.po
+++ b/po/de_DE.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: Andreas Brachold <anbr at users.berlios.de>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/el_GR.po b/po/el_GR.po
index 7558aad..d883678 100644
--- a/po/el_GR.po
+++ b/po/el_GR.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/es_ES.po b/po/es_ES.po
index 939606f..b2cea82 100644
--- a/po/es_ES.po
+++ b/po/es_ES.po
@@ -23,8 +23,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: Jesús Bravo Álvarez <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/et_EE.po b/po/et_EE.po
index a64a059..0756e35 100644
--- a/po/et_EE.po
+++ b/po/et_EE.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/fi_FI.po b/po/fi_FI.po
index 4c3fc45..6c93666 100644
--- a/po/fi_FI.po
+++ b/po/fi_FI.po
@@ -23,8 +23,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: Rolf Ahrenberg <rahrenbe at cc.hut.fi>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/fr_FR.po b/po/fr_FR.po
index 01f1be8..e9de55a 100644
--- a/po/fr_FR.po
+++ b/po/fr_FR.po
@@ -23,8 +23,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: NIVAL Michaël <mnival at club-internet.fr>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/hr_HR.po b/po/hr_HR.po
index 524b1e2..0b879cd 100644
--- a/po/hr_HR.po
+++ b/po/hr_HR.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/hu_HU.po b/po/hu_HU.po
index e3afd1d..73d03cb 100644
--- a/po/hu_HU.po
+++ b/po/hu_HU.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/it_IT.po b/po/it_IT.po
index 4dc8bc0..89a437c 100644
--- a/po/it_IT.po
+++ b/po/it_IT.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2008-08-13 22:17+0100\n"
"Last-Translator: Diego Pierotto <vdr-italian@tiscali.it>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/nl_NL.po b/po/nl_NL.po
index 1a29aaa..3168a13 100644
--- a/po/nl_NL.po
+++ b/po/nl_NL.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/nn_NO.po b/po/nn_NO.po
index f7c2c24..281b9e7 100644
--- a/po/nn_NO.po
+++ b/po/nn_NO.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/pl_PL.po b/po/pl_PL.po
index a8dc825..b556739 100644
--- a/po/pl_PL.po
+++ b/po/pl_PL.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/pt_PT.po b/po/pt_PT.po
index a095690..95b32ac 100644
--- a/po/pt_PT.po
+++ b/po/pt_PT.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/ro_RO.po b/po/ro_RO.po
index 9a573ca..1af226b 100644
--- a/po/ro_RO.po
+++ b/po/ro_RO.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/ru_RU.po b/po/ru_RU.po
index e3bb0a6..6337913 100644
--- a/po/ru_RU.po
+++ b/po/ru_RU.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/sl_SI.po b/po/sl_SI.po
index a86ecc3..a697c26 100644
--- a/po/sl_SI.po
+++ b/po/sl_SI.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/sv_SE.po b/po/sv_SE.po
index 8963d9e..c54e4c5 100644
--- a/po/sv_SE.po
+++ b/po/sv_SE.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/po/tr_TR.po b/po/tr_TR.po
index 0bc307c..af12093 100644
--- a/po/tr_TR.po
+++ b/po/tr_TR.po
@@ -22,8 +22,8 @@
msgid ""
msgstr ""
"Project-Id-Version: vdr-image 0.3.0\n"
-"Report-Msgid-Bugs-To: Andreas Brachold <anbr at user.berlios.de>\n"
-"POT-Creation-Date: 2010-11-19 19:23+0100\n"
+"Report-Msgid-Bugs-To: Andreas Brachold <vdr07 at deltab.de>\n"
+"POT-Creation-Date: 2011-10-02 21:56+0200\n"
"PO-Revision-Date: 2007-08-18 08:13+0200\n"
"Last-Translator: Oktay Yolgeçen <oktay_73 at yahoo.de>\n"
"Language-Team: <vdr at linuxtv.org>\n"
diff --git a/scripts/imageplugin.sh b/scripts/imageplugin.sh
index 0ff0c72..85fc7f6 100755
--- a/scripts/imageplugin.sh
+++ b/scripts/imageplugin.sh
@@ -8,7 +8,7 @@
# History:
# 2005-07-26 add commando for rotate 180
# 2005-07-18 wrong lookup for pnmscale and really are pnmscalefixed used
-# 2004-08-12 Initalrelease, Andreas Brachold <anbr at users.berlios.de>
+# 2004-08-12 Inital release
# base on prior work for convert.sh
# by Onno Kreuzinger <o.kreuzinger-at-kreuzinger.biz>
# Andreas Holzhammer and <Interpohl-at-vdr-portal.de>
diff --git a/scripts/magickplugin.sh b/scripts/magickplugin.sh
index 8dacee6..37644c4 100755
--- a/scripts/magickplugin.sh
+++ b/scripts/magickplugin.sh
@@ -9,7 +9,7 @@
# 2005-08-19 better resolution retrieval (provided by kc_captain-at-vdr-portal de)
# 2005-07-26 add commando for rotate 180
# 2005-07-18 Reimplement with imagemagick
-# 2004-08-12 Initalrelease, Andreas Brachold <anbr at users.berlios.de>
+# 2004-08-12 Inital release, Andreas Brachold
# base on prior work for convert.sh
# by Onno Kreuzinger <o.kreuzinger-at-kreuzinger.biz>
# Andreas Holzhammer and <Interpohl-at-vdr-portal.de>
diff --git a/setup-image.c b/setup-image.c
index c9bdc75..92c9317 100644
--- a/setup-image.c
+++ b/setup-image.c
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* based on (C) 2003 Kai Tobias Burwieck <kai-at-burwieck.net>
*
* based on MP3/MPlayer plugin to VDR (C++)
diff --git a/setup-image.h b/setup-image.h
index ebea2a7..a7d0f0d 100644
--- a/setup-image.h
+++ b/setup-image.h
@@ -1,7 +1,7 @@
/*
* Image plugin to VDR (C++)
*
- * (C) 2004-2008 Andreas Brachold <anbr at users.berlios.de>
+ * (C) 2004-2011 Andreas Brachold <vdr07 at deltab.de>
* based on (C) 2003 Kai Tobias Burwieck <kai-at-burwieck.net>
*
* This code is distributed under the terms and conditions of the