diff --git a/docs/abbreviations.txt b/docs/abbreviations.txt index fd02a6b1..a1ca4f50 100644 --- a/docs/abbreviations.txt +++ b/docs/abbreviations.txt @@ -5,8 +5,11 @@ AF=Flop Bet/Raise percentage AT=River Bet/Raise percentage AR=Turn Bet/Raise percentage F3-7=3rd-7th street Fold percentage +FB=like FSB but for big blinds only FF=Flop Fold percentage FR=River Fold percentage +FSB=Fold to steal - combined of small and big blind (FSB means Fold Small Big). E.g. if a player faced a steal attempt in the SB 7 times and +FS=like FSB but for small blinds only. FT=Turn Fold percentage HD=Hands PF3B4B=Pre Flop 3Bet or 4Bet @@ -14,6 +17,7 @@ PFR=Pre Flop Raise Postf A=Postflop (ie. flop+turn+river) Aggression% Postf F=Postflop Fold % SD/F=Showdown/Flop=WtSD=How often player went to showdown when he saw the flop +ST=Steal chance (nobody had entered the pot before the player in question, and the player is in cutoff or button position) W$wsF=Won $ when he saw flop W$@SD=Won $ at showdown VPI3=Voluntary Put In on 3rd Street (ie. call+complete+raise) diff --git a/docs/tabledesign.html b/docs/tabledesign.html index 47b7a72e..45d09d5a 100644 --- a/docs/tabledesign.html +++ b/docs/tabledesign.html @@ -155,8 +155,8 @@ The program itself is licensed under AGPLv3, see agpl-3.0.txt

studhi=7 Card Stud High only
studhilo=7 Card Stud 8 or better
fivedraw=Five Card Draw
- 27sgldraw=2-7 Single Draw
- 27tridraw=2-7 Tripple Draw
+ 27_1draw=2-7 Single Draw
+ 27_3draw=2-7 Tripple Draw
badugi=Badugi

diff --git a/pyfpdb/fpdb.py b/pyfpdb/fpdb.py index 56a24c5b..da58e6ef 100755 --- a/pyfpdb/fpdb.py +++ b/pyfpdb/fpdb.py @@ -421,7 +421,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: alpha6+, p118 or higher") + self.window.set_title("Free Poker DB - version: alpha6+, p124 or higher") self.window.set_border_width(1) self.window.set_size_request(1020,400) self.window.set_resizable(True) @@ -445,7 +445,7 @@ This program is licensed under the AGPL3, see docs"""+os.sep+"agpl-3.0.txt") ("/Viewers/_Player Stats (tabulated view) (todo)", None, self.not_implemented, 0, None ), ("/Viewers/Starting _Hands (todo)", None, self.not_implemented, 0, None ), ("/Viewers/_Session Replayer (todo)", None, self.not_implemented, 0, None ), - ("/Viewers/Poker_table Viewer", "T", self.tab_table_viewer, 0, None ), + ("/Viewers/Poker_table Viewer (mostly obselete)", "T", self.tab_table_viewer, 0, None ), #( "/Viewers/Tourney Replayer ( "/_Database", None, None, 0, "" ), ( "/Database/Create or Delete _Database (todo)", None, self.dia_create_del_database, 0, None ),