r910 - in vdr/vdr/trunk/debian: . patches
Tobias Grimm
tiber-guest at costa.debian.org
Sun Aug 14 12:32:23 UTC 2005
Author: tiber-guest
Date: 2005-08-14 12:32:22 +0000 (Sun, 14 Aug 2005)
New Revision: 910
Added:
vdr/vdr/trunk/debian/patches/12_osdbase-maxitems.dpatch
Modified:
vdr/vdr/trunk/debian/changelog
vdr/vdr/trunk/debian/patches/00list
Log:
vdr: Added osdbase-maxitems patch, which fixes a problem with the Enigma skin
Modified: vdr/vdr/trunk/debian/changelog
===================================================================
--- vdr/vdr/trunk/debian/changelog 2005-08-12 17:20:59 UTC (rev 909)
+++ vdr/vdr/trunk/debian/changelog 2005-08-14 12:32:22 UTC (rev 910)
@@ -1,3 +1,10 @@
+vdr (1.3.28-2) unstable; urgency=low
+
+ * Tobias Grimm <tg at e-tobi.net>
+ - Added osdbase-maxitems patch, which fixes a problem with the Enigma skin
+
+ -- Debian VDR Team <pkg-vdr-dvb-devel at lists.alioth.debian.org> Sun, 14 Aug 2005 14:33:39 +0200
+
vdr (1.3.28-1) unstable; urgency=low
* Thomas Schmidt <tschmidt at debian.org>
Modified: vdr/vdr/trunk/debian/patches/00list
===================================================================
--- vdr/vdr/trunk/debian/patches/00list 2005-08-12 17:20:59 UTC (rev 909)
+++ vdr/vdr/trunk/debian/patches/00list 2005-08-14 12:32:22 UTC (rev 910)
@@ -8,6 +8,7 @@
08_security_CAN-2005-0071
09_sort_options
10_dd-record-option
+12_osdbase-maxitems
14_update-resume
15_dvbplayer
17_replay
Added: vdr/vdr/trunk/debian/patches/12_osdbase-maxitems.dpatch
===================================================================
--- vdr/vdr/trunk/debian/patches/12_osdbase-maxitems.dpatch 2005-08-12 17:20:59 UTC (rev 909)
+++ vdr/vdr/trunk/debian/patches/12_osdbase-maxitems.dpatch 2005-08-14 12:32:22 UTC (rev 910)
@@ -0,0 +1,46 @@
+#!/bin/sh /usr/share/dpatch/dpatch-run
+
+## 12_osdbase-maxitems.dpatch by Andreas Brugger <brougs78 at gmx.net>
+##
+## downloaded from http://vdrportal.de/board/thread.php?postid=343665#post343665
+## original filename: vdr-1.3.28-osdbase-maxitems.diff
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: Fixes problems with text2skin skin enigma.
+
+ at DPATCH@
+diff -Nru vdr_plain/osdbase.c vdr_patched/osdbase.c
+--- vdr_plain/osdbase.c 2005-06-18 12:30:51.000000000 +0200
++++ vdr_patched/osdbase.c 2005-08-07 20:26:55.000000000 +0200
+@@ -261,6 +261,7 @@
+
+ void cOsdMenu::CursorUp(void)
+ {
++ displayMenuItems = displayMenu->MaxItems();
+ int tmpCurrent = current;
+ int lastOnScreen = first + displayMenuItems - 1;
+ int last = Count() - 1;
+@@ -291,6 +292,7 @@
+
+ void cOsdMenu::CursorDown(void)
+ {
++ displayMenuItems = displayMenu->MaxItems();
+ int tmpCurrent = current;
+ int lastOnScreen = first + displayMenuItems - 1;
+ int last = Count() - 1;
+@@ -323,6 +325,7 @@
+
+ void cOsdMenu::PageUp(void)
+ {
++ displayMenuItems = displayMenu->MaxItems();
+ int oldCurrent = current;
+ int oldFirst = first;
+ current -= displayMenuItems;
+@@ -357,6 +360,7 @@
+
+ void cOsdMenu::PageDown(void)
+ {
++ displayMenuItems = displayMenu->MaxItems();
+ int oldCurrent = current;
+ int oldFirst = first;
+ current += displayMenuItems;
More information about the pkg-vdr-dvb-changes
mailing list