From d294501c4ca41648595bdc5c5d0447a4a897c6f5 Mon Sep 17 00:00:00 2001 From: Eratosthenes Date: Tue, 9 Mar 2010 12:47:50 -0500 Subject: [PATCH 1/4] Make more exe files in py2exe_setup. --- pyfpdb/py2exe_setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyfpdb/py2exe_setup.py b/pyfpdb/py2exe_setup.py index 0db53a40..b89d7dfc 100644 --- a/pyfpdb/py2exe_setup.py +++ b/pyfpdb/py2exe_setup.py @@ -132,7 +132,12 @@ setup( console = [ {'script': 'fpdb.py', "icon_resources": [(1, "../gfx/fpdb_large_icon.ico")]}, {'script': 'HUD_main.py', }, - {'script': 'Configuration.py', } + {'script': 'Configuration.py', }, + {'script': 'Tables.py', }, + {'script': 'Stats.py', }, + {'script': 'Hello.py', }, + {'script': 'GuiBulkImport.py', }, + {'script': 'GuiAutoImport.py', } ], options = {'py2exe': { From 0e6aa16e418438320b4529a200714eb162cdc375 Mon Sep 17 00:00:00 2001 From: Eratosthenes Date: Wed, 21 Jul 2010 18:40:33 -0400 Subject: [PATCH 2/4] catch up a minor changecatch up a minor change.. --- pyfpdb/FulltiltToFpdb.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyfpdb/FulltiltToFpdb.py b/pyfpdb/FulltiltToFpdb.py index 10ecb8dd..d6a9057c 100755 --- a/pyfpdb/FulltiltToFpdb.py +++ b/pyfpdb/FulltiltToFpdb.py @@ -689,5 +689,3 @@ if __name__ == "__main__": e = Fulltilt(in_path = options.ipath, out_path = options.opath, follow = options.follow) - - From 4ef31a02e1c96b04886cd2a9d7f81f7eae58751c Mon Sep 17 00:00:00 2001 From: Eratosthenes Date: Wed, 21 Jul 2010 18:43:45 -0400 Subject: [PATCH 3/4] Another tiny change to get in sync. --- pyfpdb/fpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py index 768795ab..74e41e95 100755 --- a/pyfpdb/fpdb.py +++ b/pyfpdb/fpdb.py @@ -97,7 +97,7 @@ except: import GuiPrefs import GuiLogView -import GuiDatabase +#import GuiDatabase import GuiBulkImport import GuiPlayerStats import GuiPositionalStats From 8b1baa65931a26683e332b79bad9e136616119cb Mon Sep 17 00:00:00 2001 From: Eratosthenes Date: Wed, 4 Aug 2010 20:52:37 -0400 Subject: [PATCH 4/4] Don't break stud and draw when counting players at street. --- pyfpdb/DerivedStats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/DerivedStats.py b/pyfpdb/DerivedStats.py index 26e95394..7965f81d 100644 --- a/pyfpdb/DerivedStats.py +++ b/pyfpdb/DerivedStats.py @@ -292,7 +292,7 @@ class DerivedStats(): # hand.players includes people that are sitting out on some sites. # Those that posted an ante should have been deal cards. - p_in = set([x[0] for x in hand.actions['BLINDSANTES']] + [x[0] for x in hand.actions['PREFLOP']]) + p_in = set([x[0] for x in hand.actions[hand.allStreets[0]]] + [x[0] for x in hand.actions[hand.actionStreets[0]]]) for (i, street) in enumerate(hand.actionStreets): actions = hand.actions[street]