File: ChangeLog

package info (click to toggle)
poker-engine 1.3.6-1.2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,608 kB
  • ctags: 1,844
  • sloc: python: 4,589; xml: 3,529; sh: 744; makefile: 384
file content (1757 lines) | stat: -rw-r--r-- 76,104 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
2011-03-18  Loic Dachary <loic@dachary.org>

	* Release 1.3.6

	* debian/rules: clean:: $(DEB_BUILDDIR)/config.status
	  replaced by
	  clean:: debian/stamp-autotools-configure
	  for the sake of packaging-farm
	* debian/changelog, debian/control, debian/control.breezy,
	  debian/control.dapper, debian/control.edgy, debian/control.etch,
	  debian/control.feisty, debian/control.gutsy,
	  debian/control.hardy, debian/control.hoary,
	  debian/control.intrepid, debian/control.jaunty,
	  debian/control.lenny, debian/control.sarge,
	  debian/control.squeeze, debian/control.unstable, debian/rules:
	  release 1.3.6 and fix bug#616944

2010-04-06  Loic Dachary <loic@dachary.org>

	* debian/control.squeeze: squeeze support

2010-03-29  Loic Dachary <loic@dachary.org>

	* debian/changelog: version bump to 1.3.6
	* ChangeLog, Makefile.am: version bump to 1.3.6
	* NEWS, conf/poker..01-.02-no-limit.xml,
	  conf/poker..01-.02-pot-limit.xml, conf/poker..02-.04-limit.xml,
	  conf/poker..02-.04-no-limit.xml,
	  conf/poker..02-.04-pot-limit.xml, conf/poker..02..04-limit.xml,
	  conf/poker..05-.10-limit.xml, conf/poker..05-.10-no-limit.xml,
	  conf/poker..05-.10-pot-limit.xml, conf/poker..05..10-limit.xml,
	  conf/poker..10-.25-limit.xml, conf/poker..10-.25-no-limit.xml,
	  conf/poker..10-.25-pot-limit.xml, conf/poker..25-.50-limit.xml,
	  conf/poker..25-.50-no-limit.xml,
	  conf/poker..25-.50-pot-limit.xml, conf/poker..25..50-limit.xml,
	  conf/poker..50-1-limit.xml, conf/poker..50-1-no-limit.xml,
	  conf/poker..50-1-pot-limit.xml, conf/poker..50.1-limit.xml,
	  conf/poker.0-0-limit.xml, conf/poker.1-2-limit.xml,
	  conf/poker.1-2-no-limit.xml, conf/poker.1-2-pot-limit.xml,
	  conf/poker.10-15-limit.xml, conf/poker.10-15-pot-limit.xml,
	  conf/poker.10-20-limit.xml, conf/poker.10-20-no-limit.xml,
	  conf/poker.10-20-pot-limit.xml, conf/poker.100-200-limit.xml,
	  conf/poker.100-200-no-limit.xml,
	  conf/poker.100-200-pot-limit.xml, conf/poker.15-30-limit.xml,
	  conf/poker.150-300-limit.xml, conf/poker.2-4-limit.xml,
	  conf/poker.2-4-no-limit.xml, conf/poker.2-4-pot-limit.xml,
	  conf/poker.200-400-limit.xml, conf/poker.3-6-limit.xml,
	  conf/poker.3-6-no-limit.xml, conf/poker.3-6-pot-limit.xml,
	  conf/poker.30-60-limit.xml, conf/poker.30-60-no-limit.xml,
	  conf/poker.30-60-pot-limit.xml, conf/poker.4-8-limit.xml,
	  conf/poker.5-10-limit.xml, conf/poker.5-10-no-limit.xml,
	  conf/poker.5-10-pot-limit.xml, conf/poker.50-100-limit.xml,
	  conf/poker.50-100-no-limit.xml, conf/poker.50-100-pot-limit.xml,
	  conf/poker.7stud.xml, conf/poker.ante-.04-.08-limit.xml,
	  conf/poker.ante-.10-.20-limit.xml,
	  conf/poker.ante-.25-.50-limit.xml,
	  conf/poker.ante-.50-1-limit.xml, conf/poker.ante-1-2-limit.xml,
	  conf/poker.ante-10-20-limit.xml, conf/poker.ante-2-4-limit.xml,
	  conf/poker.ante-3-6-limit.xml, conf/poker.ante-30-60-limit.xml,
	  conf/poker.ante-5-10-limit.xml, conf/poker.holdem.xml,
	  conf/poker.level-001.xml, conf/poker.level-10-15-pot-limit.xml,
	  conf/poker.level-10-20-no-limit.xml,
	  conf/poker.level-15-30-no-limit.xml,
	  conf/poker.level-2-4-limit.xml, conf/poker.levels-blinds.xml,
	  conf/poker.omaha.xml, conf/poker.omaha8.xml,
	  conf/poker.payouts.xml, conf/poker.razz.xml, configure.ac,
	  pokerengine/__init__.py: version bump to 1.3.6

2010-03-25  Johan Euphrosine <proppy@aminche.com>

	* configure.ac, poker-engine.pc.in: add pkgdatadir, pkglibdir
	  support in poker-engine.pc.in

2010-03-05  Loic Dachary <loic@dachary.org>

	* Release 1.3.5

	* ChangeLog, Makefile.am, configure.ac, debian/copyright,
	  examples/simple.py, pokerconfigupgrade.8.in,
	  pokerconfigupgrade.in, pokerengine/Makefile.am,
	  pokerengine/pokercards.py, pokerengine/pokerchips.py,
	  pokerengine/pokerengineconfig.py, pokerengine/pokergame.py,
	  pokerengine/pokerprizes.py, pokerengine/pokerrake.py,
	  pokerengine/pokertournament.py, pokerengine/version.py,
	  tests/Makefile.am, tests/allin.py.in, tests/blinds.py.in,
	  tests/bugs.py.in, tests/buyin.py.in, tests/chips.py.in,
	  tests/deal.py.in, tests/eval.py.in, tests/history.py.in,
	  tests/libxml2leak.py.in, tests/muck.py.in, tests/positions.py.in,
	  tests/run.in, tests/sit.py.in, tests/test-game.py.in,
	  tests/test-gamehistory.py.in, tests/test-i18n.py.in,
	  tests/test-pokercards.py.in, tests/test-pokerchips.py.in,
	  tests/test-pokerengineconfig.py.in, tests/test-pokerplayer.py.in,
	  tests/test-pokerprizes.py.in, tests/test-pokerrake.py.in,
	  tests/test-pokertournament.py.in, tests/test-version.py.in,
	  tests/testmessages.py, tests/tournament.py.in,
	  tests/upgrades.py.in: update copyrights for 2010
	* pokerengine/pokertournament.py, tests/test-pokertournament.py.in:
	  Bug: tourney block in BREAK_WAIT when one of the table has only
	  one player #15488
	  Fix: assume tables with a single player are ready for a tourney
	  break.
	* debian/changelog: FTBFS fix 564371
	* NEWS, conf/poker..01-.02-no-limit.xml,
	  conf/poker..01-.02-pot-limit.xml, conf/poker..02-.04-limit.xml,
	  conf/poker..02-.04-no-limit.xml,
	  conf/poker..02-.04-pot-limit.xml, conf/poker..02..04-limit.xml,
	  conf/poker..05-.10-limit.xml, conf/poker..05-.10-no-limit.xml,
	  conf/poker..05-.10-pot-limit.xml, conf/poker..05..10-limit.xml,
	  conf/poker..10-.25-limit.xml, conf/poker..10-.25-no-limit.xml,
	  conf/poker..10-.25-pot-limit.xml, conf/poker..25-.50-limit.xml,
	  conf/poker..25-.50-no-limit.xml,
	  conf/poker..25-.50-pot-limit.xml, conf/poker..25..50-limit.xml,
	  conf/poker..50-1-limit.xml, conf/poker..50-1-no-limit.xml,
	  conf/poker..50-1-pot-limit.xml, conf/poker..50.1-limit.xml,
	  conf/poker.0-0-limit.xml, conf/poker.1-2-limit.xml,
	  conf/poker.1-2-no-limit.xml, conf/poker.1-2-pot-limit.xml,
	  conf/poker.10-15-limit.xml, conf/poker.10-15-pot-limit.xml,
	  conf/poker.10-20-limit.xml, conf/poker.10-20-no-limit.xml,
	  conf/poker.10-20-pot-limit.xml, conf/poker.100-200-limit.xml,
	  conf/poker.100-200-no-limit.xml,
	  conf/poker.100-200-pot-limit.xml, conf/poker.15-30-limit.xml,
	  conf/poker.150-300-limit.xml, conf/poker.2-4-limit.xml,
	  conf/poker.2-4-no-limit.xml, conf/poker.2-4-pot-limit.xml,
	  conf/poker.200-400-limit.xml, conf/poker.3-6-limit.xml,
	  conf/poker.3-6-no-limit.xml, conf/poker.3-6-pot-limit.xml,
	  conf/poker.30-60-limit.xml, conf/poker.30-60-no-limit.xml,
	  conf/poker.30-60-pot-limit.xml, conf/poker.4-8-limit.xml,
	  conf/poker.5-10-limit.xml, conf/poker.5-10-no-limit.xml,
	  conf/poker.5-10-pot-limit.xml, conf/poker.50-100-limit.xml,
	  conf/poker.50-100-no-limit.xml, conf/poker.50-100-pot-limit.xml,
	  conf/poker.7stud.xml, conf/poker.ante-.04-.08-limit.xml,
	  conf/poker.ante-.10-.20-limit.xml,
	  conf/poker.ante-.25-.50-limit.xml,
	  conf/poker.ante-.50-1-limit.xml, conf/poker.ante-1-2-limit.xml,
	  conf/poker.ante-10-20-limit.xml, conf/poker.ante-2-4-limit.xml,
	  conf/poker.ante-3-6-limit.xml, conf/poker.ante-30-60-limit.xml,
	  conf/poker.ante-5-10-limit.xml, conf/poker.holdem.xml,
	  conf/poker.level-001.xml, conf/poker.level-10-15-pot-limit.xml,
	  conf/poker.level-10-20-no-limit.xml,
	  conf/poker.level-15-30-no-limit.xml,
	  conf/poker.level-2-4-limit.xml, conf/poker.levels-blinds.xml,
	  conf/poker.omaha.xml, conf/poker.omaha8.xml,
	  conf/poker.payouts.xml, conf/poker.razz.xml: bump version 1.3.5
	* pokerengine/__init__.py: bump 1.3.5

2010-02-17  Chandan Kudige <ck@kudige.com>

	* po/de.po: Bring in German translations provided by Pokermania on
	  2009-02-17 into de.po

2009-07-13  Loic Dachary <loic@dachary.org>

	* Release 1.3.4

	* pokerengine/pokertournament.py: updateBreak may get a 0 game_id
	  in argument. This turns an implicit tricky case into an explicit
	  exception. It will help remembering it.

2009-07-08  Loic Dachary <loic@dachary.org>

	* pokerengine/pokertournament.py, tests/test-pokertournament.py.in:
	  1) a tournament enters BREAK_WAIT
	  2) all tables but table T1 finished their hand
	  3) the table T1 finishes its hand AND is destroyed as a side
	  effect of a call to balanceGames, because the T1 players
	  are dispatched to the other tables.
	  This is a special case where updateBreak will be called from
	  endTurn
	  with a game_id for a table that is gone. updateBreak must
	  gracefully
	  ignore the fact it is gone and proceed to BREAK state.

2009-07-06  Johan Euphrosine <proppy@aminche.com>

	* tests/test-game.py.in: add testBestHandsHoldemFlopStreet

2009-06-08  Loic Dachary <loic@dachary.org>

	* pokerengine/pokertournament.py: is isEndOrNull instead of
	  isRunning when balancing tables because players cannot be moved
	  when in MUCK state. https://gna.org/bugs/index.php?13648

2009-05-30  Loic Dachary  <loic@pokerdev.call.tld>

	* pokerengine/pokertournament.py (PokerTournament.balanceGames), 
	  tests/test-pokertournament.py.in (PokerTournamentTestCase.testBalanceGamesRunning): the callback must
	  not be invoked when the tournament is still in state REGISTERING (i.e. the tournament tables are about
	  to be populated)
	  https://gna.org/bugs/?13590
	
2009-04-10  Loic Dachary <loic@dachary.org>

	* Release 1.3.3

	* debian/control, debian/control.unstable: add python-central to
	  source list
	* debian/changelog: Closes: #517557
	* pokerconfigupgrade.in: do not remove files when upgrading
	* tests/test-game.py.in: typo
	* ChangeLog: move release tag up

2009-02-05  Bradley M. Kuhn  <bkuhn@ebb.org>

	* pokerengine/pokertournament.py (PokerTournament.createGames):
	Moved callback_game_filled() to be called in a secondary loop
	after balanceGames() is called.
	(PokerTournament.__init__): Added clarifying comment on what
	calback_game_filled() means.
	(PokerTournament.createGames): call game.close() only after the
	game_filled() callback.

2009-01-31  Bradley M. Kuhn  <bkuhn@ebb.org>

	* tests/test-pokertournament.py.in
	(PokerTournamentTestCase.testBalanceGames)
	(PokerTournamentTestCase.testBreakGames)
	(PokerTournamentTestCase.testEqualizeCandidates)
	(PokerTournamentTestCase.testEqualizeGames)
	(PokerTournamentTestCase.testMovePlayer): Reworked tests based on
	fact that balanceGames() is called by default by createGames().

2008-12-29  Bradley M. Kuhn  <bkuhn@ebb.org>

	* pokerengine/pokertournament.py (PokerTournament.createGames):
	Call self.balanceGames() at the end of game creation at start of
	the tourney.

	* tests/tournament.py.in
	(TestCreate.test4_tourneyTableStartBalanced): Wrote test.
	(TestCreate.tourneyTableStartBalancedHelper): Created helper
	function.

2008-12-27  Loic Dachary  <loic@dachary.org>

	* ChangeLog, NEWS, conf/poker..01-.02-no-limit.xml,
	  conf/poker..01-.02-pot-limit.xml, conf/poker..02-.04-limit.xml,
	  conf/poker..02-.04-no-limit.xml,
	  conf/poker..02-.04-pot-limit.xml, conf/poker..02..04-limit.xml,
	  conf/poker..05-.10-limit.xml, conf/poker..05-.10-no-limit.xml,
	  conf/poker..05-.10-pot-limit.xml, conf/poker..05..10-limit.xml,
	  conf/poker..10-.25-limit.xml, conf/poker..10-.25-no-limit.xml,
	  conf/poker..10-.25-pot-limit.xml, conf/poker..25-.50-limit.xml,
	  conf/poker..25-.50-no-limit.xml,
	  conf/poker..25-.50-pot-limit.xml, conf/poker..25..50-limit.xml,
	  conf/poker..50-1-limit.xml, conf/poker..50-1-no-limit.xml,
	  conf/poker..50-1-pot-limit.xml, conf/poker..50.1-limit.xml,
	  conf/poker.0-0-limit.xml, conf/poker.1-2-limit.xml,
	  conf/poker.1-2-no-limit.xml, conf/poker.1-2-pot-limit.xml,
	  conf/poker.10-15-limit.xml, conf/poker.10-15-pot-limit.xml,
	  conf/poker.10-20-limit.xml, conf/poker.10-20-no-limit.xml,
	  conf/poker.10-20-pot-limit.xml, conf/poker.100-200-limit.xml,
	  conf/poker.100-200-no-limit.xml,
	  conf/poker.100-200-pot-limit.xml, conf/poker.15-30-limit.xml,
	  conf/poker.150-300-limit.xml, conf/poker.2-4-limit.xml,
	  conf/poker.2-4-no-limit.xml, conf/poker.2-4-pot-limit.xml,
	  conf/poker.200-400-limit.xml, conf/poker.3-6-limit.xml,
	  conf/poker.3-6-no-limit.xml, conf/poker.3-6-pot-limit.xml,
	  conf/poker.30-60-limit.xml, conf/poker.30-60-no-limit.xml,
	  conf/poker.30-60-pot-limit.xml, conf/poker.4-8-limit.xml,
	  conf/poker.5-10-limit.xml, conf/poker.5-10-no-limit.xml,
	  conf/poker.5-10-pot-limit.xml, conf/poker.50-100-limit.xml,
	  conf/poker.50-100-no-limit.xml, conf/poker.50-100-pot-limit.xml,
	  conf/poker.7stud.xml, conf/poker.ante-.04-.08-limit.xml,
	  conf/poker.ante-.10-.20-limit.xml,
	  conf/poker.ante-.25-.50-limit.xml,
	  conf/poker.ante-.50-1-limit.xml, conf/poker.ante-1-2-limit.xml,
	  conf/poker.ante-10-20-limit.xml, conf/poker.ante-2-4-limit.xml,
	  conf/poker.ante-3-6-limit.xml, conf/poker.ante-30-60-limit.xml,
	  conf/poker.ante-5-10-limit.xml, conf/poker.holdem.xml,
	  conf/poker.level-001.xml, conf/poker.level-10-15-pot-limit.xml,
	  conf/poker.level-10-20-no-limit.xml,
	  conf/poker.level-15-30-no-limit.xml,
	  conf/poker.level-2-4-limit.xml, conf/poker.levels-blinds.xml,
	  conf/poker.omaha.xml, conf/poker.omaha8.xml,
	  conf/poker.payouts.xml, conf/poker.razz.xml, debian/changelog,
	  pokerengine/__init__.py: bump to version 1.3.3

2008-12-25  Loic Dachary <loic@dachary.org>

	* Release 1.3.2

	* tests/libxml2leak.py.in: It is almost impossible to be precise
	  when watching the vsize of a process.  This test suite is not
	  about making sure the process never grows.  It is designed to
	  spot cases where the process grows most of the time, i.e. has a
	  significant leak.

	* tests/libxml2leak.py.in: Keep track of the greater size found so
	  that decreasing memory does not create false positive (i.e. 1000
	  996 1000 996 1000 996...)

	* configure.ac, pokerengine/pokerengineconfig.py,
	  tests/Makefile.am, tests/libxml2leak.py.in: libxml2 leaks objects
	  unless a deallocation function is explicitly called. tests are
	  added to check the libxml2 deallocation functions are called
	  where neeeded.

2008-12-22  Loic Dachary  <loic@dachary.org>

	* ChangeLog, NEWS, conf/poker..01-.02-no-limit.xml,
	  conf/poker..01-.02-pot-limit.xml, conf/poker..02-.04-limit.xml,
	  conf/poker..02-.04-no-limit.xml,
	  conf/poker..02-.04-pot-limit.xml, conf/poker..02..04-limit.xml,
	  conf/poker..05-.10-limit.xml, conf/poker..05-.10-no-limit.xml,
	  conf/poker..05-.10-pot-limit.xml, conf/poker..05..10-limit.xml,
	  conf/poker..10-.25-limit.xml, conf/poker..10-.25-no-limit.xml,
	  conf/poker..10-.25-pot-limit.xml, conf/poker..25-.50-limit.xml,
	  conf/poker..25-.50-no-limit.xml,
	  conf/poker..25-.50-pot-limit.xml, conf/poker..25..50-limit.xml,
	  conf/poker..50-1-limit.xml, conf/poker..50-1-no-limit.xml,
	  conf/poker..50-1-pot-limit.xml, conf/poker..50.1-limit.xml,
	  conf/poker.0-0-limit.xml, conf/poker.1-2-limit.xml,
	  conf/poker.1-2-no-limit.xml, conf/poker.1-2-pot-limit.xml,
	  conf/poker.10-15-limit.xml, conf/poker.10-15-pot-limit.xml,
	  conf/poker.10-20-limit.xml, conf/poker.10-20-no-limit.xml,
	  conf/poker.10-20-pot-limit.xml, conf/poker.100-200-limit.xml,
	  conf/poker.100-200-no-limit.xml,
	  conf/poker.100-200-pot-limit.xml, conf/poker.15-30-limit.xml,
	  conf/poker.150-300-limit.xml, conf/poker.2-4-limit.xml,
	  conf/poker.2-4-no-limit.xml, conf/poker.2-4-pot-limit.xml,
	  conf/poker.200-400-limit.xml, conf/poker.3-6-limit.xml,
	  conf/poker.3-6-no-limit.xml, conf/poker.3-6-pot-limit.xml,
	  conf/poker.30-60-limit.xml, conf/poker.30-60-no-limit.xml,
	  conf/poker.30-60-pot-limit.xml, conf/poker.4-8-limit.xml,
	  conf/poker.5-10-limit.xml, conf/poker.5-10-no-limit.xml,
	  conf/poker.5-10-pot-limit.xml, conf/poker.50-100-limit.xml,
	  conf/poker.50-100-no-limit.xml, conf/poker.50-100-pot-limit.xml,
	  conf/poker.7stud.xml, conf/poker.ante-.04-.08-limit.xml,
	  conf/poker.ante-.10-.20-limit.xml,
	  conf/poker.ante-.25-.50-limit.xml,
	  conf/poker.ante-.50-1-limit.xml, conf/poker.ante-1-2-limit.xml,
	  conf/poker.ante-10-20-limit.xml, conf/poker.ante-2-4-limit.xml,
	  conf/poker.ante-3-6-limit.xml, conf/poker.ante-30-60-limit.xml,
	  conf/poker.ante-5-10-limit.xml, conf/poker.holdem.xml,
	  conf/poker.level-001.xml, conf/poker.level-10-15-pot-limit.xml,
	  conf/poker.level-10-20-no-limit.xml,
	  conf/poker.level-15-30-no-limit.xml,
	  conf/poker.level-2-4-limit.xml, conf/poker.levels-blinds.xml,
	  conf/poker.omaha.xml, conf/poker.omaha8.xml,
	  conf/poker.payouts.xml, conf/poker.razz.xml, debian/changelog,
	  pokerengine/__init__.py: bump version 1.3.2
	* conf/poker.level-no-limit.xml: remove misleading definition

2008-12-09  Loic Dachary <loic@dachary.org>

	* Release 1.3.1

	* tests/tournament.py.in: calculation of the prize pool must be
	  done on regular tournaments
	* tests/testmessages.py: remove factory related tests.
	* tests/test-pokertournament.py.in: rewrite all prizes related
	  tests to exercise the pokertournament logic related to them and
	  leave the tests related to the calculation of the prizes to
	  test-pokerprizes
	* tests/test-pokerprizes.py.in: remove factory related tests.
	* pokerengine/pokertournament.py: loadPayouts creates prizes_object
	  with a player_count depending on tie sit_n_go / regular state of
	  the tournament and adds the guarantee_amount = prize_min argument
	  to the constructor.
	  When a tournament goes from TOURNAMENT_STATE_REGISTERING to
	  TOURNAMENT_STATE_CANCELED, set can_register to false.
	  In register and unregister, update the player count and clear the
	  rank2prize cache if a sit_n_go tournament.
	  In prizes, do not return None if not in registering mode.
	  Use pokerprizes.__dict__['xx'] instead of obsoleted factory.
	* pokerengine/pokerprizes.py: Add config_file_name argument to
	  loadPayouts.
	  Remove PokerPrizesFactory which is replaced by
	  pokerprizes.__dict__['XXX'].
	  Rename functions arguments as foo_bar instead of fooBar.
	* tests/testmessages.py: remove twisted dependency

2008-12-08  Loic Dachary <loic@dachary.org>

	* tests/Makefile.am, tests/test-pokerprizes.py.in,
	  tests/test-pokertournament.py.in: testmessages is the first
	  script in tests and requires __init__.py to be visible

	* po/fr.po, po/stamp-po: restore stamp-po wrongly deleted
	* conf/poker..01-.02-no-limit.xml,
	  conf/poker..01-.02-pot-limit.xml, conf/poker..02-.04-limit.xml,
	  conf/poker..02-.04-no-limit.xml,
	  conf/poker..02-.04-pot-limit.xml, conf/poker..02..04-limit.xml,
	  conf/poker..05-.10-limit.xml, conf/poker..05-.10-no-limit.xml,
	  conf/poker..05-.10-pot-limit.xml, conf/poker..05..10-limit.xml,
	  conf/poker..10-.25-limit.xml, conf/poker..10-.25-no-limit.xml,
	  conf/poker..10-.25-pot-limit.xml, conf/poker..25-.50-limit.xml,
	  conf/poker..25-.50-no-limit.xml,
	  conf/poker..25-.50-pot-limit.xml, conf/poker..25..50-limit.xml,
	  conf/poker..50-1-limit.xml, conf/poker..50-1-no-limit.xml,
	  conf/poker..50-1-pot-limit.xml, conf/poker..50.1-limit.xml,
	  conf/poker.0-0-limit.xml, conf/poker.1-2-limit.xml,
	  conf/poker.1-2-no-limit.xml, conf/poker.1-2-pot-limit.xml,
	  conf/poker.10-15-limit.xml, conf/poker.10-15-pot-limit.xml,
	  conf/poker.10-20-limit.xml, conf/poker.10-20-no-limit.xml,
	  conf/poker.10-20-pot-limit.xml, conf/poker.100-200-limit.xml,
	  conf/poker.100-200-no-limit.xml,
	  conf/poker.100-200-pot-limit.xml, conf/poker.15-30-limit.xml,
	  conf/poker.150-300-limit.xml, conf/poker.2-4-limit.xml,
	  conf/poker.2-4-no-limit.xml, conf/poker.2-4-pot-limit.xml,
	  conf/poker.200-400-limit.xml, conf/poker.3-6-limit.xml,
	  conf/poker.3-6-no-limit.xml, conf/poker.3-6-pot-limit.xml,
	  conf/poker.30-60-limit.xml, conf/poker.30-60-no-limit.xml,
	  conf/poker.30-60-pot-limit.xml, conf/poker.4-8-limit.xml,
	  conf/poker.5-10-limit.xml, conf/poker.5-10-no-limit.xml,
	  conf/poker.5-10-pot-limit.xml, conf/poker.50-100-limit.xml,
	  conf/poker.50-100-no-limit.xml, conf/poker.50-100-pot-limit.xml,
	  conf/poker.7stud.xml, conf/poker.ante-.04-.08-limit.xml,
	  conf/poker.ante-.10-.20-limit.xml,
	  conf/poker.ante-.25-.50-limit.xml,
	  conf/poker.ante-.50-1-limit.xml, conf/poker.ante-1-2-limit.xml,
	  conf/poker.ante-10-20-limit.xml, conf/poker.ante-2-4-limit.xml,
	  conf/poker.ante-3-6-limit.xml, conf/poker.ante-30-60-limit.xml,
	  conf/poker.ante-5-10-limit.xml, conf/poker.holdem.xml,
	  conf/poker.level-001.xml, conf/poker.level-10-15-pot-limit.xml,
	  conf/poker.level-10-20-no-limit.xml,
	  conf/poker.level-15-30-no-limit.xml,
	  conf/poker.level-2-4-limit.xml, conf/poker.level-no-limit.xml,
	  conf/poker.levels-blinds.xml, conf/poker.omaha.xml,
	  conf/poker.omaha8.xml, conf/poker.payouts.xml,
	  conf/poker.razz.xml: version bump of configuration files to 1.3.1

2008-12-07  Bradley M. Kuhn  <bkuhn@ebb.org>

	* pokerengine/Makefile.am (pokerengine_PYTHON): Added
	pokerprizes.py

	* tests/tournament.py.in (TestPrizes.test1): Adapted test.

	* tests/Makefile.am (EXTRA_DIST): added testmessages.py

	* tests/test-pokertournament.py.in
	(PokerTournamentTestCase.testPrizes): Adjusted test.
	(PokerTournamentTestCase.testPrizesAlgorithm): Adjusted test.
	(PokerTournamentTestCase.testPrizesTable): Adjusted test.

	* tests/test-pokerprizes.py.in
	(PokerPrizesTestCase.test01_algorithmPrizeInterface): Added test
	to cover removePlayer().
	(PokerPrizesTestCase.test02_tablePrizeInterface): Added test to
	cover removePlayer().

	* pokerengine/pokerprizes.py (PokerPrizes.removePlayer): Wrote method.

	* pokerengine/pokertournament.py (PokerTournament.prizes): Adapted
	to use self.perize_object.prizes()
	(PokerTournament.register): Added called to prizes_object.addPlayer()
	(PokerTournament.unregister): Added called to prizes_object.removePlayer()

	* pokerengine/pokerprizes.py (PokerPrizes.__init__): Added
	dummy configDirs argument to simplify code in pokertournament.loadPayouts()

	* pokerengine/pokertournament.py
	(PokerTournament.prizesAlgorithm, PokerTournament.prizesTable):
	Removed methods.
	(PokerTournament.loadPayouts): Switched to use PokerPrizesFactory()

	* tests/test-pokerprizes.py.in (PokerPrizesTestCase.tearDown):
	Added method.
	(PokerPrizesTestCase.setUp): Added method.
	(PokerPrizesTestCase.test00_factory): Wrote test.

	* configure.ac (AC_CONFIG_FILES): Added tests/test-pokerprizes.py.

2008-12-06  Bradley M. Kuhn  <bkuhn@ebb.org>

	* pokerengine/pokerprizes.py (PokerPrizesFactory): Created class.
	(PokerPrizes): Created class.
	(PokerPrizesAlgorithm): Created class, using
	pokertournament.prizesAlgorithm() as getPrizes()
	(PokerPrizesTable): Created class, using
	pokertournament.prizesTable() as getPrizes()

	* tests/test-pokerprizes.py.in (PokerPrizesTestCase): Created
	class.
	(PokerPrizesTestCase.test01_algorithmPrizeInterface): Adapted from
	PokerTournamentTestCase.testPrizesAlgorithm
	(PokerPrizesTestCase.test02_tablePrizeInterface): Adapted from
	PokerTournamentTestCase.testPrizesTable

2008-11-04  Loic Dachary <loic@dachary.org>

	* Release 1.3.0

	* debian/control.jaunty: preliminary jaunty support
	* debian/control.intrepid: intrepid support

2008-10-29  Johan Euphrosine <proppy@aminche.com>

	* po/fr.po, po/poker-engine.pot: make update-po in poker-engine
	* config: add config directory in poker-engine
	* po/fr.po: update poker-engine french translation

2008-08-26  Bradley M. Kuhn  <bkuhn@ebb.org>

	* tests/test-i18n.py.in (PokerI18NTest.testTranslationFails):
	Added test to make sure old _() is returned.
	(PokerI18NTest.testUserWrittenTranslationFunction): Added test to
	make sure old _() is returned.

	* pokerengine/pokergame.py (init_i18n): Now return the function
	that was previously the value of _(), so that users of the
	function can restore it.

	* tests/blinds.py.in
	(TestBlinds.test12_fourPlayers_fourSitsOutForALongTime): Decreased
	number of loop iterations per dachary.
	(TestBlinds.test11_sixPlayers_fiveSitsOutForALongTime): Decreased
	number of loop iterations per dachary.
	(TestBlinds.helperForTest13and14): Decreased
	number of loop iterations per dachary.

	* tests/test-i18n.py.in
	(PokerI18NTest.testUserWrittenTranslationFunction): Wrote test.

	* pokerengine/pokergame.py (init_i18n): Added user override option
	for translation function.

2008-08-24  Bradley M. Kuhn  <bkuhn@ebb.org>

	* AUTHORS: Added myself to file.

	* tests/blinds.py.in
	(TestBlinds.test4_fourPlayers_player4missedBothBlinds_onlyBigRequired):
	Added test for getMissedRoundCount()
	(TestBlinds.test5_sixPlayers_missedBothBlinds_bothRequired): Added
	test for getMissedRoundCount()
	(TestBlinds.test6_fivePlayers_multiDecline_noHandStarts): Added
	test for getMissedRoundCount()
	(TestBlinds.test9_fivePlayers_missedBothBlinds_onlyBigRequired):
	Added test for getMissedRoundCount()
	(run): Restored verbosity line accidently deleted previously.
	(TestBlinds.test12_fourPlayers_fourSitsOutForALongTime): Added
	test for getMissedRoundCount()
	(TestBlinds.helperForTest13and14): Added test for getMissedRoundCount()
	(TestBlinds.test13_sevenPlayers_fiveSitsOutForALongTimeAfterInitialPayment_duringBlinds):
	Added test for getMissedRoundCount()
	(TestBlinds.test14_sevenPlayers_fiveSitsOutForALongTimeAfterInitialPayment_beforeBlinds):
	Added test for getMissedRoundCount()

	* pokerengine/pokergame.py (PokerPlayer.getMissedRoundCount):
	Wrote method.

2008-08-23  Bradley M. Kuhn  <bkuhn@ebb.org>

	* tests/blinds.py.in
	(TestBlinds.test11_sixPlayers_fiveSitsOutForALongTime): Added
	rebuy in each iteration of loop.
	(PokerPredefinedDecks): brought over deck class from history.py.in
	(TestBlinds.setUp): Added use of predefined decks.
	(TestBlinds.test12_fourPlayers_fourSitsOutForALongTime): Wrote test.
	(TestBlinds.test13_sevenPlayers_fiveSitsOutForALongTimeAfterInitialPayment_duringBlinds):
	Renamed test.
	(TestBlinds.test14_sevenPlayers_fiveSitsOutForALongTimeAfterInitialPayment_beforeBlinds):
	Wrote test.
	(TestBlinds.helperForTest13and14): Made helper function.

2008-08-22  Bradley M. Kuhn  <bkuhn@ebb.org>

	* tests/blinds.py.in
	(TestBlinds.test11_sixPlayers_fiveSitsOutForALongTime): Wrote test.

	* pokerengine/pokergame.py (PokerGame.updateBlinds.updateMissed):
	Reworked logic.

2008-08-17  Bradley M. Kuhn  <bkuhn@ebb.org>

	* tests/blinds.py.in
	(TestBlinds.test4_fourPlayers_missedBoth_onlyBigRequired): Renamed test.
	(TestBlinds.test9_fivePlayers_missedBothBlinds_onlyBigRequired):
	Wrote test.
	(TestBlinds.test10_sixPlayers_missedBothBlinds_bothRequired):
	Wrote test
	(TestBlinds.test7_specialTwoWaitForPost): Adapted and renamed.
	(TestBlinds.test1): Adapted test for missed blind count.
	(TestBlinds.test2): Adapted test for missed blind count.
	(TestBlinds.test3): Adapted test for missed blind count.

	* tests/testmessages.py: Added file, copied from poker-network.

	* pokerengine/pokergame.py (PokerPlayer.resetMissedBlinds): Wrote
	method.
	(PokerGame.updateBlinds): changed player.missed_blinds = None to
	resetMissedBlinds() call.
	(PokerGame.initBlindAnte): changed player.missed_blinds = None to
	resetMissedBlinds() call.
	(PokerGame.payBlind): changed player.missed_blinds = None to
	resetMissedBlinds() call.
	(PokerGame.updateBlinds.updateMissed): Added increment of count.

2008-07-13  Loic Dachary <loic@dachary.org>

	* pokerengine/pokergame.py, tests/test-game.py.in:
	  setMuckableSerials converts its argument into a list and copies
	  it to prevent undesirable side effects if the caller later
	  modifies the list

2008-05-19  Loic Dachary <loic@dachary.org>

	* tests/coverage.py: upgrade from
	  http://nedbatchelder.com/code/modules/coverage.html

2008-05-09  Loic Dachary <loic@dachary.org>

	* AUTHORS: update names and dates

2008-04-28  Loic Dachary <loic@dachary.org>

	* Release 1.2.0

	* pokerengine/pokergame.py: V full over W use plural
	* pokerconfigupgrade.8.in: nroff comments are \" not '''
	* debian/copyright: Make lintian happy about the copyright notice.
	* tests/test-game.py.in: Fix message strings for Full House.
	* pokerengine/pokergame.py: Vs full of Ws is better than Full Vs
	  over Ws.

2008-04-20  Loic Dachary <loic@dachary.org>

	* debian/control, debian/control.unstable: standard is now 3.7.3
	* debian/control: s/python/Python/
	* COPYING, ChangeLog, Makefile.am, NEWS,
	  conf/poker..01-.02-no-limit.xml,
	  conf/poker..01-.02-pot-limit.xml, conf/poker..02-.04-limit.xml,
	  conf/poker..02-.04-no-limit.xml,
	  conf/poker..02-.04-pot-limit.xml, conf/poker..02..04-limit.xml,
	  conf/poker..05-.10-limit.xml, conf/poker..05-.10-no-limit.xml,
	  conf/poker..05-.10-pot-limit.xml, conf/poker..05..10-limit.xml,
	  conf/poker..10-.25-limit.xml, conf/poker..10-.25-no-limit.xml,
	  conf/poker..10-.25-pot-limit.xml, conf/poker..25-.50-limit.xml,
	  conf/poker..25-.50-no-limit.xml,
	  conf/poker..25-.50-pot-limit.xml, conf/poker..25..50-limit.xml,
	  conf/poker..50-1-limit.xml, conf/poker..50-1-no-limit.xml,
	  conf/poker..50-1-pot-limit.xml, conf/poker..50.1-limit.xml,
	  conf/poker.0-0-limit.xml, conf/poker.1-2-limit.xml,
	  conf/poker.1-2-no-limit.xml, conf/poker.1-2-pot-limit.xml,
	  conf/poker.10-15-limit.xml, conf/poker.10-15-pot-limit.xml,
	  conf/poker.10-20-limit.xml, conf/poker.10-20-no-limit.xml,
	  conf/poker.10-20-pot-limit.xml, conf/poker.100-200-limit.xml,
	  conf/poker.100-200-no-limit.xml,
	  conf/poker.100-200-pot-limit.xml, conf/poker.15-30-limit.xml,
	  conf/poker.150-300-limit.xml, conf/poker.2-4-limit.xml,
	  conf/poker.2-4-no-limit.xml, conf/poker.2-4-pot-limit.xml,
	  conf/poker.200-400-limit.xml, conf/poker.3-6-limit.xml,
	  conf/poker.3-6-no-limit.xml, conf/poker.3-6-pot-limit.xml,
	  conf/poker.30-60-limit.xml, conf/poker.30-60-no-limit.xml,
	  conf/poker.30-60-pot-limit.xml, conf/poker.4-8-limit.xml,
	  conf/poker.5-10-limit.xml, conf/poker.5-10-no-limit.xml,
	  conf/poker.5-10-pot-limit.xml, conf/poker.50-100-limit.xml,
	  conf/poker.50-100-no-limit.xml, conf/poker.50-100-pot-limit.xml,
	  conf/poker.7stud.xml, conf/poker.ante-.04-.08-limit.xml,
	  conf/poker.ante-.10-.20-limit.xml,
	  conf/poker.ante-.25-.50-limit.xml,
	  conf/poker.ante-.50-1-limit.xml, conf/poker.ante-1-2-limit.xml,
	  conf/poker.ante-10-20-limit.xml, conf/poker.ante-2-4-limit.xml,
	  conf/poker.ante-3-6-limit.xml, conf/poker.ante-30-60-limit.xml,
	  conf/poker.ante-5-10-limit.xml, conf/poker.holdem.xml,
	  conf/poker.level-001.xml, conf/poker.level-10-15-pot-limit.xml,
	  conf/poker.level-10-20-no-limit.xml,
	  conf/poker.level-15-30-no-limit.xml,
	  conf/poker.level-2-4-limit.xml, conf/poker.level-no-limit.xml,
	  conf/poker.levels-blinds.xml, conf/poker.omaha.xml,
	  conf/poker.omaha8.xml, conf/poker.payouts.xml,
	  conf/poker.razz.xml, configure.ac, debian/changelog,
	  examples/simple.py, pokerconfigupgrade.8.in,
	  pokerconfigupgrade.in, pokerengine/Makefile.am,
	  pokerengine/__init__.py, pokerengine/pokercards.py,
	  pokerengine/pokerchips.py, pokerengine/pokerengineconfig.py,
	  pokerengine/pokerrake.py, pokerengine/pokertournament.py,
	  pokerengine/version.py, tests/Makefile.am, tests/allin.py.in,
	  tests/blinds.py.in, tests/bugs.py.in, tests/buyin.py.in,
	  tests/chips.py.in, tests/deal.py.in, tests/eval.py.in,
	  tests/history.py.in, tests/muck.py.in, tests/positions.py.in,
	  tests/run.in, tests/sit.py.in, tests/test-gamehistory.py.in,
	  tests/test-i18n.py.in, tests/test-pokercards.py.in,
	  tests/test-pokerchips.py.in, tests/test-pokerengineconfig.py.in,
	  tests/test-pokerplayer.py.in, tests/test-pokerrake.py.in,
	  tests/test-pokertournament.py.in, tests/test-version.py.in,
	  tests/tournament.py.in, tests/upgrades.py.in: GPLv2+ to GPLv3+
	* pokerengine/pokergame.py, tests/test-game.py.in: implement method
	  minMoney to get the minimum amount of money a user must have to
	  be dealt a hand at the table.

2007-05-16  Loic Dachary  <loic@dachary.org>

	* Release 1.1.0

	* Support for more distributions.

2007-04-26  Loic Dachary  <loic@dachary.org>

	* Release 1.0.25

	* pokerengine/pokertournament.py: implement updateBreaks and new
	  states WAIT_BREAK and BREAK. 

	* pokerengine/pokertournament.py: provides old and new states 
	  as argument when the changestate callback in invoked

	* tests/test-pokertournament.py.in: test case for updateBreaks

2007-04-25  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokertournament.py: Store tournament break information.

2007-04-20  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokertournament.py: Wrap time() calls in seconds()
	  module function for substitution in tests.

2007-03-12  Loic Dachary  <loic@dachary.org>

	* Release 1.0.24

	* pokerengine/pokergame.py: 
	#
        # Rationale of player.sit_out_next_turn == False
        # This condition happens when the player sitout + sit
        # while not having the position during the blind/ante round it.
        # In this particular case, instead of instructing her to wait
        # for the first round, she sits back. This is important because
        # she was included in the player list at the begining of the turn.
        # If she is marked wait_for = "first_round", she will be removed 
        # from the player list at the end of the blind/ante round, which
        # is exactly the opposite of what we want.
        #


2007-03-06  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokergame.py: s/raise/raises/ and update corresponding
	  translations.

2007-02-16  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokergame.py: function isEndOrNull : not in a turn
	END or NULL state.  function isInTurn : same as isRunning but
	includes MUCK state.  sitOutNextTurn does not sit_out_next turn if
	in muck state regardless of the player status.  remove useless
	test self.isRunning() and self.state != GAME_STATE_MUCK.  change
	beginturn warning to include MUCK state.
	
	* poker-engine/tests/test-game.py.in: muck state sitout test
	requires player_list set
	
2007-02-01  Loic Dachary  <loic@dachary.org>

	* Release 1.0.23

	* pokerengine/pokergame.py:
	bugous fold or check must not try to get serial in position as player_list may not exist
	https://gna.org/bugs/?7809 (bug report of 2007/01/11).

	* pokerengine/pokergame.py:
	historyAddNoDuplicate so that position events are not repeated
	https://gna.org/bugs/?7809 (bug report of 2007/01/03 16:54)
	http://www.pok3d.com/rt/Ticket/Display.html?id=2106
	

2007-01-31  Loic Dachary  <loic@dachary.org>

	* tests/blinds.py.in, pokerengine/pokergame.py:
	ignore players entering during the blind round
	https://gna.org/bugs/?7809

2007-01-26  Loic Dachary  <loic@dachary.org>

	* conf/poker.levels-blinds.xml: add more levels

2007-01-26  Loic Dachary  <loic@dachary.org>

	* conf/poker.levels-blinds.xml: level 3 big blind was 10

2007-01-25  griim  <griim@mekensleep.com>

	* pokerengine/pokergame.py: i18n support

2007-01-23  Loic Dachary  <loic@dachary.org>

	* debian/control.edgy: add python-all & python-central

	* debian/changelog: add python-all

	* configure.ac: copyright update

	* conf/poker..01-.02-no-limit.xml, conf/poker..01-.02-pot-limit.xml, conf/poker..02-.04-limit.xml, conf/poker..02-.04-no-limit.xml, conf/poker..02-.04-pot-limit.xml, conf/poker..02..04-limit.xml, conf/poker..05-.10-limit.xml, conf/poker..05-.10-no-limit.xml, conf/poker..05-.10-pot-limit.xml, conf/poker..05..10-limit.xml, conf/poker..10-.25-limit.xml, conf/poker..10-.25-no-limit.xml, conf/poker..10-.25-pot-limit.xml, conf/poker..25-.50-limit.xml, conf/poker..25-.50-no-limit.xml, conf/poker..25-.50-pot-limit.xml, conf/poker..25..50-limit.xml, conf/poker..50-1-limit.xml, conf/poker..50-1-no-limit.xml, conf/poker..50-1-pot-limit.xml, conf/poker..50.1-limit.xml, conf/poker.0-0-limit.xml, conf/poker.1-2-limit.xml, conf/poker.1-2-no-limit.xml, conf/poker.1-2-pot-limit.xml, conf/poker.10-15-limit.xml, conf/poker.10-15-pot-limit.xml, conf/poker.10-20-limit.xml, conf/poker.10-20-no-limit.xml, conf/poker.10-20-pot-limit.xml, conf/poker.100-200-limit.xml, conf/poker.100-200-no-limit.xml, conf/poker.100-200-pot-limit.xml, conf/poker.15-30-limit.xml, conf/poker.150-300-limit.xml, conf/poker.2-4-limit.xml, conf/poker.2-4-no-limit.xml, conf/poker.2-4-pot-limit.xml, conf/poker.200-400-limit.xml, conf/poker.3-6-limit.xml, conf/poker.3-6-no-limit.xml, conf/poker.3-6-pot-limit.xml, conf/poker.30-60-limit.xml, conf/poker.30-60-no-limit.xml, conf/poker.30-60-pot-limit.xml, conf/poker.4-8-limit.xml, conf/poker.5-10-limit.xml, conf/poker.5-10-no-limit.xml, conf/poker.5-10-pot-limit.xml, conf/poker.50-100-limit.xml, conf/poker.50-100-no-limit.xml, conf/poker.50-100-pot-limit.xml, conf/poker.7stud.xml, conf/poker.ante-.04-.08-limit.xml, conf/poker.ante-.10-.20-limit.xml, conf/poker.ante-.25-.50-limit.xml, conf/poker.ante-.50-1-limit.xml, conf/poker.ante-1-2-limit.xml, conf/poker.ante-10-20-limit.xml, conf/poker.ante-2-4-limit.xml, conf/poker.ante-3-6-limit.xml, conf/poker.ante-30-60-limit.xml, conf/poker.ante-5-10-limit.xml, conf/poker.holdem.xml, conf/poker.level-001.xml, conf/poker.level-10-15-pot-limit.xml, conf/poker.level-10-20-no-limit.xml, conf/poker.level-15-30-no-limit.xml, conf/poker.level-2-4-limit.xml, conf/poker.level-no-limit.xml, conf/poker.levels-blinds.xml, conf/poker.omaha.xml, conf/poker.omaha8.xml, conf/poker.payouts.xml, conf/poker.razz.xml:
	version bump

	* debian/control.edgy: edgy must use pycentral

2007-01-23  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokergame.py: fix https://gna.org/support/?1450
	Sit out while in muck state must be denied by the server.
	getPotAmount may return what's in the stack if in muck state.
	roundCap returns zero if in muck state.

	* tests/test-game.py.in: test sit out while in muck state

	* tests/test-game.py.in:
	testGetPotAmount test the case where the game is not running

	* pokerengine/__init__.py, debian/changelog, NEWS, ChangeLog:
	version bump

2007-01-18  Loic Dachary  <loic@dachary.org>

	* Release 1.0.22

	* tests/history.py.in: Rake is no longer displayed in cents

	* tests/test-gamehistory.py.in:
	test history2Resolve safeguard against non existent hands
	add coverage report to standalone tests emacs invocation

	* tests/test-game.py.in: testUpdateHistoryEnd

	* pokerengine/pokergame.py: rake is no longer displayed in cents

	if a player at showdown does not have cards (happens in client side),
	history2Resolve silently ignores it refuses to sitOut a player while
	paying the blinds

	patch the "end" entry of the history when in client mode (not
	directing) because the information is not available when the end
	history event is inserted

2007-01-16  Cedric Pinson  <cpinson@freesheep.org>

	* Update gentoo package

2007-01-16  Loic Dachary  <loic@dachary.org>

	* tests/test-gamehistory.py.in:
	specific tests for historyReduce of blind/blind_request entries

	* tests/test-game.py.in: fix test blinds according to new policy :
	don't sit out when out of position while the blind/ante phase

2007-01-15  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokergame.py: return false status on error for
	sitout http://www.pok3d.com/rt/Ticket/Display.html?id=1860 and
	https://gna.org/bugs/?7811

	* tests/test-game.py.in: in client, the end of the blindante turn
	may occur only if the betsEqual predicate returns true otherwise
	it will be out of sync with the server, therefore the other player
	must also be allin

	* pokerengine/pokergame.py: add tolerance to "levels" tag as well
	as "level" in client, the end of the blindante turn may occur only
	if the betsEqual predicate returns true otherwise it will be out
	of sync with the server

	* conf/poker..01-.02-no-limit.xml, conf/poker..01-.02-pot-limit.xml, conf/poker..02-.04-limit.xml, conf/poker..02-.04-no-limit.xml, conf/poker..02-.04-pot-limit.xml, conf/poker..02..04-limit.xml, conf/poker..05-.10-limit.xml, conf/poker..05-.10-no-limit.xml, conf/poker..05-.10-pot-limit.xml, conf/poker..05..10-limit.xml, conf/poker..10-.25-limit.xml, conf/poker..10-.25-no-limit.xml, conf/poker..10-.25-pot-limit.xml, conf/poker..25-.50-limit.xml, conf/poker..25-.50-no-limit.xml, conf/poker..25-.50-pot-limit.xml, conf/poker..25..50-limit.xml, conf/poker..50-1-limit.xml, conf/poker..50-1-no-limit.xml, conf/poker..50-1-pot-limit.xml, conf/poker..50.1-limit.xml, conf/poker.0-0-limit.xml, conf/poker.1-2-limit.xml, conf/poker.1-2-no-limit.xml, conf/poker.1-2-pot-limit.xml, conf/poker.10-15-limit.xml, conf/poker.10-15-pot-limit.xml, conf/poker.10-20-limit.xml, conf/poker.10-20-no-limit.xml, conf/poker.10-20-pot-limit.xml, conf/poker.100-200-limit.xml, conf/poker.100-200-no-limit.xml, conf/poker.100-200-pot-limit.xml, conf/poker.15-30-limit.xml, conf/poker.150-300-limit.xml, conf/poker.2-4-limit.xml, conf/poker.2-4-no-limit.xml, conf/poker.2-4-pot-limit.xml, conf/poker.200-400-limit.xml, conf/poker.3-6-limit.xml, conf/poker.3-6-no-limit.xml, conf/poker.3-6-pot-limit.xml, conf/poker.30-60-limit.xml, conf/poker.30-60-no-limit.xml, conf/poker.30-60-pot-limit.xml, conf/poker.4-8-limit.xml, conf/poker.5-10-limit.xml, conf/poker.5-10-no-limit.xml, conf/poker.5-10-pot-limit.xml, conf/poker.50-100-limit.xml, conf/poker.50-100-no-limit.xml, conf/poker.50-100-pot-limit.xml, conf/poker.7stud.xml, conf/poker.ante-.04-.08-limit.xml, conf/poker.ante-.10-.20-limit.xml, conf/poker.ante-.25-.50-limit.xml, conf/poker.ante-.50-1-limit.xml, conf/poker.ante-1-2-limit.xml, conf/poker.ante-10-20-limit.xml, conf/poker.ante-2-4-limit.xml, conf/poker.ante-3-6-limit.xml, conf/poker.ante-30-60-limit.xml, conf/poker.ante-5-10-limit.xml, conf/poker.holdem.xml, conf/poker.level-10-15-pot-limit.xml, conf/poker.level-10-20-no-limit.xml, conf/poker.level-15-30-no-limit.xml, conf/poker.level-2-4-limit.xml, conf/poker.level-no-limit.xml, conf/poker.omaha.xml, conf/poker.omaha8.xml, conf/poker.payouts.xml, conf/poker.razz.xml:
	version bump

	* conf/poker.levels-blinds.xml:
	implement blind structure as shown at https://gna.org/task/index.php?4231

	* conf/poker.level-001.xml:
	no limit tournament with predefined levels and 10 minutes intervals

	* Makefile.am: copyright updates

2007-01-10  Loic Dachary  <loic@dachary.org>

	* pokerengine/__init__.py, debian/changelog, ChangeLog, NEWS:
	1.0.22 version bump

2007-01-08  Loic Dachary  <loic@dachary.org>

	* Release 1.0.21

	* pokerengine/pokergame.py: use pformat instead of pprint so that
	messages are formated with the proper prefix

2007-01-07  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokergame.py: no missed blinds on tournament tables

2007-01-05  Loic Dachary  <loic@dachary.org>

	* debian/python-poker-engine.preinst: don't upgrade version 21 configuration 
	files, just replace them

2007-01-02  Loic Dachary  <loic@dachary.org>

	* tests/test-game.py.in:
	test positions (first & last) when blinds are allin

	* tests/blinds.py.in: rename test for consistency

	* pokerengine/pokergame.py:
	first to talk in round is first in game after big blind
	last to talk is the player in game just before the player in position

	* conf/poker..01-.02-no-limit.xml, conf/poker..01-.02-pot-limit.xml, conf/poker..02-.04-limit.xml, conf/poker..02-.04-no-limit.xml, conf/poker..02-.04-pot-limit.xml, conf/poker..02..04-limit.xml, conf/poker..05-.10-limit.xml, conf/poker..05-.10-no-limit.xml, conf/poker..05-.10-pot-limit.xml, conf/poker..05..10-limit.xml, conf/poker..10-.25-limit.xml, conf/poker..10-.25-no-limit.xml, conf/poker..10-.25-pot-limit.xml, conf/poker..25-.50-limit.xml, conf/poker..25-.50-no-limit.xml, conf/poker..25-.50-pot-limit.xml, conf/poker..25..50-limit.xml, conf/poker..50-1-limit.xml, conf/poker..50-1-no-limit.xml, conf/poker..50-1-pot-limit.xml, conf/poker..50.1-limit.xml, conf/poker.0-0-limit.xml, conf/poker.1-2-limit.xml, conf/poker.1-2-no-limit.xml, conf/poker.1-2-pot-limit.xml, conf/poker.10-15-limit.xml, conf/poker.10-15-pot-limit.xml, conf/poker.10-20-limit.xml, conf/poker.10-20-no-limit.xml, conf/poker.10-20-pot-limit.xml, conf/poker.100-200-limit.xml, conf/poker.100-200-no-limit.xml, conf/poker.100-200-pot-limit.xml, conf/poker.15-30-limit.xml, conf/poker.150-300-limit.xml, conf/poker.2-4-limit.xml, conf/poker.2-4-no-limit.xml, conf/poker.2-4-pot-limit.xml, conf/poker.200-400-limit.xml, conf/poker.3-6-limit.xml, conf/poker.3-6-no-limit.xml, conf/poker.3-6-pot-limit.xml, conf/poker.30-60-limit.xml, conf/poker.30-60-no-limit.xml, conf/poker.30-60-pot-limit.xml, conf/poker.4-8-limit.xml, conf/poker.5-10-limit.xml, conf/poker.5-10-no-limit.xml, conf/poker.5-10-pot-limit.xml, conf/poker.50-100-limit.xml, conf/poker.50-100-no-limit.xml, conf/poker.50-100-pot-limit.xml, conf/poker.7stud.xml, conf/poker.ante-.04-.08-limit.xml, conf/poker.ante-.10-.20-limit.xml, conf/poker.ante-.25-.50-limit.xml, conf/poker.ante-.50-1-limit.xml, conf/poker.ante-1-2-limit.xml, conf/poker.ante-10-20-limit.xml, conf/poker.ante-2-4-limit.xml, conf/poker.ante-3-6-limit.xml, conf/poker.ante-30-60-limit.xml, conf/poker.ante-5-10-limit.xml, conf/poker.holdem.xml, conf/poker.level-10-15-pot-limit.xml, conf/poker.level-10-20-no-limit.xml, conf/poker.level-15-30-no-limit.xml, conf/poker.level-2-4-limit.xml, conf/poker.level-no-limit.xml, conf/poker.levels-blinds.xml, conf/poker.omaha.xml, conf/poker.omaha8.xml, conf/poker.payouts.xml, conf/poker.razz.xml:
	version bump

2006-12-26  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokertournament.py:
	shuffle players before filling the tables

	* tests/test-pokertournament.py.in: don't shuffle players

2006-12-14  Loic Dachary  <loic@dachary.org>

	* tests/tournament.py.in, tests/test-pokertournament.py.in:
	rake & buy_in are stored in tournament object

	* pokerengine/pokertournament.py: rake & buy_in are stored

	* pokerengine/pokergame.py:
	indirection for shuffler so that it's easier to replace it

2006-12-13  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokertournament.py: update finished_time

	* tests/tournament.py.in: typo

	* tests/tournament.py.in: rank prize is cached by buy_in

	* tests/test-pokertournament.py.in:
	test tournament canceling and regular tournament launch

	* pokerengine/pokertournament.py:
	implement tournament canceling if the number of registered players is below the minimum (2 by default)
	callback_cancel is run *before* the player list is re-initialized

2006-12-12  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokertournament.py, tests/test-pokertournament.py.in:
	cache per buy_in

	* pokerengine/pokertournament.py:
	prize_min sets the minimum prize pool, regardless of the number of players and their buy_in

	* tests/tournament.py.in, tests/test-pokertournament.py.in:
	cope with cached prize pool

	* pokerengine/pokertournament.py: cache prize pool

2006-12-11  Loic Dachary  <loic@dachary.org>

	* tests/test-pokertournament.py.in: accomodate changes in tournament.py

	* pokerengine/pokertournament.py:
	add the players_min attribute (minimum number of players in a regular tournament)
	canRun: if registered is above players_min, start regular tournament
	canRegister: can't register if registered is above quota
	REGISTERING -> RUNNING is the updateRunning function for use by application

2006-12-04  Loic Dachary  <loic@dachary.org>

	* conf/poker.level-15-30-no-limit.xml: small is 1500

2006-12-02  Loic Dachary  <loic@dachary.org>

	* debian/changelog, pokerengine/__init__.py, NEWS, ChangeLog:
	version bump

2006-11-18  Loic Dachary  <loic@dachary.org>

	* Release 1.0.20

	* tests/test-game.py.in, pokerengine/pokergame.py: Three players
	pre-flop. Two allin because autopaying the blinds. The third must
	be given a chance to talk.

	* conf/poker..01-.02-no-limit.xml, conf/poker..01-.02-pot-limit.xml, conf/poker..02-.04-limit.xml, conf/poker..02-.04-no-limit.xml, conf/poker..02-.04-pot-limit.xml, conf/poker..02..04-limit.xml, conf/poker..05-.10-limit.xml, conf/poker..05-.10-no-limit.xml, conf/poker..05-.10-pot-limit.xml, conf/poker..05..10-limit.xml, conf/poker..10-.25-limit.xml, conf/poker..10-.25-no-limit.xml, conf/poker..10-.25-pot-limit.xml, conf/poker..25-.50-limit.xml, conf/poker..25-.50-no-limit.xml, conf/poker..25-.50-pot-limit.xml, conf/poker..25..50-limit.xml, conf/poker..50-1-limit.xml, conf/poker..50-1-no-limit.xml, conf/poker..50-1-pot-limit.xml, conf/poker..50.1-limit.xml, conf/poker.0-0-limit.xml, conf/poker.1-2-limit.xml, conf/poker.1-2-no-limit.xml, conf/poker.1-2-pot-limit.xml, conf/poker.10-15-limit.xml, conf/poker.10-15-pot-limit.xml, conf/poker.10-20-limit.xml, conf/poker.10-20-no-limit.xml, conf/poker.10-20-pot-limit.xml, conf/poker.100-200-limit.xml, conf/poker.100-200-no-limit.xml, conf/poker.100-200-pot-limit.xml, conf/poker.15-30-limit.xml, conf/poker.150-300-limit.xml, conf/poker.2-4-limit.xml, conf/poker.2-4-no-limit.xml, conf/poker.2-4-pot-limit.xml, conf/poker.200-400-limit.xml, conf/poker.3-6-limit.xml, conf/poker.3-6-no-limit.xml, conf/poker.3-6-pot-limit.xml, conf/poker.30-60-limit.xml, conf/poker.30-60-no-limit.xml, conf/poker.30-60-pot-limit.xml, conf/poker.4-8-limit.xml, conf/poker.5-10-limit.xml, conf/poker.5-10-no-limit.xml, conf/poker.5-10-pot-limit.xml, conf/poker.50-100-limit.xml, conf/poker.50-100-no-limit.xml, conf/poker.50-100-pot-limit.xml, conf/poker.7stud.xml, conf/poker.ante-.04-.08-limit.xml, conf/poker.ante-.10-.20-limit.xml, conf/poker.ante-.25-.50-limit.xml, conf/poker.ante-.50-1-limit.xml, conf/poker.ante-1-2-limit.xml, conf/poker.ante-10-20-limit.xml, conf/poker.ante-2-4-limit.xml, conf/poker.ante-3-6-limit.xml, conf/poker.ante-30-60-limit.xml, conf/poker.ante-5-10-limit.xml, conf/poker.holdem.xml, conf/poker.level-10-15-pot-limit.xml, conf/poker.level-10-20-no-limit.xml, conf/poker.level-15-30-no-limit.xml, conf/poker.level-2-4-limit.xml, conf/poker.level-no-limit.xml, conf/poker.levels-blinds.xml, conf/poker.omaha.xml, conf/poker.omaha8.xml, conf/poker.payouts.xml, conf/poker.razz.xml:
	version bump

2006-10-12  Loic Dachary  <loic@dachary.org>

	* debian/control, debian/control.breezy, debian/control.dapper, debian/control.edgy, debian/control.etch, debian/control.hoary, debian/control.sarge, debian/control.unstable:
	clean depends

2006-09-22  Cedric Pinson  <cpinson@freesheep.org>

	* gentoo/dev-games/poker-engine/poker-engine-1.0.16-r1.ebuild:
	* gentoo/dev-games/poker-engine/poker-engine-1.0.20-r1.ebuild:
	update gentoo package

2006-09-18  Loic Dachary  <loic@dachary.org>

	* ChangeLog, NEWS, debian/changelog, pokerengine/__init__.py:
	version bump

2006-09-18  cpinson  <cpinson@call>

	* gentoo/dev-games/poker-engine/poker-engine-1.0.14-r1.ebuild:
	remove old package

2006-09-13  Loic Dachary  <loic@dachary.org>

	* Release 1.0.19

	* tests/test-game.py.in, pokerengine/pokergame.py:
	use platform.system instead of os.name

2006-09-12  Loic Dachary  <loic@dachary.org>

	* debian/changelog: edgy & etch control files

	* debian/control.etch, debian/control.edgy: edgy & etch

	* conf/poker.level-10-20-no-limit.xml: 10-20 blinds

2006-09-08  Loic Dachary  <loic@dachary.org>

	* conf/poker.level-15-30-no-limit.xml: bb is 30

2006-09-07  Loic Dachary  <loic@dachary.org>

	* conf/poker.level-15-30-no-limit.xml: no round cap in no-limit

	* conf/poker.level-15-30-no-limit.xml:
	1500/3000 instead of bugous 1000/1500

	* conf/poker.level-no-limit.xml: 10-15 for first level is meaningless

2006-09-07  Loic Dachary  <loic@dachary.org>

	* conf/poker.razz.xml: razz

	* ChangeLog, NEWS, debian/changelog, pokerengine/__init__.py, pokerengine/pokergame.py:
	version bump

2006-09-04  Loic Dachary  <loic@dachary.org>

	* Release 1.0.18

	* pokerengine/pokergame.py:  uncalled safeguard checks that the value
	  is lower than the pot instead of strictly equal.

2006-08-31  Loic Dachary  <loic@dachary.org>

	* debian/changelog, NEWS, ChangeLog, pokerengine/__init__.py:
	bump version

2006-08-30  Loic Dachary  <loic@dachary.org>

	* Release 1.0.17

	* tests/test-game.py.in:
	Adjust tests depending on rake being counted twice.

	* pokerengine/pokergame.py:
	subtract rake from pot when win because fold
	subtrace rake from serial2delta

2006-08-18  Loic Dachary  <loic@dachary.org>

	* tests/test-game.py.in: pokercards.PokerCards instead of PokerCards

2006-08-18  Loic Dachary  <loic@dachary.org>

	* Release 1.0.16

	* pokerengine/pokergame.py:
	 Special case : a player folds on the turn and the only other player left in the game
	 did not bet. There is no reason for the player to fold : he forfeits a pot that
	 he may win. Nevertheless, it can happen. In this case, and only if there is at least
	 one player allin, the only other player left is awarded what looks like an uncalled
	 bet.
	 In this case the uncalled_serial is zero.

2006-08-17  Loic Dachary  <loic@dachary.org>

	* tests/test-game.py.in:
	        """ Test Poker Game : player folds (although he could check) while a player is allin and
	        another player is behind him. The turn ends now, the last player is not asked for his action.

	* pokerengine/pokergame.py:
	If there is only one player left to talk, it is meaningless to ask for his action, unless he something to call.

2006-08-17  Cedric Pinson  <cpinson@allin>

	* ChangeLog, tests/Makefile.am, tests/bugs.py.in:
	put the uncalled bug in bugs.py.in and remove bugs.py from make check

2006-08-17  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokergame.py (PokerGame.__roundFinished): If there
	is only one player left to talk, it is meaningless to ask for his
	action, unless he something to call.

2006-08-16  Cedric Pinson  <cpinson@freesheep.org>

	* gentoo/dev-games/poker-engine/poker-engine-1.0.14-r1.ebuild, gentoo/dev-games/poker-engine/poker-engine-1.0.16-r1.ebuild:
	add ebuild for version 1.0.16

2006-08-14  loic  <loic@gnu.org>

	* ChangeLog: *** empty log message ***

	* tests/test-game.py.in:
	In test bet to pot, remove useless / impossible tests of bets handled as dead blinds.
	""" Test Poker Game : Allin with dead blind and lost to the winner although the winner has less money """
	""" Test Poker Game : dead blind + a player has uncalled bet and is not the winner. """

	* tests/bugs.py.in: Bugs integrated to test-game.py.in

	* pokerengine/pokergame.py:
	Dead blinds are not counted as a player contribution to the pot. As a consequence, the dead blinds are awarded to the winner(s) of the first / main pot. money2bet and bet2pot take an additional argument (dead_money) that clarifies the handling of the dead blinds.

2006-08-14  izidor79  <izidor79@letrigre>

	* pokerengine/pokergame.py:
	changed max bet to sys.maxin instead of 10000000

2006-08-14  Loic Dachary  <loic@dachary.org>

	* tests/test-game.py.in:
	In test bet to pot, remove useless / impossible tests of bets handled as dead blinds.
	""" Test Poker Game : Allin with dead blind and lost to the winner although the winner has less money """
	""" Test Poker Game : dead blind + a player has uncalled bet and is not the winner. """

	* tests/bugs.py.in: Bugs integrated to test-game.py.in

	* pokerengine/pokergame.py:
	Dead blinds are not counted as a player contribution to the pot. As a consequence, the dead blinds are awarded to the winner(s) of the first / main pot. money2bet and bet2pot take an additional argument (dead_money) that clarifies the handling of the dead blinds.

2006-08-14  izidor79  <izidor79@allin>

	* pokerengine/pokergame.py:
	changed max bet to sys.maxin instead of 10000000

2006-08-08  proppy  <proppy@allin>

	* pokerengine/pokergame.py: test fix uncalled bug

2006-08-03  proppy  <proppy@allin>

	* pokerengine/pokergame.py: reverted

	* pokerengine/pokergame.py:
	added winner.dead to self.uncalled to compare against side_pot[winner]

2006-08-02  proppy  <proppy@allin>

	* tests/bugs.py.in: removed log

	* tests/bugs.py.in: better values

	* tests/bugs.py.in: simpler test

	* tests/bugs.py.in: TestBug -> TestBugUncalled

	* configure.ac, tests/Makefile.am: added bugs.py

	* tests/bugs.py.in: added bugs.py for bug entry

2006-07-25  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokergame.py: Distribute all the rake.

2006-07-24  Loic Dachary  <loic@dachary.org>

	* debian/rules: call autotools with proper version

2006-07-23  Loic Dachary  <loic@dachary.org>

	* debian/control.breezy, debian/control.hoary:
	fix xslt depends for hoary / breezy

2006-07-21  Loic Dachary  <loic@dachary.org>

	* debian/rules: dy_python is mandatory

	* debian/python-poker-engine.postinst:
	pycentral work must be done before pokerconfigupgrade can be called

	* debian/control:
	Add XB-Python-Version although supposed to be for binary only (says http://wiki.debian.org/DebianPython/NewPolicy)

	* debian/control: explicit list

	* debian/control: poker-engine-common once existed

	* configure.ac: define pkgsysconfdir

	* poker-engine.pc.in: pkgsysconfdir

	* tests/tournament.py.in:
	use predefined decks to speed up tournament resolution and avoid random behaviour

	* ChangeLog: *** empty log message ***

	* tests/allin.py.in, tests/blinds.py.in, tests/buyin.py.in, tests/chips.py.in, tests/deal.py.in, tests/eval.py.in, tests/history.py.in, tests/run.in, tests/sit.py.in, tests/test-game.py.in, tests/test-gamehistory.py.in, tests/test-pokercards.py.in, tests/test-pokerchips.py.in, tests/test-pokerengineconfig.py.in, tests/test-pokerplayer.py.in, tests/test-pokerrake.py.in, tests/test-pokertournament.py.in, tests/test-version.py.in, tests/tournament.py.in, tests/upgrades.py.in:
	exit status reflect tests results

	* tests/positions.py.in:
	use pre-defined decks to avoid random results in some specific cases

	* debian/rules: specific name

	* tests/allin.py.in, tests/blinds.py.in, tests/buyin.py.in, tests/chips.py.in, tests/deal.py.in, tests/eval.py.in, tests/history.py.in, tests/muck.py.in, tests/positions.py.in, tests/run.in, tests/sit.py.in, tests/test-game.py.in, tests/test-gamehistory.py.in, tests/test-pokercards.py.in, tests/test-pokerchips.py.in, tests/test-pokerengineconfig.py.in, tests/test-pokerplayer.py.in, tests/test-pokerrake.py.in, tests/test-pokertournament.py.in, tests/test-version.py.in, tests/tournament.py.in, tests/upgrades.py.in:
	use non common name for verbose

	* tests/test-pokerrake.py.in: get from srcdir

	* tests/Makefile.am: pokerrake.py

	* pokerengine/pokerengineconfig.py: stringify

	* debian/control.unstable, debian/rules, debian/control, debian/control.breezy, debian/control.dapper, debian/control.hoary, debian/control.sarge:
	fix python depends

	* tests/run.in: test verbosity

	* Makefile.am: uninstall conf files

	* ChangeLog: *** empty log message ***

	* Makefile.am: specific python m4 files are no longer needed

	* debian/rules:
	create config dir if needed (because there is no longer custom files in this directory it may be omited by checkout)

	* ChangeLog, NEWS, debian/python-poker-engine.install, debian/rules.mk:
	rake implementation

	* tests/allin.py.in, tests/blinds.py.in, tests/buyin.py.in, tests/chips.py.in, tests/deal.py.in, tests/eval.py.in, tests/history.py.in, tests/muck.py.in, tests/positions.py.in, tests/sit.py.in, tests/test-data/pokerrake.py, tests/test-game.py.in, tests/test-gamehistory.py.in, tests/test-pokercards.py.in, tests/test-pokerchips.py.in, tests/test-pokerengineconfig.py.in, tests/test-pokerplayer.py.in, tests/test-pokertournament.py.in, tests/test-version.py.in, tests/tournament.py.in, tests/upgrades.py.in:
	control verbosity and individual launching

	* tests/test-pokerrake.py.in: Poker rake engine.

	* tests/run.in:
	Control test verbosity. Only report 100% coverage if default verbosity (i.e. max verbosity) is set.

	* tests/Makefile.am:
	Add pokerrake.py, export top_srcdir for tests and kill tests leftovers

	* debian/rules:
	Rely on cdbs alone instead of complex rewrite depending on python versions.

	* pokerengine/version.py: Verbosity control.

	* pokerengine/pokertournament.py: Sort entries + add pokerrake.py

	* pokerengine/pokerrake.py: Rake engine.

	* pokerengine/pokergame.py: Copyright fixes.
	Set and update uncalled amount and serial field to avoid complex guessing.
	Implement rake.
	Allow for negative verbosity.
	Add last round field to side pots structure.

	* pokerengine/pokerengineconfig.py: Allow for negative verbosity.

	* pokerengine/pokerchips.py, pokerengine/pokercards.py:
	Copyright fixes.

	* pokerengine/Makefile.am: Sort entries + add pokerrake.py

	* examples/simple.py: Fix path to run from top level source dir.
	Buy in is in cent.

	* debian/python-poker-engine.postrm, debian/python-poker-engine.preinst, debian/python-poker-engine.postinst, debian/python-poker-engine.dirs:
	Remove python version tweaks.

	* debian/pycompat: pycentral

	* debian/control.unstable, debian/control.sarge, debian/control.hoary, debian/control.dapper, debian/control.breezy:
	Remove python version tweaks

	* debian/control, pokerconfigupgrade.in, poker-engine.pc.in:
	Remove python version tweaks.

	* configure.ac: Remove python version tweaks.
	Depend on pypoker-eval 132.

	* Makefile.am: Remove python version tweaks.

2006-06-22  Loic Dachary  <loic@dachary.org>

	* Makefile.am, ChangeLog: no arch .pc

	* Makefile.am (pkgconfigdir): in /usr/share instead of /usr/lib because
	  the package is no-arch

Mon Jun 12 2006  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokergame.py (PokerGame.endState): set current_round to -2
	  Most of the time this is done by muckState. But when in heads up with one
	  player having less money than the blind in a tournament, state transition
	  goes directly from blindState to endState. 

Tue May 23 2006  Loic Dachary  <loic@dachary.org>

	* tests/test-*.py.in: reach 100% coverage

	* pokerengine/pokertournament.py (PokerTournament.endTurn): factorize redundant code

	* pokerengine/poker{game,cards,chips}.py: #pragma no cover for a few lines that can't be tested

Sun May 14 2006  Loic Dachary  <loic@dachary.org>

	* Release 1.0.15

	* tests/test-*.py.in: many more unit tests
	
	* pokerengine/pokercards.py (PokerCards.setVisible): don't alter NOCARD

	* pokerengine/pokercards.py (PokerCards.hasCard): fix to work with no cards
	  also

Fri May 12 2006  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokergame.py (PokerGame.playersInPotCount): last_round was always
	  'total' because this index was added after playersInPotCount implementation.

Thu May 11 2006  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokergame.py (PokerGame.historyReduce): index for sitOut & wait_blind
	  is incorrect

Sat May 06 2006  Loic Dachary  <loic@dachary.org>

	* test/test-*.py.in: more coverage tests (95%)

Wed May 03 2006  Loic Dachary  <loic@dachary.org>

	* pokerengine/pokergame.py (PokerGame.setSeats): player seat set to -1 if an
	  error occurs
	  (PokerGame.cancelState): use GAME_STATE_END macro
	  (PokerGame.waitBigBlind): return if no blind data
	  (PokerGame.blind): return if no blind data
	  (PokerGame.ante): return if no blind data
	  (PokerGame.ante): set amount if amount from info is undefined
	  (PokerGame.disconnectedCount): wrong method name fixed

	* pokerengine/pokergame.py (__historyResolve2messages): kill the unused card2string
	  method.

Tue May 02 2006  Loic Dachary  <loic@gnu.org>

	* conf/*.template: add bet/type

Wed Apr 26 2006  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokerchips.py (PokerChips.convert): if converting from an int and
	  there is a remainder, don't lose it

	* pokerengine/pokergame.py (PokerGame.money2bet): remove redundant test

Mon Apr 24 2006  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokergame.py (PokerGame.readableHandValueLong): royal flush tests fix

	* pokerengine/pokergame.py (PokerGame.possibleActions): return [] instead
	  of False

	* pokerengine/pokertournament.py (PokerTournament.__init__): init bug fixes

	* pokerengine/pokertournament.py (PokerTournament.createGames): ok if the
	  tournament players don't divide into an exact number of tables

	* pokerengine/pokerchips.py (PokerChips.tolist): impossible case raises warning

	* give up python2.2 support

Wed Apr 19 2006  Loic Dachary  <loic@gnu.org>

	* Release 1.0.14

	* pokerengine/pokerchips.py (PokerChips.__ne__): use isinstance

	* tests/run.in: tests run individually by make check instead of grouped
	  into a single execution (exhibits errors)

Mon Apr 17 2006  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokercards.py (letter2names): try & deuce (Christopher Stone <chris.stone@gmail.com>)

Sat Apr 08 2006  Loic Dachary  <loic@gnu.org>

	* tests/coverage.py: add coverage code
	  from http://nedbatchelder.com/code/modules/coverage.html

	* tests/tests-*.py.in: 35% unit test coverage

	* tests/conf/unittest*.xml, upgrade/*.xsl: helpers for unit tests

	* tests/run.in: run all tests and measure coverage (including non-regression tests).

Fri Apr 07 2006  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokergame.py (PokerGame.setDealer): don't modify position
	  if an error occured.
	  (PokerGame.noAutoPlayer): auto = False (instead of True !)

	* pokerengine/pokergame.py (PokerGame.addPlayer): add loads of
	  sanity checks and error reports

	* pokerengine/pokergame.py (PokerGame.setPosition): don't modify position
	  if an error occured.

	* pokerengine/pokergame.py (PokerGame.resetSeatsLeft): If the
	  number of player is invalid the seats_left is reset.

	* pokerengine/pokergame.py (PokerGame.setMaxPlayers): The number
	  max of player is now check and if it is invalid the error is
	  traced and the number is set to 0.

	* pokerengine/pokergame.py (PokerPlayer.__str__):  missing muck

Wed Apr 05 2006  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokergame.py (PokerGame.setVariant): copy the info dict in backup instead
	  of keeping a reference

	* pokerengine/pokergame.py (PokerGame.setVariant): use .path not .url

Sat Apr 01 2006  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokerengineconfig.py (Config.save): don't print none self.path

	* pokerengine/pokerengineconfig.py (Config.checkVersion): test upgrades_repository

	* pokerengine/pokercards.py (PokerCards.__eq__): test argument type

Thu Mar 30 2006  Loic Dachary  <loic@gnu.org>

	* tests/test-version.py.in: unit test for pokerengine/version.py

	* tests/history.py.in (TestHistory.test1): fix history test

Wed Mar 22 2006  Loic Dachary  <loic@gnu.org>

	* Release 1.0.13

	* Makefile.am (buildconf): fix bugous limit structure

Sun Mar 12 2006  Loic Dachary  <loic@gnu.org>

	* Release 1.0.12

	* configure.ac: accept python2.2, abort if rsync missing

	* pokerconfigupgrade.in: use string.find for python2.2 compatibility

	* pokerengine/poker{chips,game,tournament}.py, tests/chips.py.in: define
	  sum function for python2.2

	* pokerengine/pokergame.py: define uniq function and otherwise avoid
	  usage of fromkeys dictionary method

	* pokerengine/pokergame.py(serialsAllSorted): sort keys to avoid 
	  hash key algorithm dependency (may ruin non regression tests)

	* tests/deal.py.in: do not rely on assertEqual with single argument (does
	  not work in python2.2)

	* tests/tournament.py.in: fix equalizeGames output results to take advantage
	  of sorted results.

Mon Feb 27 2006  proppy  <johan@mekensleep.com>

	* pokerengine/pokergame.py (PokerGameClient): removed skin_level

Fri Feb 10 2006  Loic Dachary  <loic@gnu.org>

	* pokerengine/version.py (Version.__{sub,add}__): arithmetic on versions

Wed Jan 20 2006  Benoit Treins

        * conf/*: removed showdown round from variants
        * pokerengine/tests/muck.py.in: created
        * pokerengine/pokergame.py: added muck logic

Wed Jan 19 2006  Benoit Treins

        * pokerengine/pokergame.py: changed first test in call check fold raise functions (may raise error message)

Tue Jan 03 2006  Loic Dachary  <loic@gnu.org>

	* tests/upgrades.py.in: fix PYTHONPATH bug that gave precedence to the
	  installed version instead of the version from the source tree

Mon Jan 02 2006  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokergame.py (PokerGame.setBettingStructure): by default and if
	  negative, round cap is set to maxint
	  (PokerGame.betLimits): if minimum bet is "big" instead of a number, set
	  the minimum bet to the big blind.

Thu Nov 24 2005  Loic Dachary  <loic@gnu.org>

	* Release 1.0.11

	* pokerengine/pokertournament.py (PokerTournament.__init__): default is fixed
	  payout tables

	* conf/poker.payouts.xml: fixed payout tables

	* tests/tournament.py.in (TestPrizes.test1): test fixed payout structure

Wed Nov 23 2005  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokertournament.py (PokerTournament.endTurn): attempt to balance
	  tables when a player is eliminated OR a table does not have enough players

	* pokerengine/pokertournament.py (PokerTournament.balanceGames): remember that
	  a need to move players was not satisfied

	* pokerengine/pokertournament.py (equalizeCompute): separate function for
	  computing games in need of equalization

Tue Nov 22 2005  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokergame.py (PokerGame.setBettingStructure): set best_buy_in and
	  default values for buy-in and max-buy-in

Wed Oct 26 2005  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokergame.py (__historyResolve2messages,
	  history2messages): convert cents amounts for display

Tue Oct 18 2005  Loic Dachary  <loic@gnu.org>

	* Release 1.0.10 
	
	* pokerengine/pokerchips.py: s/tokens/chips/

	* pokerengine/pokerchips.py (PokerChips.int2chips): if the amount is a multiple
	  of a given chip, stick to it

Mon Oct 17 2005  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokertournament.py (PokerTournament.movePlayer): also transfert user data.

	* pokerengine/pokerchips.py (PokerChips.tostring): convert to 
	  string representing the decimal amount
	  (PokerChips.tofloat): convert to the float representing the 
	  decimal amount instead of the cents amount

	* pokerengine/pokerchips.py: the remainder field contains the rest
	  of the chip stack. If the chips values do not include a chip of
	  value 1, the amount that is lower than the smallest chip is stored
	  in the remainder field.

	* pokerengine/pokerchips.py (PokerChips.tolist): convert to standalone
	  list

	* conf/poker.*.xml: all amounts expressed in cents or 1/100

	* pokerengine/pokergame.py (PokerGame.__init__): self.unit : smallest chip
	  value fitting with the betting structure
	  pokerengine/pokergame.py (PokerGame.getChipUnit): 

	* Makefile.am (all-local): run upgrades if conf directory is writeable (that
	  is, not when doing a distcheck)

	* pokerengine/pokergame.py (PokerGame.moneyMap): convenience function
	  replacing chipsMap

	* pokerengine/pokergame.py: amounts are no longer stored in chips but
	  in cents

Fri Oct 14 2005  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokergame.py (PokerPlayer.getUserData): user_data field
	  defined for the caller to store per-player data

Thu Oct 13 2005  Loic Dachary  <loic@gnu.org>

	* pokerconfigupgrade.in: do not prepend path components that are already present
	  in sys.path. Prevents giving priority to standard path over PYTHONPATH.

Fri Sep 30 2005  Loic Dachary  <loic@gnu.org>

	* Release 1.0.9

	* pokerengine/pokergame.py (PokerGame.buildPlayerList): exclude players with
	  wait_for = "first_round". This is only meaningful when set before starting
	  the game and allows the caller to exclude players for the next game while
	  allowing it to join the game after the next game.

	* pokerengine/pokergame.py (PokerGame.playersBeginTurn): do not reset wait_for if
	  "first_round". It may be used to exclude players from the blind/ante round and
	  will be reset to False when the blind/ante round is over.

	* pokerengine/pokergame.py (PokerGame.initRound): s/sitPlayersWait/acceptPlayersWait/

Thu Sep 29 2005  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokergame.py (PokerGame.updateBlinds): change wait_for
	  "late" to False when forbiding missed blind.

	* tests/blinds.py.in (TestBlinds.test0): Two players came in and
	 are waiting for the late blind because they attempted to enter
	 either on the small blind or the dealer position.  Fake this
	 situation instead of playing hands that will lead to the same
	 because it introduces an complexity that is not necessary. This
	 case can happen indeed although very rarely.

	* pokerengine/pokergame.py (PokerPlayer.isMissedBlind): return false
	  if "n/a"

	* poker-engine/conf/*no-limit*: minimum bet does not vary

Sat Sep 24 2005  Loic Dachary  <loic@gnu.org>

	* Release 1.0.8

	* pokerconfigupgrade.in: add python installation directory in python path

Wed Sep 21 2005  Loic Dachary  <loic@gnu.org>

	* bootstrap: do not run autoheader

	* pokerclient2d/*.c: add getopt

Fri Aug 26 2005  Loic Dachary  <loic@gnu.org>

	* Release 1.0.7

	* pokerengine/pokerengineconfig.py (Config.upgrade): ignore
	  missing upgrade repository, as if it was empty, instead of crashing.

Tue Aug 16 2005  Loic Dachary  <loic@gnu.org>

	* Release 1.0.6

	* debian/python2.3-poker-engine.postinst: run pokerconfigupgrade after
	  installation.

	* pokerconfigupgrade.8.in: new

	* pokerconfigupgrade.in: command line utility to upgrade configuration
	  files

Mon Aug 15 2005  Loic Dachary  <loic@gnu.org>

	* upgrades: repository of XSL sheets upgrading confgiruation files

	* tests/upgrades.py.in: apply all upgrades from the 1.0.5 files stored
	  in tests/conf

	* tests/conf: 1.0.5 configuration files from which upgrades can be
	  applied.
	
	* pokerengine/pokerengineconfig.py (Config.upgrade): XSL based upgrade system
	  starting from version 1.0.5 and up.

	* pokerengine/version.py.in: version class for comparison and
	  upgrade matrix helper

	* tests/*.py -> test/*.py.in: allow builds/tests in directory separated
	  from tests.
	
Wed Aug 03 2005  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokergame.py (PokerGame.is{Ante,Blind}Requested): predicate
	  on the blind / ante status of a given player

Wed Aug 03 2005  Loic Dachary  <loic@gnu.org>

	* Release 1.0.5

	* pokerengine/pokergame.py (PokerGame.getLatestPotContributions): helper
	  function added.

	* pokerengine/pokergame.py (PokerGame.updatePots): compute total pot
	  contributions.

	* pokerengine/pokergame.py (PokerGame.distributeMoney): compute total serial2share that
	  replaces winner2share and serial2delta for each player (net win/loss).

Sat Jul 16 2005  Loic Dachary  <loic@gnu.org>

	* debian/control (Section): s/libs/python/ in sections.

Wed Jul 13 2005  Loic Dachary  <loic@gnu.org>

	* Release 1.0.4

	* pokerengine/pokergame.py (PokerGame.sitOut): do not set the dealer
	  seat if less than two players sit.

	* pokerengine/pokergame.py (PokerGame.sit): set first_turn to True if
	  less than two players. 

Tue Jul 05 2005  Loic Dachary  <loic@gnu.org>

	* Release 1.0.3
	
	* tests/sit.py: sitin/sitout tests

	* pokerengine/pokergame.py (PokerGame.sitPlayersWaitingForFirstRound): 
	  if a player sits while others are paying the blinds, he must not
	  be included in the player list.

Tue Jun 28 2005  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokergame.py (PokerGame.isGameEndInformationValid): can the
	  showdown of the previous game be displayed

Fri Jun 24 2005  Loic Dachary  <loic@gnu.org>

	* Release 1.0.2
	
	* pokerengine/pokergame.py (PokerGame.callNraise): split
	  self.bet call to avoid autoplayer infinite recursion

Fri Jun 24 2005  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokergame.py (PokerGame.sitOutNextTurn): sit_request and
	  for client usage, allow client to update sit_out_next_hand in advance.

Wed Jun 15 2005  Loic Dachary  <loic@gnu.org>

	* Release 1.0.1

Thu May 05 2005  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokertournament.py: tournament logic imported
	  from former tournament client

	* tests/tournament.py: new tournament logic non regression tests
	
	* tests/blinds.py: new blind logic non regression tests

Wed May 04 2005  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokergame.py (PokerGame.payBuyIn): do not set the
	  buy in flag if the amount is less than the minimum. This check
	  should also be done by the application and is added as a
	  safeguard.

	* pokerengine/pokergame.py (PokerGame.sitOut): reset dealer sit
	  if only one player in game.

	* pokerengine/pokergame.py (PokerGame.sit): refuse to sit if
	  buy in is not yet payed.

Tue May 03 2005  Loic Dachary  <loic@gnu.org>

	* pokerengine/pokergame.py (PokerGame.isBroke): return False if
	  the serial does not exist. The rationale being that a player not
	  participating in the game cannot be broke. Allows for simpler
	  tests from the application, avoiding a check to make sure the
	  player is indeed seated at the table.

Thu Apr 28 2005  Loic Dachary  <loic@gnu.org>

	* Release 1.0.0

Local Variables:
compile-command: "svn update ; svn2cl --group-by-day --authors=$(echo $HOME)/.svn2cl --stdout | head -2000 | sed -n '0,/^2009-04-01/p'"
End: