Eric Blade
22cf70358f
Merge branch 'master' of git://git.assembla.com/fpdboz.git
2010-12-05 01:19:18 -05:00
Worros
c61598b7aa
fpdb: Add menu calls for Replayer
2010-12-04 19:10:47 +08:00
Eric Blade
021fc50236
Merge branch 'master' of git://git.assembla.com/fpdb.git
2010-12-03 16:32:30 -05:00
Steffen Schaumburg
35b5794813
update version in GUI
2010-11-29 22:22:03 +01:00
Eric Blade
2d0ea89b9a
comment
2010-11-28 20:24:39 -05:00
Eric Blade
99535cddbb
cleanups
2010-11-28 20:15:09 -05:00
Eric Blade
e5782dd736
some cleanups and comments
2010-11-28 20:00:56 -05:00
Eric Blade
336fee0f3d
oops
2010-11-27 20:36:42 -05:00
Eric Blade
7402c57eb1
--hidden --minimized
2010-11-27 20:35:34 -05:00
Eric Blade
e2b86eb239
Add --autoimport command argument
2010-11-27 19:32:28 -05:00
Eric Blade
f94ad0126a
add --xloc and --yloc options for specifying where to start windows at
2010-11-27 19:16:15 -05:00
Worros
d3f07aae45
Stove: Mockup interface for a Stovelike EV calculator page
2010-11-24 11:30:13 +08:00
Worros
ba1b15048b
fpdb.pyw: Fix comment
2010-11-22 13:28:25 +08:00
Worros
e1d4e8fc6d
Merge branch 'master' of git://git.assembla.com/fpdb
2010-11-10 11:56:35 +08:00
Worros
281aaf7545
fpdb.pyw: Update menu to call tourney import
2010-11-10 11:49:49 +08:00
Steffen Schaumburg
1dd52fb885
rename tourney player stats to tourney stats
2010-11-09 22:42:40 +01:00
steffen123
68f7ae1347
Merge branch 'carl'
2010-10-24 22:01:45 +02:00
steffen123
cc5aaa14aa
change to support py25
2010-10-24 21:40:04 +02:00
Eric Blade
fb206dfde6
actually import _mysql_exceptions before trying to test against it
2010-10-11 18:23:22 -04:00
lastpoet
d69a2c4df4
fix main window and taskbar icon
2010-10-04 12:04:52 +01:00
Worros
591543d468
L10n updates: C->F
2010-09-23 00:10:32 +08:00
Worros
83900736f0
fpdb.py: Use L10n
2010-09-22 23:46:03 +08:00
gimick
9e3df066f5
import: cli mode, don't display progress bar; tweak progress bar
2010-09-04 23:12:29 +01:00
gimick
177b5768ae
Merge branch 'master' of git://git.assembla.com/fpdboz
2010-09-04 12:35:48 +01:00
gimick
3fd2b2f838
Import: Show progress bar during bulk import
2010-09-04 12:30:43 +01:00
Worros
cf2629b290
New: Tournament Results Viewer
...
Decided to see how hard it would be to get the tournament results using the existing schema.
Turns out the cash graph query is pretty similar and not much thought was required.
Created a new tab based on the existing cash game viewer for profit.
This is probably the idea page for multiple axis to be added.
- Distributions for position
- distributions by buy-in level
- ROI per buy-in level
Lots of stuff like that.
2010-09-04 14:16:46 +08:00
Worros
7aeb5e4531
Merge branch 'master' of git://git.assembla.com/fpdb-sql
2010-09-01 11:08:04 +08:00
sqlcoder
06b34e8648
clarify difference between site and filter to allow 2 sites from same network, prompt to add site to db if missing
2010-08-31 22:44:41 +01:00
steffen123
f6d5d2f9fc
fpdb.pyw: remove unneeded unused method
2010-08-29 20:35:33 +02:00
steffen123
3990b40e3d
Some string changes, mostly consistency to make translation easier
2010-08-29 20:35:16 +02:00
steffen123
168b114646
l10n: some minor string changes
2010-08-29 19:12:48 +02:00
steffen123
693dfb4e19
update GUI version string to 0.20.906 plus git
2010-08-29 14:25:44 +02:00
steffen123
ee20cbbcc1
some small GUI string improvements
2010-08-29 14:21:49 +02:00
steffen123
ef576cf213
update version to 0.20.906
2010-08-27 00:00:42 +02:00
steffen123
76f60e3592
include fpdb version in GUI version listing
2010-08-26 18:32:01 +02:00
steffen123
de9d48cc6a
remove menu entry for set handhistory archive directory
2010-08-25 14:55:37 +02:00
steffen123
fdfefc753f
update GUI version string to git again
2010-08-25 11:50:36 +02:00
steffen123
f2fe4b0ce7
update version string in GUI
2010-08-25 08:06:12 +02:00
steffen123
abe5934e0c
add note about viewers broken on pgsql to GUI
2010-08-25 06:46:52 +02:00
steffen123
fa6da55618
remove table viewer config handling from code
2010-08-22 04:18:00 +02:00
steffen123
96f547b3df
fix typo in fpdb.iconify
2010-08-21 18:32:46 +02:00
Mika Bostrom
bf2eaa772c
Fix window visibility
...
This fixes the FPDB main window visibility with window managers that use
workspaces instead of virtual desktop(s). On such a system the
application receives WINDOW_STATE_ICONIFIED event when the workspace is
switched. This hides the window.
It wouldn't be too big a problem if the window wouldn't occasionally get
stuck in a "hide-me-loop", where any attempt to unhide/present the
window again triggers the hide routine. The two state events, _ICONIFIED
and _WITHDRAWN are not the same or even mutually exclusive. As such the
old event mask test simply did not cover all the possibilities.
Also, the property 'visible' does not necessarily match reality. It can
be set to true for iconified windows, and false to a visible window. So
a better solution is to not rely on the property, but just track the
wanted visibility state in our own code.
After this simple refactoring, the application window finally seems to
behave properly. [Also, widget.present() automatically calls .show(), so
we can kill one redundant operation.]
2010-08-21 14:24:34 +03:00
steffen123
199929b2d0
a couple of l10n related fixes to fpdb.pyw
2010-08-17 23:30:15 +02:00
steffen123
b08cb18c0e
remove debug print; add import to Config; gettextify tables
2010-08-15 21:09:18 +02:00
steffen123
b4317bba2a
auto-detect language
2010-08-15 20:50:49 +02:00
steffen123
d703d0ca7a
Merge branch 'master' into l10n
...
Conflicts:
pyfpdb/fpdb.pyw
2010-08-13 05:01:01 +02:00
steffen123
d601ecde5b
add translators wanted notice to start screen
2010-08-13 04:36:22 +02:00
steffen123
4aba116b9a
allow py27 on windows
2010-08-13 04:10:13 +02:00
steffen123
69dba72040
final _() for fpdb.pyw
2010-08-13 04:09:28 +02:00
steffen123
fe1c9aed70
remove another useless method from fpdb.pyw
2010-08-13 03:51:51 +02:00