git33 - added fields for CB/2B/3B to table design, table creation and tv. importer fills it with placeholder data
renamed ebuild from v0.01 alpha to v1.0 alpha as I won't be using normal version numbers before 1.0
This commit is contained in:
@@ -3,8 +3,7 @@ Everything is subject to change.
|
||||
|
||||
alpha2
|
||||
======
|
||||
add steal reaction to tv
|
||||
CB, 2nd/3rd Barrel, fold to these
|
||||
CB, 2nd/3rd Barrel, fold to these -> actually calculate them
|
||||
printhand each and the 2/3 relevant printplayerflags respectively on ps-lhe-ring-successful-steal-by-cutoff.txt and ps-lhe-ring-call-3B-preflop-cb-no2b.txt
|
||||
auto-import
|
||||
seperate and improve instructions for update
|
||||
@@ -15,6 +14,10 @@ delete old mailing list and create fpdb-announce
|
||||
finish updating filelist
|
||||
return sng support
|
||||
update abbreviations.txt
|
||||
fix up bg colours in tv
|
||||
ebuild symlink doesnt work
|
||||
more automation in the ebuild, update install-in-gentoo.txt, set permissions in it
|
||||
gentoo ebuild: USE dedicated, USE postgresql, copy docs
|
||||
|
||||
alpha3
|
||||
======
|
||||
@@ -24,7 +27,7 @@ show database version error in GUI
|
||||
|
||||
before beta
|
||||
===========
|
||||
optionally combine FB/FS
|
||||
optionally combine FB/FS and CB/2B/3B
|
||||
separate all gui and all processing into files that are named accordingly
|
||||
ensure that there is only one db handle flying around and that its state is handled properly, ie. by the GUI. i think that might be why we have to reconnect the DB in tableviewer.
|
||||
figure out what slowed it down so much between git19 and git21 (8/9aug)
|
||||
@@ -81,7 +84,6 @@ ensure that refresh still takes no more than 10 seks on my P3M-800 (a quick run
|
||||
select range of stakes and sng/mtt values and types for tv
|
||||
change "for i" to more sensible var name instead of i
|
||||
recognise somewhere if a file is still active and if so keep it open and only read new hands rather than detecting dupes
|
||||
gentoo ebuild
|
||||
|
||||
can wait till 1.x
|
||||
=================
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
alpha2
|
||||
======
|
||||
Main new features:
|
||||
Now reads and displays steal attempts and reaction to them
|
||||
|
||||
alpha1
|
||||
======
|
||||
Hi everyone,
|
||||
I am proud to announce the first release of my new poker tracking software fpdb (freepokerdb, very imaginative I know ;) ). You may wonder why I bothered when now with HM and PT3 there are at least two excellent packages to choose from.
|
||||
|
||||
@@ -9,7 +15,7 @@ Four main reasons:
|
||||
You still need to run Windows or wine to run the actual poker client though.
|
||||
4. Fpdb won't irritate you with copy prevention measures.
|
||||
|
||||
To install it go to https://sourceforge.net/projects/showfiles.php?group_id=226872 and download the zip or tar.bz2, unpack it, and follow the instructions in docs/install-in-* for your operating system (e.g. docs\install-in-windows.txt). Sourceforge lists the release files as source files, not as binary executables - this is correct, python will automagically compile as and when required.
|
||||
To install it go to https://sourceforge.net/project/showfiles.php?group_id=226872 and download the zip or tar.bz2, unpack it, and follow the instructions in docs/install-in-* for your operating system (e.g. docs\install-in-windows.txt). Sourceforge lists the release files as source files, not as binary executables - this is correct, python will automagically compile as and when required.
|
||||
|
||||
This is alpha1, as the name indicates it is still at a very early stage. The importer and database are nearing completion but the GUI in particular is not very functional yet and the HUD is missing alltogether.
|
||||
|
||||
|
||||
+2
-7
@@ -12,18 +12,13 @@ Stud/Razz ring games on PokerStars
|
||||
==================================
|
||||
Broken - used to work, hardly tested. Needs to be updated to new infrastructure using a HudData table rather than hands_players_flags. Will fix this shortly.
|
||||
|
||||
A note on No Limit and Pot Limit
|
||||
================================
|
||||
Fpdb fully supports NL/PL, however currently only as far as it does limit games. So it'll tell you how often a player has bet, but not how much. But the mate I'm writing this for doesnt play NL/PL (and neither do I) so volunteers would be most welcome.
|
||||
|
||||
Tournaments/SnGs
|
||||
================
|
||||
Broken - used to work, hardly tested. Needs to be updated to new infrastructure.. Will probably fix this quite soon.
|
||||
Independent of the current brokenness the tourney support would only show information as if a tourney is a ring game - but it's not. If you play tournaments and would like to help improving this let me know, I probably won't bother.
|
||||
Broken - used to work, hardly tested. Needs to be updated to new infrastructure.. Will probably fix this shortly
|
||||
|
||||
Full Tilt Poker
|
||||
===============
|
||||
Not sure - it should import them, but I believe the table viewer won't work. Would be easy to fix though, volunteers welcome
|
||||
Not sure - it should import them, but I believe the table viewer won't work. Would be easy to fix I think, volunteers welcome. This used to work in a pre-alpha but basically was left behind during updates to the other stuff.
|
||||
|
||||
Other Sites
|
||||
===========
|
||||
|
||||
@@ -509,6 +509,7 @@ autorates</B></P>
|
||||
<TD><P>float</P></TD>
|
||||
<TD><P>As wonWhenSeenFlop, but for showdown.</P></TD>
|
||||
</TR>
|
||||
|
||||
<TR VALIGN=TOP>
|
||||
<TD><P>stealAttemptChance</P></TD>
|
||||
<TD><P>int</P></TD>
|
||||
@@ -539,6 +540,37 @@ autorates</B></P>
|
||||
<TD><P>int</P></TD>
|
||||
<TD><P>Player folded SB to steal attempt</P></TD>
|
||||
</TR>
|
||||
|
||||
<TR VALIGN=TOP>
|
||||
<TD><P>contBetChance</P></TD>
|
||||
<TD><P>int</P></TD>
|
||||
<TD><P>Player had chance to make continuation bet</P></TD>
|
||||
</TR>
|
||||
<TR VALIGN=TOP>
|
||||
<TD><P>contBetDone</P></TD>
|
||||
<TD><P>int</P></TD>
|
||||
<TD><P>Player used chance to make continuation bet</P></TD>
|
||||
</TR>
|
||||
<TR VALIGN=TOP>
|
||||
<TD><P>secondBarrelChance</P></TD>
|
||||
<TD><P>int</P></TD>
|
||||
<TD><P>Player had chance to make second barrel bet</P></TD>
|
||||
</TR>
|
||||
<TR VALIGN=TOP>
|
||||
<TD><P>secondBarrelDone</P></TD>
|
||||
<TD><P>int</P></TD>
|
||||
<TD><P>Player used chance to make second barrel bet</P></TD>
|
||||
</TR>
|
||||
<TR VALIGN=TOP>
|
||||
<TD><P>thirdBarrelChance</P></TD>
|
||||
<TD><P>int</P></TD>
|
||||
<TD><P>Player had chance to make third barrel bet</P></TD>
|
||||
</TR>
|
||||
<TR VALIGN=TOP>
|
||||
<TD><P>thirdBarrelDone</P></TD>
|
||||
<TD><P>int</P></TD>
|
||||
<TD><P>Player used chance to make third barrel bet</P></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<P></P>
|
||||
<P><B>Table hands_actions</B></P>
|
||||
|
||||
Reference in New Issue
Block a user