From eeef0a079b183072798a51da0fa4a8e5f9a53d8c Mon Sep 17 00:00:00 2001 From: Worros Date: Fri, 17 Oct 2008 10:59:56 +0800 Subject: [PATCH 1/2] Fix from Ray - fix typo in producer function --- pyfpdb/HUD_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/HUD_main.py b/pyfpdb/HUD_main.py index 1d3fc299..0bfe7f40 100755 --- a/pyfpdb/HUD_main.py +++ b/pyfpdb/HUD_main.py @@ -106,7 +106,7 @@ def read_stdin(source, condition, db_name): def producer(): # This is the thread function while True: hand_no = sys.stdin.readline() # reads stdin - if new_hand_id == "": + if hand_no == "": destroy() dataQueue.put(hand_no) # and puts result on the queue From 7833c0c5cd01fd1ba0d34ec3149010fe225b5d55 Mon Sep 17 00:00:00 2001 From: steffen123 Date: Fri, 17 Oct 2008 05:59:50 +0100 Subject: [PATCH 2/2] p136 - title update - alpha7 --- ...{fpdb-1.0_alpha7_p136.ebuild => fpdb-1.0_alpha8_p137.ebuild} | 2 +- pyfpdb/fpdb.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename packaging/gentoo/{fpdb-1.0_alpha7_p136.ebuild => fpdb-1.0_alpha8_p137.ebuild} (97%) diff --git a/packaging/gentoo/fpdb-1.0_alpha7_p136.ebuild b/packaging/gentoo/fpdb-1.0_alpha8_p137.ebuild similarity index 97% rename from packaging/gentoo/fpdb-1.0_alpha7_p136.ebuild rename to packaging/gentoo/fpdb-1.0_alpha8_p137.ebuild index 58527c79..c55903f3 100644 --- a/packaging/gentoo/fpdb-1.0_alpha7_p136.ebuild +++ b/packaging/gentoo/fpdb-1.0_alpha8_p137.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2008 Gentoo Foundation # Gentoo had nothing to do with the production of this ebuild, but I'm pre-emptively transferring all copyrights (as far as legally possible under my local jurisdiction) to them. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/fpdb/fpdb-1.0_alpha7_p136.ebuild,v 1.0 2008/10/15 steffen@sycamoretest.info Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-util/fpdb/fpdb-1.0_alpha8_p137.ebuild,v 1.0 2008/10/17 steffen@sycamoretest.info Exp $ NEED_PYTHON=2.3 diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py index 789fcc30..2a27f72b 100755 --- a/pyfpdb/fpdb.py +++ b/pyfpdb/fpdb.py @@ -426,7 +426,7 @@ This program is licensed under the AGPL3, see docs"""+os.sep+"agpl-3.0.txt") self.window = gtk.Window(gtk.WINDOW_TOPLEVEL) self.window.connect("delete_event", self.delete_event) self.window.connect("destroy", self.destroy) - self.window.set_title("Free Poker DB - version: alpha7, p136") + self.window.set_title("Free Poker DB - version: alpha8, p137") self.window.set_border_width(1) self.window.set_size_request(1020,400) self.window.set_resizable(True)