File: ChangeLog

package info (click to toggle)
gwp 0.4.0-1.1
  • links: PTS
  • area: contrib
  • in suites: etch, etch-m68k
  • size: 7,476 kB
  • ctags: 3,872
  • sloc: ansic: 32,953; sh: 8,390; python: 2,079; xml: 1,184; makefile: 362
file content (3762 lines) | stat: -rw-r--r-- 109,283 bytes parent folder | download | duplicates (2)
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
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
2005-07-04 23:56  ldipenti

	* debian/changelog: new changelog

2005-07-04 23:54  ldipenti

	* debian/control: Bugfix from Debian BTS: #304225

2005-07-04 23:54  ldipenti

	* po/de.po: Bugfix from Debian BTS: #314051

2005-07-04 23:36  ldipenti

	* src/: callbacks.c, game_mgr.c, gwp.glade: Feature: game property
	  editor improved

2005-06-16 01:09  ldipenti

	* po/de.po: Some minor corrections from Debian BTS

2005-06-02 11:36  ldipenti

	* src/vp_utils.c: Feature: patched applied to parse host
	  configuration messages, thanks François!!!

2005-05-31 10:17  ldipenti

	* src/: callbacks.c, callbacks.h, game_mgr.c, global.h,
	  gwp-beamspec.c, gwp-beamspec.h, gwp-engspec.c, gwp-engspec.h,
	  gwp-flying-object.c, gwp-flying-object.h, gwp-game-state.c,
	  gwp-game-state.h, gwp-hullspec.c, gwp-hullspec.h,
	  gwp-ion-storm.c, gwp-ion-storm.h, gwp-location.c, gwp-location.h,
	  gwp-messages.c, gwp-messages.h, gwp-minefield.c, gwp-minefield.h,
	  gwp-object.c, gwp-object.h, gwp-planet.c, gwp-planet.h,
	  gwp-py-functions.c, gwp-py-functions.h, gwp-python.c,
	  gwp-python.h, gwp-race.c, gwp-race.h, gwp-ship.c, gwp-ship.h,
	  gwp-specs.h, gwp-starbase.c, gwp-starbase.h, gwp-starchart.c,
	  gwp-starchart.h, gwp-torpspec.c, gwp-torpspec.h, gwp-ui.c,
	  gwp-ui.h, gwp-utils.c, gwp-utils.h, gwp-vcrfile.c, gwp-vcrfile.h,
	  gwp_types.c, gwp_types.h, main.c, message-reader.c,
	  message-reader.h, mission.c, mission.h, race.c, race.h,
	  starchart.c, starchart.h, support.c, support.h, tables.c,
	  tables.h, vcr-combat-gl.c, vcr-combat-gl.h, vcr-combat.c,
	  vcr-combat.h, vcr.c, vcr.h, vp_maketurn.c, vp_maketurn.h,
	  vp_maketurn_global.c, vp_maketurn_global.h,
	  vp_maketurn_kmkturn.c, vp_maketurn_kmkturn.h, vp_maketurn_misc.c,
	  vp_maketurn_misc.h, vp_maketurn_playerio.c,
	  vp_maketurn_playerio.h, vp_types.h, vp_unpack.c, vp_unpack.h,
	  vp_utils.c, vp_utils.h: Feature: Added CVS metadata on source
	  files

2005-05-31 09:45  ldipenti

	* src/gwp-game-state.c: Another cool test (cvs vars)

2005-05-31 09:39  ldipenti

	* src/gwp-game-state.c: test cvs vars

2005-05-31 09:37  ldipenti

	* src/gwp-game-state.c: Another test

2005-05-31 09:31  ldipenti

	* src/gwp-game-state.c: Trying id file doc

2005-05-31 09:23  ldipenti

	* src/: gwp-game-state.c, gwp-game-state.h, gwp-py-mappings.c,
	  gwp-py-mappings.defs: Feature: Added methods to GwpGameState to
	  access all host configuration properties. Thanks François for
	  your contribution!!!. Updated python methods.

2005-05-31 02:15  ldipenti

	* po/fr.po: Bugfix: DSPAM signature left by mistake on PO file,
	  doh!

2005-05-31 02:12  ldipenti

	* src/: callbacks.c, game_mgr.c, gwp.glade: Bugfix: Some UI design
	  flaws on the game manager property dialog were fixed.

2005-05-30 09:28  ldipenti

	* po/fr.po: Updated French translation. Thanks François!!!

2005-05-24 09:12  ldipenti

	* po/fr.po: Updated French translation, thanks to François &
	  David!

2005-05-18 01:33  ldipenti

	* src/vp_utils.c: Several case-related file loading bugs squashed

2005-05-16 09:43  ldipenti

	* po/fr.po: Feature: French translation updated, thanks
	  François!!!

2005-05-09 09:11  ldipenti

	* po/: de.po, es.po, fr.po, gwp.pot, pt_BR.po: PO files updated to
	  new strings

2005-05-04 19:59  ldipenti

	* po/de.po: German translation update, thanks Stefan!!!

2005-05-04 01:34  ldipenti

	* src/: callbacks.c, callbacks.h, game_mgr.c, vp_utils.c: Feature:
	  Game settings can be accesed from GWP's main screen.

2005-05-04 01:10  ldipenti

	* src/: callbacks.c, game_mgr.c, gwp-game-state.c, gwp.glade:
	  Feature: new game control setting to allow the player to indicate
	  whether GWP should modify data files or not, disabled by default.

2005-05-03 01:18  ldipenti

	* po/: de.po, es.po, fr.po, gwp.pot, pt_BR.po: PO files updated

2005-05-01 21:32  ldipenti

	* src/: game_mgr.c, gwp-game-state.c, gwp-game-state.h, gwp.glade:
	  Bugfix: Game Manager now stores host type.

2005-05-01 19:41  ldipenti

	* src/gwp-messages.c: Bugfix: unused var eliminate

2005-05-01 19:39  ldipenti

	* src/gwp-messages.c: Bugfix: MDATAx.DAT files were loaded
	  incorrectly on races > 9, using letters instead of numbers for
	  the race name

2005-04-26 17:47  ldipenti

	* AUTHORS: Trivial commit

2005-04-26 17:45  cvs-max

	* AUTHORS:
	  Me aadi como developer

	  Max

2005-04-23 17:13  cristian

	* scripts/plugins/uhura.py: Terminado version 01, funcional!

2005-04-21 22:44  cristian

	* scripts/plugins/Makefile.am: Agregado de Uhura.py

2005-04-21 22:43  cristian

	* scripts/plugins/uhura.py: Plugin que se coloca en ele slot "down"
	  y muestra reportes de otros plugins

2005-04-19 09:49  ldipenti

	* configure.in: Fixed typo

2005-04-14 17:20  ldipenti

	* src/main.c: Feature: added some standard friendly codes an their
	  descriptions to the fc combo box selection

2005-04-12 18:54  ldipenti

	* debian/gwp.sgml, debian/watch, src/gwp-planet.c: Feature: New
	  planet properties migrated to MVC format: mines, factories and
	  defense_posts

2005-04-12 17:57  ldipenti

	* src/: gwp-game-state.c, starchart.c: Bugfix: The planet's panel
	  update is being executed from the planet "selected" signal
	  instead of being called from the click callback

2005-04-12 17:53  ldipenti

	* src/gwp-game-state.c: Bugfix: The planet's panel update is being
	  executed from the planet "selected" signal instead of being
	  called from the click callback

2005-04-12 17:08  ldipenti

	* scripts/inittab.py: Little mistake on event name corrected

2005-04-12 16:57  ldipenti

	* scripts/inittab.py: Feature: planet's property-changed signal
	  added to PluginManager's event hub

2005-04-12 15:08  ldipenti

	* src/starchart.c: Added check for no-natives planet

2005-04-12 14:53  ldipenti

	* src/: callbacks.c, gwp-planet.c: Some messages eliminated

2005-04-12 14:44  ldipenti

	* src/: callbacks.c, callbacks.h, gwp-planet.c, gwp.glade, main.c,
	  starchart.c, vp_utils.c: Feature: Planet FC interface

2005-04-10 16:56  ldipenti

	* src/: gwp.glade, starchart.c: Bugfix: Planet & Ship ComboBox
	  migrated from GtkCombo to GtkComboBoxEntry

2005-04-09 21:42  ldipenti

	* src/: callbacks.c, callbacks.h, gwp-planet.c, gwp.glade, main.c:
	  Feature: Friendly Code random modifications on planets

2005-04-09 21:41  ldipenti

	* src/starchart.c: Bugfix: planet extra panel widgets get
	  enabled/disabled when necessary

2005-04-09 21:35  ldipenti

	* src/starchart.c: When no natives on planet, disable native's tax
	  slider

2005-04-08 00:01  cristian

	* src/: gwp-python.c, gwp.glade: Agregado de un slot en la parte
	  inferior de la ventana del gwp ("down")

2005-04-07 18:10  ldipenti

	* src/: callbacks.c, callbacks.h, gwp-planet.c, gwp.glade,
	  starchart.c: Feature: Natives and Colonist taxes modification

2005-04-06 17:25  ldipenti

	* src/callbacks.c: some more beta testings...

2005-04-06 16:43  ldipenti

	* src/: callbacks.c, callbacks.h, gwp.glade: Some tests on data
	  modifications

2005-04-06 08:26  ldipenti

	* src/callbacks.c:  Trying some callbacks

2005-04-06 08:15  ldipenti

	* src/gwp.glade: Activating data changes widgets (taxes hscales)

2005-04-05 16:20  ldipenti

	* po/: de.po, es.po, fr.po, gwp.pot, pt_BR.po: i18n strings updated

2005-04-05 16:01  ldipenti

	* src/: callbacks.c, callbacks.h, gwp.glade, vp_maketurn.c,
	  vp_maketurn.h, vp_maketurn_global.c, vp_maketurn_kmkturn.c,
	  vp_maketurn_kmkturn.h: Feature: finished integrating kmkturn into
	  GWP!! cool!

2005-04-05 13:26  ldipenti

	* src/game_mgr.c: Bugfix: data dump function was called ofrom the
	  wrong place

2005-04-05 13:03  ldipenti

	* src/vp_maketurn_global.c: code cleanups

2005-04-05 09:21  ldipenti

	* src/vp_maketurn_misc.c: Corrected syntax error

2005-04-05 09:21  ldipenti

	* src/vp_maketurn_playerio.c: added some prototypes

2005-04-05 01:49  ldipenti

	* src/: Makefile.am, vp_maketurn.c, vp_maketurn.h,
	  vp_maketurn_global.c, vp_maketurn_global.h,
	  vp_maketurn_kmkturn.c, vp_maketurn_kmkturn.h, vp_maketurn_misc.c,
	  vp_maketurn_misc.h, vp_maketurn_playerio.c,
	  vp_maketurn_playerio.h: Added kero's maketurn patched code,
	  doesn't do a thing yet...

2005-03-29 00:09  ldipenti

	* contrib/gtksdl/: Makefile, README, gtksdl.c, gtksdl.h: Added
	  GtkSDL project to contrib section: maybe we'll use it to replace
	  GnomeCanvas based starchart

2005-03-28 08:19  ldipenti

	* pixmaps/gwp.xpm: Forgotten XPM icon

2005-03-27 19:29  ldipenti

	* src/: global.h, gwp-planet.c, gwp-py-mappings.c,
	  gwp-py-mappings.defs, starchart.c, vp_utils.c: Feature: the end
	  has come!! ships, starbases and planet data written to DAT files,
	  hopefully in a correct manner, so that the Tim Continuum won't
	  get mad :-)

2005-03-27 16:47  ldipenti

	* src/: game_mgr.c, gwp-game-state.c, gwp-game-state.h,
	  gwp-object.c, gwp-ship.c, vp_utils.c, vp_utils.h: Feature: The
	  end is coming! pick up your dead!! the end is coming!! started
	  working on data writing: shipX.dat finished! diffs EQUAL against
	  PCC's shipX.dat, cool huh?

2005-03-25 20:02  ldipenti

	* src/vp_utils.c: Some code cleaning and corrections on .DAT & .DIS
	  files treatment

2005-03-22 08:23  ldipenti

	* releaser.sh, debian/README.Debian, debian/changelog,
	  debian/control, debian/copyright, debian/gwp.manpages,
	  debian/gwp.sgml, debian/rules: Last changes to make a Debian
	  package

2005-03-20 23:52  ldipenti

	* debian/: files, gwp.postinst.debhelper, gwp.postrm.debhelper,
	  gwp.substvars: Some additional cleaning. Don't forget: on the
	  previous commit it leaked a contribution! Rafael Riedel sent a
	  planet and starbase images!

2005-03-20 23:49  ldipenti

	* AUTHORS, CHANGES, Makefile.am, gwp.desktop.in, releaser.sh,
	  debian/Makefile.am, debian/changelog, debian/conffiles.ex,
	  debian/control, debian/copyright, debian/cron.d.ex,
	  debian/emacsen-install.ex, debian/emacsen-remove.ex,
	  debian/emacsen-startup.ex, debian/gwp-default.ex,
	  debian/gwp.doc-base.EX, debian/init.d.ex, debian/manpage.1.ex,
	  debian/manpage.sgml.ex, debian/manpage.xml.ex, debian/menu,
	  debian/postinst.ex, debian/postrm.ex, debian/preinst.ex,
	  debian/prerm.ex, debian/rules, debian/watch, debian/watch.ex,
	  pixmaps/Makefile.am, pixmaps/planets/planet60-69.png,
	  pixmaps/planets/sbase1.png, po/gwp.pot, scripts/gtkcons.py,
	  scripts/plugins/magallanes.py, scripts/plugins/quark.py,
	  src/Makefile.am: Lots of work done to make GWP Debian-friendly

2005-03-20 22:19  ldipenti

	* NEWS: new news!

2005-03-20 22:18  ldipenti

	* NEWS: temp remove

2005-03-17 17:17  ldipenti

	* debian/Makefile.am: Debian control files added to distribution

2005-03-17 17:09  ldipenti

	* debian/: changelog, control, copyright, menu, rules: Some
	  corrections to make deb package compatible with Debian Policy
	  Manual

2005-03-11 12:10  ldipenti

	* src/vp_unpack.c: oops, some logical mistake on the previous
	  bugfix.

2005-03-11 12:02  ldipenti

	* src/vp_unpack.c: Bugfix: unpack now detects if RST is WinPlan or
	  DOSPlan, and creates (or not) KOREx.DAT when necessary. Thanks
	  Cristian!

2005-03-11 09:20  ldipenti

	* src/gwp-ship.c: Temporal fix: we have to know if it is a host999
	  game or not, for now we check it hardcoded

2005-03-09 10:42  ldipenti

	* po/: de.po, es.po, fr.po, gwp.pot, pt_BR.po: .po updated

2005-03-09 10:36  ldipenti

	* scripts/inittab.py: Bugfix: add_plugin_slot() method didn't
	  reparent the widget when necessary. Thanks Cristian for the
	  report!

2005-03-09 07:25  ldipenti

	* po/pt_BR.po, src/callbacks.c: Updated pt_BR translation, thanks
	  to Carlos Paulino!!

2005-03-03 18:12  ldipenti

	* scripts/plugins/finder.py: Feature: Finder now auto-hides its
	  window when pressing ESC key, also the search entry widget
	  regains focus when pressing Delete key

2005-03-03 17:12  ldipenti

	* scripts/plugins/finder.py, src/gwp-py-mappings.c,
	  src/gwp-py-mappings.defs, src/gwp-starchart.c,
	  src/gwp-starchart.h: Feature: when clicked on the Finder plugin
	  planet list, the starchart selects the planet

2005-03-03 12:12  cristian

	* scripts/plugins/quark.py: Agregado la seleccion en la ventana de
	  quark cuando se selcciona un planeta en el Starchar

2005-03-02 19:23  cristian

	* scripts/plugins/quark.py: Agregado la descripcion larga del
	  plugin

2005-03-02 10:17  ldipenti

	* src/starchart.c: Bugfix: When waypoint set with Warp 0, GWP went
	  down :-) no more... thanks Nico!

2005-03-01 20:19  ncesar

	* scripts/plugins/finder.py: minimal changes that afect
	  performance... minimally

2005-03-01 18:15  ncesar

	* scripts/plugins/finder.py: Hide the box that's not in use

2005-03-01 15:53  ldipenti

	* ChangeLog, debian/files, debian/gwp.postinst.debhelper,
	  debian/gwp.substvars: Misc Commit

2005-03-01 08:45  ldipenti

	* src/starchart.c: Disabled planet names

2005-03-01 00:26  ldipenti

	* CHANGES, Doxyfile, VERSION, configure.in, debian/changelog,
	  package/gwp-fedora.spec, package/gwp-mdk.spec, po/Makefile.in.in,
	  scripts/plugins/finder.py, src/callbacks.c, src/starchart.c:
	  Release 0.3.6 commit, yeah!

2005-02-28 19:19  cristian

	* scripts/plugins/quark.py: Corregidos bugs de control de limite de
	  poblacion y reactivacion del icono al seleccionar un planeta
	  despues de una nave.

2005-02-25 02:59  ldipenti

	* scripts/plugins/finder.py: Feature: new cool features to finder
	  plugin by Nicolas!!!

2005-02-24 16:51  cristian

	* scripts/plugins/quark_files/Makefile.am: Missing tips file

2005-02-24 16:38  ldipenti

	* src/starchart.c: Bugfix: When natives=0, we don't need to show
	  happiness data on the panel

2005-02-24 16:20  ldipenti

	* src/vp_utils.c: Bugfix: Natives SPI sometimes came != 0 when
	  natives=0...check done!

2005-02-24 15:58  ldipenti

	* help/C/figures/message-reader.png: Bugfix: missing help figure
	  added

2005-02-22 10:24  cristian

	* scripts/plugins/quark.py: Solucionado conflicto con el reporte en
	  ventana

2005-02-20 18:14  cristian

	* scripts/plugins/quark.py: Constantes

2005-02-20 18:12  cristian

	* scripts/plugins/quark_utils.py: Agregado de algunas constantes

2005-02-01 09:42  cristian

	* scripts/plugins/quark_files/quark_tips.txt: Consejos para el area
	  de notificacion.

2005-01-31 11:54  cristian

	* scripts/plugins/quark.py: Agregado y corregido el chequeo de
	  temperatura de los planetas.

2005-01-31 09:57  cristian

	* scripts/plugins/: quark.py, quark_utils.py: Reestructuracin del
	  sistema de creacion de reportes. Muchos cambios.

2005-01-28 11:14  cristian

	* scripts/plugins/: quark.py, quark_utils.py: Fusionado del reporte
	  en ventana y notificacion

2005-01-27 12:16  cristian

	* scripts/plugins/quark.py: Arreglado el calculo de max income
	  natives

2005-01-27 11:17  cristian

	* scripts/plugins/quark.glade: Desabilitados los controles de
	  edicion de datos

2005-01-27 09:28  ldipenti

	* src/gwp-starchart.c: Bugfix: when selecting a planet, it emits a
	  "selected" signal

2005-01-27 08:36  cristian

	* scripts/plugins/: quark.glade, quark.py, quark_utils.py: Uso del
	  Notification area listo!

2005-01-26 20:42  ldipenti

	* scripts/: inittab.py, plugins/magallanes.py, plugins/quark.py:
	  Bugfix: all plugins should call their parent's constructor at
	  their own constructor. This was causing the segfault on signal
	  connection

2005-01-26 14:16  cristian

	* scripts/plugins/: quark.py, quark_utils.py: Listo el uso del area
	  de notificacion

2005-01-26 12:31  ldipenti

	* scripts/inittab.py: Temp fix: registered signal connection from
	  plugi manager when registering a plugin causes a segfault,
	  commented out

2005-01-26 11:52  ldipenti

	* scripts/plugins/quark_files/Makefile.am: Oops, missed file!

2005-01-26 11:31  ldipenti

	* scripts/inittab.py: Typo: event hub notificatons change: - for _

2005-01-26 11:29  ldipenti

	* scripts/inittab.py: Bugfix: plugin manager routes events through
	  its HUB when plugins are registered/unregistered

2005-01-26 10:05  ldipenti

	* configure.in, scripts/plugins/Makefile.am: Added control files to
	  automatically install Quark plugin

2005-01-26 09:49  cristian

	* scripts/plugins/quark_utils.py: Agregado de algunas constantes

2005-01-26 09:39  cristian

	* scripts/plugins/quark_files/: quark_amarillo.gif, quark_rojo.gif,
	  quark_transp.gif, quark_verde.gif: Iconos del plugin Quark para
	  el area de notificacion

2005-01-25 17:04  ldipenti

	* src/: gwp-game-state.c, gwp-game-state.h, gwp-py-mappings.c,
	  gwp-py-mappings.defs: Several host settings getters functions
	  added to GwpGameState. More in the works!

2005-01-25 13:03  cristian

	* scripts/plugins/quark.py: Minor fix

2005-01-24 20:21  ldipenti

	* src/: gwp-game-state.c, gwp-game-state.h, gwp-planet.c,
	  gwp-py-mappings.c, gwp-py-mappings.defs: Bugfix: Max population
	  calculation now uses host settings when the climate is extreme

2005-01-24 13:36  cristian

	* scripts/plugins/quark.py: Agregado el chequeo de los planetas
	  inospitos, falta terminar

2005-01-24 00:11  ldipenti

	* scripts/: inittab.py, plugins/notification_area.py: Feature:
	  Plugin class now is a GObject subclass that emits an
	  'unregistered' signal when it's eliminated from the plugin
	  system, allowing other plugins to be noticed when this happens.

2005-01-20 16:34  ldipenti

	* scripts/: inittab.py, plugins/Makefile.am,
	  plugins/notification_area.py: Feature: New plugin
	  'NotificationArea', to allow other plugins to publish their own
	  alerts to the user. Added some utility methods to PluginManager
	  to get reference of active plugins, check plugin states, etc...

2005-01-20 12:04  ldipenti

	* src/gwp.glade: Feature: plugin slots now support multiple
	  "applets"

2005-01-20 10:59  ldipenti

	* src/gwp-python.c: Bugfix: slot names shortened

2005-01-19 20:33  ldipenti

	* scripts/inittab.py, src/gwp-python.c, src/gwp.glade: Feature:
	  Added two more slots: plugin_slot_left and ..._right. Added
	  remove_plugin_slot() method to PluginManager.

2005-01-19 13:35  cristian

	* scripts/plugins/quark.py: Agregado la notificacion de planetas
	  orbitado pero sin dueo, con errores.

2005-01-19 12:40  ldipenti

	* scripts/inittab.py, src/gwp-python.c, src/gwp.glade: Feature:
	  Added basic plugin UI slots addition to main GWP's UI

2005-01-19 11:46  cristian

	* scripts/plugins/quark.py: minor changes

2005-01-15 15:05  cristian

	* scripts/plugins/quark.py: [no log message]

2005-01-14 18:50  ldipenti

	* src/: gwp-py-mappings.c, gwp-py-mappings.defs, gwp-ship.c,
	  gwp-ship.h: Feature working: GameState can be retrieved from
	  Python. Current planet and ship selected can be obtained using
	  GwpGameState's new methods get_selected_[planet|ship].

2005-01-14 18:40  ldipenti

	* src/: gwp-game-state.c, gwp-game-state.h: Feature: added methods
	  to game state to store current selected planet and ship, not
	  working ... fixing ...

2005-01-14 13:21  ldipenti

	* generate_py_mappings.sh, src/gwp-py-functions.c,
	  src/gwp-py-functions.h, src/gwp-py-mappings.c,
	  src/gwp-py-mappings.defs: Feature: GwpGameState exported to
	  Python. Added method to obtain actual game_state object to gwp
	  module.

2005-01-14 13:03  ldipenti

	* src/: gwp-game-state.c, gwp-game-state.h, vp_utils.c: Feature:
	  GwpGameState now stores the current selected planet and ship IDs

2005-01-14 12:51  ldipenti

	* src/callbacks.c: Bugfix: ship selection signal emission was not
	  in the correct place

2005-01-13 20:48  cristian

	* scripts/plugins/quark.py: Ordenado de las funciones y agregado de
	  la verificacion de happ para los colonos.

2005-01-13 13:15  cristian

	* scripts/plugins/quark.py: Desconeccion de las seales al
	  desregistrar el plugin y arreglado de los mensajes de estado de
	  felicidad.

2005-01-12 14:11  cristian

	* scripts/plugins/quark.py: Agregada la emision de seales y
	  comienzo del manejo de msjs para el area de notificacion, por
	  ahora la salida es al stdout

2005-01-11 12:46  cristian

	* scripts/plugins/quark.py: Now Quark center the starchart in the
	  planet selected from his list of planets in the Quark window.

2005-01-11 12:17  ldipenti

	* generate_py_mappings.sh, src/gwp-py-mappings.c,
	  src/gwp-py-mappings.defs, src/gwp-py-mappings.override,
	  src/gwp-starchart.c, src/gwp-starchart.h: Feature: Added some
	  starchart wrapper functions to GwpStarchart to be able to do
	  basic things on the starchart from Python

2005-01-10 20:13  ldipenti

	* src/gwp-planet.c: Agh, more errors squashed!

2005-01-10 20:05  ldipenti

	* src/gwp-planet.c: More calc corrections on tax collection

2005-01-10 19:42  ldipenti

	* src/starchart.c: Some dumb errors corrected (capo Cristian!)

2005-01-10 19:28  ldipenti

	* src/starchart.c: oops! bad comparison

2005-01-10 19:24  ldipenti

	* src/starchart.c: Bugfix: natives tax earnings miscalculated, now
	  it takes into account the colonists tax collection capacity,
	  depending on the race. Thanks Cristian!

2005-01-10 19:18  ldipenti

	* src/: gwp-planet.c, starchart.c, vp_utils.c: Bugfix: Unowned
	  planets with (own) ships orbiting didn't showed any data on the
	  extra panel. Thanks Cristian!

2005-01-10 18:43  ldipenti

	* src/: gwp-planet.c, gwp-planet.h, gwp-py-mappings.c,
	  gwp-py-mappings.defs, starchart.c: Bugfix: Unowned planets with
	  (own) ships orbitin didn't showed the data on the panel. Thanks
	  Cristian!

2005-01-10 01:50  ldipenti

	* src/: callbacks.c, game_mgr.c, starchart.c, starchart.h: Enhanced
	  mini starchart feature - still buggy though...

2005-01-10 00:45  ldipenti

	* scripts/inittab.py: Disabled debugging msg

2005-01-09 21:22  ldipenti

	* src/vp_utils.c: removed output spanish message

2005-01-09 20:18  cristian

	* scripts/plugins/quark.py, src/gwp-planet.c, src/gwp-planet.h,
	  src/gwp-py-mappings.c, src/gwp-py-mappings.defs, src/vp_utils.c:
	  Fixed 2 functions of tax_rate, and 1 deleted, Several changes in
	  Quark plugin

2005-01-07 17:25  ldipenti

	* src/: gwp_types.c, gwp_types.h, starchart.c: Little bugfix:
	  sensor sweep area in its own canvas group, so now can be seen
	  correctly

2005-01-07 15:38  ldipenti

	* src/global.h: Changed scanner colors

2005-01-07 15:36  ldipenti

	* src/gwp_types.h: updated header

2005-01-07 15:36  ldipenti

	* src/gwp_types.h: cleaned unused code

2005-01-07 12:41  cristian

	* scripts/plugins/quark.py: Agregado de las funciones de mining
	  rate y tax rate.

2005-01-07 12:09  ldipenti

	* src/gwp-planet.c: Bugfix: amorphous' tax rate is 0

2005-01-06 19:27  ldipenti

	* src/gwp-planet.c: Some code cleanups

2005-01-06 12:49  cristian

	* scripts/plugins/quark.py: Agregado de comentarios y renombrado de
	  algunas funciones.

2005-01-06 10:32  ldipenti

	* src/: gwp-planet.c, gwp-planet.h, gwp-py-mappings.c,
	  gwp-py-mappings.defs: Bugfix: corrected a calculation problem
	  entered with on the last commit

2005-01-05 21:04  ldipenti

	* src/: gwp-planet.c, race.c, race.h: Bugfix: tax rates taken from
	  the host config data, it was hardcoded.

2005-01-04 14:54  ldipenti

	* src/: global.h, gwp-game-state.c, gwp-game-state.h, starchart.c:
	  Feature: Added sensors sweep area to "scanner area feature" in a
	  lighter blue color

2005-01-04 00:30  ldipenti

	* src/: gwp-game-state.c, gwp-game-state.h, gwp-planet.c,
	  gwp-planet.h, gwp-py-mappings.c, gwp-py-mappings.defs: Added Host
	  default settings values to GwpGameState and some functions to
	  GwpPlanet querying those values

2005-01-03 00:24  ldipenti

	* debian/files, debian/gwp.substvars, po/de.po, po/es.po, po/fr.po,
	  po/gwp.pot, po/pt_BR.po: Nonsense...this modifications were made
	  by the automatic super-duper releaser script.

2005-01-03 00:20  ldipenti

	* src/gwp-game-state.c: Added variables to store host configuration
	  parameters...wow they're a lot!

2005-01-02 17:04  cristian

	* scripts/plugins/: quark.glade, quark.py, quark_utils.py: Several
	  fixes

2005-01-02 16:13  ldipenti

	* configure.in: Fixed typo on PCRE cflags

2005-01-02 16:08  ldipenti

	* src/callbacks.c: Updated credits in "about..." dialog

2005-01-02 02:31  ldipenti

	* CHANGES, ChangeLog, Doxyfile, Makefile.am, VERSION, configure.in,
	  debian/changelog, package/gwp-fedora.spec, package/gwp-mdk.spec:
	  Release 0.3.5 commit, yeah!

2005-01-02 01:43  ldipenti

	* src/: global.h, gwp-planet.c, starchart.c, vp_utils.c: Bugfix:
	  messages are scanned to extract info about enemy planets

2004-12-30 12:09  cristian

	* scripts/plugins/quark.py: Agregado de unas constantes

2004-12-30 12:08  cristian

	* docs/tutorials/plugins/gwp_plugins_tutorial_es.xml: Un poquito
	  mas...

2004-12-30 12:07  cristian

	* docs/tutorials/plugins/example1.py: Minimal fix

2004-12-28 18:59  cristian

	* docs/tutorials/plugins/gwp_plugins_tutorial_es.xml: Extensin del
	  cap 1

2004-12-27 19:37  cristian

	* docs/tutorials/plugins/gwp_plugins_tutorial_es.xml: Explicacion
	  del codigo del ejemplo 001

2004-12-24 11:05  cristian

	* docs/tutorials/plugins/gwp_plugins_tutorial_es.xml: Correciones
	  ortogrficas y algo de texto 1er cap

2004-12-21 19:25  ldipenti

	* src/vp_utils.c: Regexp working!!!

2004-12-21 18:43  ldipenti

	* src/vp_utils.c: some regexp testing

2004-12-21 13:57  cristian

	* docs/tutorials/plugins/images/: 01-glade-main-thumb.png,
	  02-glade-new-project-thumb.png, 03-glade-palette-thumb.png,
	  03-glade-palette.png, 04-glade-new-window1-thumb.png,
	  05-glade-window1-properties-thumb.png,
	  05-glade-window1-properties.png, 06-glade-window1-signals.png,
	  08-glade-window1-vbox1-thumb.png,
	  09-glade-window1-hbuttonbox1-packing-thumb.png,
	  09-glade-window1-hbuttonbox1-packing.png,
	  10-glade-window1-label1-properties-thumb.png,
	  10-glade-window1-label1-properties.png,
	  12-glade-window1-final-design-thumb.png: Imagenes utilizadas en
	  el tutorial de plugins

2004-12-21 13:50  cristian

	* docs/tutorials/plugins/: example1.py, example1_00.py,
	  gwp_plugins_tutorial_en.xml, gwp_plugins_tutorial_es.xml,
	  project1.glade: Primer version del tutorial de plugins

2004-12-21 12:27  cristian

	* scripts/plugins/quark.py: Minor fix

2004-12-21 12:10  cristian

	* scripts/plugins/quark.py: Arreglado los paths

2004-12-21 11:59  cristian

	* scripts/plugins/: quark.glade, quark.py, quark_utils.py:
	  Primer version del plugin quark

2004-12-20 20:27  ldipenti

	* src/: gwp.glade, main.c, starchart.c, vp_utils.c: Bugfix: "Close
	  Game" menu disabled, this feature does not work 100% ok

2004-12-20 20:05  ldipenti

	* tests/Makefile.am: Added missing thingies to compile the big fat
	  brick called gwp

2004-12-20 19:55  ldipenti

	* src/game_mgr.c: Bugfix: added some ifdef's to exclude some code
	  depending on Python support.

2004-12-20 17:14  ldipenti

	* src/: vp_utils.c, gwp-messages.c, gwp-messages.h: initial tests
	  on message scanning

2004-12-06 00:28  ldipenti

	* configure.in, generate_py_mappings.sh, releaser.sh,
	  scripts/plugins/Makefile.am, src/Makefile.am, src/global.h,
	  src/gwp-messages.c, src/gwp-messages.h, src/gwp-py-mappings.c,
	  src/gwp-py-mappings.defs, src/gwp-py-mappings.override,
	  src/vp_utils.c, src/vp_utils.h: Works toward accesing vital data
	  from message system. Added new dependency: libpcre (for scanning
	  messages)

2004-12-06 00:26  ldipenti

	* src/: gwp-race.c, gwp-race.h: New GObject: GwpRace represents the
	  various forms of calling any race, maybe later I'll put the other
	  race specific configurations here

2004-12-05 16:41  ldipenti

	* src/: gwp-messages.c, gwp-messages.h, message-reader.c: Minor
	  correction: bool, true and false types changed to gboolean, TRUE
	  and FALSE

2004-12-04 15:59  ldipenti

	* src/gwp-messages.c: Several minor function fixes, additions,
	  etc...

2004-12-03 12:22  ldipenti

	* src/: gwp-messages.c, gwp-messages.h: Deleted unnecessary code

2004-12-01 19:20  cristian

	* scripts/plugins/: magallanes.py, vp_utils.py: Coments

2004-11-26 10:25  ldipenti

	* po/Makefile.in.in, po/POTFILES.in, po/de.po, po/es.po, po/fr.po,
	  po/gwp.pot, po/pt_BR.po, scripts/plugins/magallanes.glade,
	  scripts/plugins/vp_utils.py, src/vp_utils.c: Updated Magallanes
	  glade & utility files, to be i18n-able

2004-11-26 09:22  ldipenti

	* help/C/gwp.xml: Corrected simple bug

2004-11-23 16:05  ldipenti

	* src/vp_utils.c: Bugfix: fixed an error reading xyplan.dat file,
	  one extra fake planet was shown in starchart. Thanks to Cristian
	  & Nico!!!

2004-11-23 15:13  ldipenti

	* src/game_mgr.c: little silly minor tiny stupid correction, move
	  along :-)

2004-11-23 11:34  ldipenti

	* src/gwp-planet.c: Bugfix: mining rate calculus corrected, thanks
	  Cristian!!

2004-11-16 15:54  ldipenti

	* src/: gwp-planet.c, race.c, race.h: Bugfix: colonist tax rate
	  badly calculated when race==feds

2004-11-16 15:31  ldipenti

	* src/: gwp-planet.c, gwp-planet.h, gwp-py-mappings.c,
	  gwp-py-mappings.defs: New functions on GwpPlanet: calculate the
	  max number of constructed mines, factories and defense posts on a
	  given planet

2004-11-16 10:18  ldipenti

	* src/gwp-planet.c: Bugfix: native & colonist race chars function
	  corrected. Thanks Cristian!

2004-11-15 21:37  ldipenti

	* src/: gwp-planet.c, gwp-planet.h, gwp-py-mappings.c,
	  gwp-py-mappings.defs, starchart.c: Bugfix & API change: corrected
	  planet functions about tax collections, renamed _earned_ to
	  _collected_. Two new functions to calculate the max tax that can
	  collect without taking into account the number of colonists

2004-11-15 19:00  ldipenti

	* src/gwp-planet.c: Bugfix: tax collection functions corrected

2004-11-15 18:39  ldipenti

	* src/gwp-planet.c: Bugfix: added race & native corrections to
	  mineral extraction rate

2004-11-15 17:53  ldipenti

	* scripts/: inittab.py, plugins/Makefile.am,
	  plugins/gwp_config.py.in, plugins/magallanes.py: i18n corrected
	  on plugins

2004-11-15 17:52  ldipenti

	* scripts/plugins/gwp_config.py.in: temp remove

2004-11-09 19:01  ldipenti

	* configure.in, po/POTFILES.in, po/de.po, po/es.po, po/fr.po,
	  po/gwp.pot, po/pt_BR.po, scripts/inittab.py,
	  scripts/plugins/gwp_config.py.in, scripts/plugins/magallanes.py,
	  src/starchart.c: Added i18n support for plugins

2004-11-08 00:31  ldipenti

	* CHANGES, ChangeLog, Doxyfile, README, VERSION, configure.in,
	  debian/changelog, package/gwp-fedora.spec, package/gwp-mdk.spec,
	  pixmaps/ships/Makefile.am, pixmaps/ships/vpl30.jpg, po/de.po,
	  po/es.po, po/fr.po, po/gwp.pot, po/pt_BR.po,
	  scripts/plugins/Makefile.am, scripts/plugins/magallanes.glade,
	  scripts/plugins/magallanes.py, scripts/plugins/vp_utils.py,
	  src/starchart.c: Release 0.3.4 commit, yeah!

2004-11-07 22:31  ldipenti

	* pixmaps/ships/vpl30.jpg: Bugfix: missing ship image -- thanks
	  Cristian!

2004-11-07 10:33  ldipenti

	* src/: callbacks.c, gwp-game-state.c, gwp_types.c, gwp_types.h,
	  starchart.c, starchart.h: Feature: Distance calculator finished.
	  Some minor bugs are still there though

2004-11-05 20:31  ldipenti

	* src/starchart.c: distance patch

2004-11-04 20:33  ldipenti

	* src/vp_utils.c: Fixed a little logic problem with kore file
	  warning

2004-11-04 19:39  ldipenti

	* src/: game_mgr.c, gwp-game-state.c, vp_utils.c: Bugfix: missing
	  kore file warning only shown once per game

2004-11-04 17:35  ldipenti

	* src/: gwp-py-mappings.c, gwp-py-mappings.defs, gwp-torpspec.c,
	  gwp-torpspec.h, vp_utils.c: API change on GwpTorpSpec
	  get/set_cost(), get/set_ammo_cost()

2004-11-04 16:01  ldipenti

	* src/starchart.c: Fixed the constellations max distance to 84 LY
	  because of the warp well

2004-11-04 09:37  ldipenti

	* configure.in, po/de.po, po/es.po, po/fr.po, po/gwp.pot,
	  po/pt_BR.po: New translation!! pt_BR, thanks to Carlos Paulino

2004-11-04 02:08  ldipenti

	* src/: callbacks.c, callbacks.h, game_mgr.c, gwp-game-state.c,
	  gwp.glade, gwp_types.c, gwp_types.h, starchart.c, starchart.h:
	  Feature: added constellations ala VPA :-)

2004-11-03 17:03  ldipenti

	* src/game_mgr.c: Bugfix: when just added, a new game does not have
	  the turn number data, so it isn't showed on the game manager.

2004-11-03 15:15  ldipenti

	* src/game_mgr.c: Removed useless denug line

2004-11-03 13:57  ldipenti

	* src/starchart.c: Bugfix: starchart centering when double-clicking
	  on planets/ships worked badly when zoom != 100%. Fixed! (thanks
	  Cristian for the report!)

2004-11-01 21:06  ldipenti

	* src/gwp.glade: Added slot for starchart manual creation

2004-10-28 11:28  ldipenti

	* debian/files, debian/gwp.substvars, po/de.po, po/es.po, po/fr.po,
	  po/gwp.pot, src/game_mgr.c, src/global.h, src/starchart.c,
	  src/vp_utils.c: Work in progress: fixing bug #54, "close game"
	  feature

2004-10-26 08:56  ldipenti

	* src/vp_utils.c: Some correction to missing KOREx.DAT file dialog

2004-10-21 16:16  ldipenti

	* src/game_mgr.c: migrated some functions to g_object_set(). Should
	  migrate them all...

2004-10-21 16:13  ldipenti

	* src/: callbacks.c, game_mgr.c, starchart.c: Grid view managed in
	  a MVC way, saved and restored.

2004-10-21 15:58  ldipenti

	* src/gwp-game-state.c: Grid property added

2004-10-21 15:48  ldipenti

	* src/: game_mgr.c, starchart.c: Scanner area view saved and
	  restored properly

2004-10-21 15:40  ldipenti

	* src/starchart.c: Bugfix: planets were placed on the wrong canvas
	  layer: scanner area was on top of them when activated

2004-10-21 15:31  ldipenti

	* src/: callbacks.c, gwp.glade, starchart.c: Scanner area view
	  managed ina a MVC way

2004-10-21 14:44  ldipenti

	* src/: callbacks.c, game_mgr.c, starchart.c: Planet names view
	  migrated to MVC. It's saved and restored properly too.

2004-10-21 14:18  ldipenti

	* src/: callbacks.c, game_mgr.c, starchart.c: Ion Storms &
	  Minefields views are restored and saved properly

2004-10-21 13:35  ldipenti

	* src/starchart.c: Bugfix: on starchart init, planet names were
	  showed no matter the zoom level...fixed!

2004-10-21 12:44  ldipenti

	* src/starchart.c: planet names disabled during development phase

2004-10-18 00:13  ldipenti

	* CHANGES, ChangeLog, Doxyfile, README, VERSION, configure.in,
	  debian/changelog, help/C/gwp.xml, package/gwp-fedora.spec,
	  package/gwp-mdk.spec, po/de.po, po/es.po, src/starchart.c:
	  Release 0.3.3 commit, yeah!

2004-10-17 23:21  ldipenti

	* configure.in: Added conditional check's unit tests

2004-10-12 19:13  ldipenti

	* po/de.po: German translations updated! thanks Stefan!! :-D

2004-10-11 22:31  ldipenti

	* po/: POTFILES.in, de.po, es.po, fr.po, gwp.pot: Merged all .po
	  files with new strings. Updated spanish translation

2004-10-11 21:24  ldipenti

	* help/C/: Makefile.am, gwp.xml, message-reader.xml: Added section
	  for message reader on online help

2004-10-11 18:57  ldipenti

	* src/starchart.c: Finished writing the first draft about MVC's way
	  of handling events from controller to starchart

2004-10-11 15:33  ldipenti

	* help/C/Makefile.am, help/C/aboutgwp.xml,
	  help/C/games_internet.xml, help/C/gwp-C.omf, help/C/gwp.xml,
	  help/C/learnmore.xml, help/C/planet-ops.xml,
	  help/C/plugins-console.xml, help/C/plugins-intro.xml,
	  help/C/plugins-using.xml, help/C/ship-ops.xml,
	  help/C/starbase-ops.xml, help/C/starchart-ops.xml,
	  help/C/vpmechanics.xml, help/C/whatisvp.xml,
	  help/C/figures/game-mgr.png, help/C/figures/plugin-navigator.png,
	  help/C/figures/python-console.png,
	  help/C/figures/starchart-planet.png,
	  help/C/figures/starchart-ship-complete.png,
	  help/C/figures/starchart-ship-simple.png,
	  help/C/figures/starchart-starbase.png,
	  help/C/figures/starchart.png, src/callbacks.c: Bugfix: The online
	  help is working again.  Feature: Online help files were
	  reorganized and expanded.

2004-10-11 13:04  ldipenti

	* src/gwp.glade: Added F1 keystroke for online help

2004-10-11 12:36  ldipenti

	* src/starchart.c: Some optimizations on the planet name creation

2004-10-10 17:57  ldipenti

	* src/game_mgr.c: Bugfix: appbar messages were wrong when only one
	  or none games were defined on the manager

2004-10-10 00:55  ldipenti

	* help/C/gwp.xml: Corrected revision history

2004-10-10 00:26  ldipenti

	* src/: game_mgr.c, game_mgr.h: Bugfix: When editing an existing
	  game, if the race changed the icon didn't.

2004-10-09 21:34  ldipenti

	* src/: callbacks.c, game_mgr.c, game_mgr.h, gwp.glade: New
	  feature: Game Manager's AppBar shows the number of games
	  available.  Bugfix: When adding a new game or editing an existing
	  one, game crashed because it hadn't any plugin manager active yet

2004-10-09 20:18  ldipenti

	* src/callbacks.c: Feature: a,w,s,d keys for starchart scrolling
	  were changed to arrow keys

2004-10-09 20:13  ldipenti

	* src/starchart.c: Bugfix: zoom level corrected, now x,y coord
	  restores correctly when zoom != 100%

2004-10-08 01:41  ldipenti

	* src/: callbacks.c, callbacks.h, game_mgr.c, gwp-game-state.c,
	  gwp-game-state.h, gwp.glade, gwp_types.c, gwp_types.h,
	  starchart.c, starchart.h: New features and fixes: the annoying
	  toolbar is no more, toggle grid and zoom functions moved to
	  "View" menu. Some code cleanup too

2004-10-08 00:36  ldipenti

	* src/game_mgr.c: Feature: Show turn number on game list

2004-10-08 00:21  ldipenti

	* src/callbacks.c: Fixed a missing cast

2004-10-07 19:02  ldipenti

	* src/: callbacks.c, callbacks.h, gwp.glade: Bugfix: iconlist do
	  not segfaults when arrow keys are pressed. Also, hitting Return
	  will open the selected game

2004-10-07 13:32  ldipenti

	* scripts/inittab.py, src/gwp-py-functions.h,
	  src/gwp-py-mappings.c, src/gwp-py-mappings.defs,
	  src/gwp-py-mappings.override: Eliminated old get_dir() method.
	  Corrected plugins to reflect this change

2004-10-07 13:31  ldipenti

	* scripts/plugins/: Makefile.am, magallanes.glade, magallanes.py:
	  New official plugin: Magallanes written by Cristian Abalos, is a
	  ship list browser. Thanks Cristian!

2004-10-07 13:11  ldipenti

	* src/: gwp-py-functions.h, gwp-py-mappings.c,
	  gwp-py-mappings.defs, gwp-py-mappings.override: New python module
	  method: get_system_plugins_dir()

2004-10-07 13:10  ldipenti

	* scripts/navigator.py: "Show Details" button now is at the bottom
	  of the window

2004-10-07 10:47  ldipenti

	* scripts/navigator.py: Bugfix: Now activation/deactivation works
	  fine. I was getting the wrong row based on the current selection
	  instead of the path given on the callback

2004-10-07 01:29  ldipenti

	* scripts/inittab.py, src/game_mgr.c, src/gwp-python.c,
	  src/gwp-python.h: Now plugins are loaded automatically, each game
	  has its own configuration

2004-10-06 20:05  ldipenti

	* scripts/inittab.py, src/game_mgr.c, src/gwp-python.c,
	  src/gwp-python.h: The game manager saves the registered plugins
	  list on GConf. We just need to load it and preload the necessary
	  plugins at game start :-D

2004-10-06 19:34  ldipenti

	* src/main.c: fixed missing conditional include

2004-10-04 01:25  ldipenti

	* src/: callbacks.c, game_mgr.c, gwp-game-state.c, main.c,
	  starchart.c: Some MVC tests being done...

2004-10-02 14:57  ldipenti

	* src/vp_utils.c: PNAMES.DAT data only is used within vp_utils.c
	  file, so pnames global access from game_state was removed

2004-10-01 20:02  ldipenti

	* src/: callbacks.c, game_mgr.c, gwp-game-state.c: First tests
	  about using gobject properties

2004-10-01 12:17  ldipenti

	* src/: game_mgr.c, game_mgr.h: GwpGameState loading code from
	  GConf encapsulated on a function

2004-10-01 11:29  ldipenti

	* src/: game_mgr.c, game_mgr.h, gwp-game-state.c, gwp-game-state.h:
	  old gwp_game_state_save() function moved to game_mgr_save_game().

2004-09-30 19:22  ldipenti

	* src/vp_utils.c: Removed old zoom init code

2004-09-30 16:56  ldipenti

	* src/: callbacks.c, game_mgr.c, game_mgr.h: Corrections and
	  cleanups for legacy code from game_state.[ch]

2004-09-30 15:20  ldipenti

	* src/Makefile.am, src/callbacks.c, src/game_mgr.c, src/game_mgr.h,
	  src/game_state.c, src/game_state.h, src/global.h,
	  src/gwp-game-state.c, src/gwp-game-state.h, src/gwp-messages.c,
	  src/gwp-minefield.c, src/gwp-planet.c, src/gwp-py-mappings.c,
	  src/gwp-py-mappings.override, src/gwp-python.c, src/gwp-ship.c,
	  src/gwp-vcrfile.c, src/main.c, src/message-reader.c,
	  src/starchart.c, src/tables.c, src/vp_utils.c, tests/Makefile.am:
	  Old structure-based GameState & GameSettings types were migrated
	  to one and only GwpGameState GObject type. All files updated.

2004-09-29 15:58  ldipenti

	* src/gwp-ship.c: new signal for GwpShip: "selected"

2004-09-29 15:58  ldipenti

	* src/callbacks.c: emit signal on ship selection

2004-09-29 15:57  ldipenti

	* scripts/inittab.py: Implemented the event-hub: the plugin manager
	  connects itself to every signal it wants, then it broadcast every
	  signal to their active plugins. Each plugin must decide which
	  signal to respond.

2004-09-29 15:56  ldipenti

	* scripts/plugins/finder.py: removed useless comments

2004-09-28 23:46  ldipenti

	* generate_py_mappings.sh, src/gwp-py-mappings.c,
	  src/gwp-py-mappings.defs: Removed unused gobject type on python
	  mappings

2004-09-28 17:55  ldipenti

	* src/gwp-python.c: 'Plugins' menu now is inserted before the Help
	  menu entry

2004-09-28 17:05  ldipenti

	* scripts/inittab.py, src/gwp-py-mappings.c, src/gwp-python.c:
	  PluginManager manages menu entry method

2004-09-28 17:03  ldipenti

	* scripts/plugins/finder.py: Finder registers itself on the plugins
	  menu

2004-09-28 17:03  ldipenti

	* scripts/navigator.py: Navigator registers itself on the plugins
	  menu

2004-09-28 07:34  ldipenti

	* scripts/inittab.py, src/gwp-python.c, src/gwp-ui.c,
	  src/gwp.glade: Transport commit!

2004-09-28 00:54  ldipenti

	* po/POTFILES.in: New gettextized file

2004-09-27 22:10  ldipenti

	* src/: vp_utils.h, vp_utils.c: static-fied some funcs

2004-09-19 21:38  ldipenti

	* scripts/inittab.py: Substract 16 to key state

2004-09-19 20:08  ldipenti

	* src/gwp-py-mappings.c, src/gwp-py-mappings.defs,
	  src/gwp-py-mappings.override, src/gwp-ui.c, src/gwp-ui.h,
	  tests/Makefile.am, tests/check-gwp-ui.c, tests/check-gwp.c:
	  Design change: GWP's User Interface API won't be through a
	  GObject, ite makes no sense. gwp-ui.[ch] now contain simple
	  functions

2004-09-13 18:55  ldipenti

	* contrib/: appendix.txt, filefmt.txt: New data files from Stefan

2004-09-13 01:06  ldipenti

	* scripts/: inittab.py, navigator.py, plugins/finder.py: Code
	  cleanup: now PluginManager manages plugin classes, and
	  initializes instances only when plugin are activated

2004-09-11 19:21  ldipenti

	* src/: gwp-py-functions.h, gwp-py-mappings.c,
	  gwp-py-mappings.defs, gwp-py-mappings.override: New method for
	  python module: get_path_pic_hull(hull_nr), returns a string with
	  the hull picture filename path.

2004-09-06 19:25  ldipenti

	* scripts/inittab.py: Ignore all user plugins different from *.py
	  on load

2004-09-06 10:13  cvs-sven

	* src/: gwp-vcrfile.c, gwp-vcrfile.h: gwp-vcrfile.c/.h provide the
	  functionality of reading the visual combat recordings file
	  (vcrX.dat)

2004-09-06 10:11  cvs-sven

	* src/: Makefile.am, callbacks.c, callbacks.h, gwp-messages.c,
	  gwp.glade, vcr-combat.c, vcr-combat.h, vcr.c, vcr.h: A first
	  version of the Visual Combat Recorder (VCR) - which can now read
	  the vcrX.dat files and replay the recorded combats visually

2004-09-06 01:05  ldipenti

	* scripts/plugins/finder.py: Added a long description to Finder

2004-09-06 00:50  ldipenti

	* scripts/navigator.py: Added plugin details pane

2004-09-05 23:03  ldipenti

	* scripts/inittab.py: updated doc string on Plugin class

2004-09-05 21:42  ldipenti

	* scripts/inittab.py: Trivial output bug

2004-09-05 21:39  ldipenti

	* scripts/navigator.py, src/gwp-py-functions.h,
	  src/gwp-py-mappings.defs: New functions on gwp python module,
	  thanks to Cristian :-)

2004-09-05 21:36  ldipenti

	* scripts/inittab.py: New features: key events are saved with
	  modifiers (Alt, Ctrl, etc). When unregistering a plugin..the
	  PluginManager unregister the key events for itself

2004-09-05 21:30  ldipenti

	* scripts/plugins/finder.py: unregister key events not need

2004-09-05 20:29  ldipenti

	* src/: gwp-py-mappings.override, gwp-py-mappings.c: Added
	  get_race_name() function

2004-09-05 20:11  ldipenti

	* src/: gwp-py-mappings.override, gwp-py-mappings.c: Added
	  get_truehull() function, returns a dict of dicts with the
	  race->hulls assignments

2004-09-03 10:00  ldipenti

	* tests/Makefile.am: Removed some unused source files from test
	  definition

2004-09-03 01:26  ldipenti

	* src/gwp-ship.c: Marked a couple of functions to be tested

2004-09-03 01:24  ldipenti

	* scripts/: navigator.py, inittab.py: Changed visibility of plugin
	  manager attribute

2004-09-03 00:44  ldipenti

	* tests/: Makefile.am, check-gwp-ship.c, check-gwp.c: New test for
	  gwp-ship

2004-09-01 02:27  ldipenti

	* scripts/inittab.py: Preliminary code to load user plugins

2004-08-31 18:36  ldipenti

	* scripts/: inittab.py, plugins/finder.py: Completed basic
	  functionality on PluginManager and some tweaks on finder plugin

2004-08-31 18:33  ldipenti

	* src/gwp-python.c: auto-load PluginNavigator system plugin

2004-08-31 18:32  ldipenti

	* scripts/Makefile.am: Added PluginNavigator plugin to build system

2004-08-31 18:31  ldipenti

	* scripts/navigator.py: First working version of PluginNavigator

2004-08-31 09:33  ldipenti

	* scripts/plugins/Makefile.am: Adding missing Makefile.am

2004-08-31 01:49  ldipenti

	* scripts/inittab.py: Added attribute, changed some attr names

2004-08-30 23:55  ldipenti

	* src/starchart.c: Removed planet name data from starchart --
	  temporal bugfix

2004-08-30 23:52  ldipenti

	* scripts/inittab.py: plugins are loaded to available list from
	  global namspace

2004-08-30 02:19  ldipenti

	* scripts/inittab.py: Several additions to PluginManager towards an
	  initial register/unregister plugin mechanism

2004-08-30 02:17  ldipenti

	* scripts/plugins/finder.py: Enhancement: plugins hides and
	  re-shows when called.

2004-08-30 01:41  ldipenti

	* scripts/plugins/finder.py: Changed the way the keyval is
	  referenced

2004-08-29 19:19  ldipenti

	* po/: fr.po, gwp.pot: French translation synced to 0.3.2 version

2004-08-27 20:40  ldipenti

	* scripts/: inittab.py, plugins/finder.py: PluginManager looks for
	  available plugins on {prefix}/share/gwp/scripts/plugins, and
	  insert them on the "available plugins" list

2004-08-27 19:19  ldipenti

	* scripts/inittab.py: Corrected some attribute names

2004-08-27 12:05  ldipenti

	* scripts/Makefile.am, scripts/plugins/finder.py,
	  src/gwp-py-functions.h, src/gwp-py-mappings.c,
	  src/gwp-py-mappings.defs, src/gwp-py-mappings.override: stuff

2004-08-27 11:57  ldipenti

	* configure.in: New plugins directory

2004-08-27 07:59  ldipenti

	* scripts/inittab.py: Some additions to the PluginManager class

2004-08-27 02:04  ldipenti

	* tests/: check-gwp-object.c, check-gwp-ui.c, check-gwp.c: New unit
	  test using signal checking

2004-08-26 17:04  ldipenti

	* scripts/inittab.py: Some work being done on the plugin framework

2004-08-26 02:28  ldipenti

	* scripts/gtkcons.py, scripts/inittab.py, src/callbacks.c,
	  src/gwp-py-functions.h, src/gwp-py-mappings.c,
	  src/gwp-py-mappings.defs, src/gwp-py-mappings.override,
	  src/gwp-python.c: First working version: PluginManager. It can
	  register callbacks to certain key presses

2004-08-25 21:34  ldipenti

	* scripts/inittab.py, src/callbacks.c, src/gwp-python.c,
	  src/gwp-python.h: "transport commit" -- going home without
	  solving the problem

2004-08-25 20:06  ldipenti

	* scripts/inittab.py: Register a new PluginManager on load

2004-08-25 20:05  ldipenti

	* src/vp_utils.c: PluginManager registration function called after
	  all data loading

2004-08-25 02:19  ldipenti

	* scripts/Makefile.am, scripts/inittab.py, src/callbacks.c,
	  src/game_state.c, src/game_state.h, src/gwp-py-functions.h,
	  src/gwp-py-mappings.c, src/gwp-py-mappings.defs,
	  src/gwp-py-mappings.override, src/gwp-python.c, src/gwp-python.h:
	  Initial tests on plugin manager implemented in python

2004-08-24 17:58  ldipenti

	* src/: game_state.c, game_state.h, global.h: Some corrections to
	  Python.h includes

2004-08-24 10:09  ldipenti

	* src/: callbacks.c, game_state.c, game_state.h, gwp-py-mappings.c,
	  gwp-py-mappings.override: Commit for file exchange

2004-08-23 19:43  ldipenti

	* docs/plugins.txt: Some corrections

2004-08-23 16:35  ldipenti

	* src/Makefile.am, src/check-gwp-object.c, src/check-gwp-ui.c,
	  src/check-gwp.c, src/gwp-ui.c, tests/Makefile.am: Unit test
	  finally moved to their own tests/ directory. From now on...we
	  should use automake-1.7

2004-08-23 11:55  ldipenti

	* Makefile.am, autogen.sh, configure.in, src/Makefile.am,
	  tests/Makefile.am, tests/check-gwp-object.c,
	  tests/check-gwp-ui.c, tests/check-gwp.c: unit tests on 'tests'
	  directory. Automake version needed: 1.7

2004-08-23 11:49  ldipenti

	* tests/Makefile.am: New include path

2004-08-21 22:57  ldipenti

	* generate_py_mappings.sh, src/Makefile.am, src/callbacks.c,
	  src/check-gwp-ui.c, src/check-gwp.c, src/game_state.c,
	  src/game_state.h, src/gwp-py-functions.h, src/gwp-py-mappings.c,
	  src/gwp-py-mappings.defs, src/gwp-py-mappings.override,
	  src/gwp-python.c, src/gwp-ui.c, src/gwp-ui.h, src/gwp.glade: New
	  code: starting works for plugin architecture

2004-08-21 12:48  ldipenti

	* docs/plugins.txt: First draft on plugin specification

2004-08-20 02:11  ldipenti

	* Makefile.am, debian/files, debian/gwp.substvars, src/Makefile.am,
	  src/check-gwp-object.c, src/check-gwp.c: unit tests rewritten to
	  reflect the use of the custom check framework

2004-08-20 02:10  ldipenti

	* releaser.sh: corrected web dir name

2004-08-18 21:01  ldipenti

	* src/callbacks.c: When a  planet is selected on the starchart, it
	  emits the "selected" signal

2004-08-18 21:00  ldipenti

	* src/gwp-planet.c: Added signal "selected" to planet...just a test

2004-08-16 08:56  cvs-sven

	* src/gwp-messages.h: just small changes to the message-colouring
	  system

2004-08-16 08:55  cvs-sven

	* src/gwp-messages.c: just small improvements to the
	  message-colouring system

2004-08-13 07:43  ldipenti

	* src/Makefile.am: New module test

2004-08-13 07:43  ldipenti

	* src/check-gwp.c: Modifications to load all other tests ad run
	  them

2004-08-13 07:42  ldipenti

	* src/gwp-object.c: Some minor corrections

2004-08-13 07:42  ldipenti

	* src/check-gwp-object.c: New tests

2004-08-12 15:44  ldipenti

	* src/check-gwp.c: Added fallback code when check support is
	  disabled

2004-08-12 15:32  ldipenti

	* Makefile.am, configure.in, src/Makefile.am, src/check-gwp.c:
	  Initial unit test (check framework) code, autoconf settings to
	  include all the needed params to build system

2004-08-12 14:16  ldipenti

	* autogen.sh, aclocal-macros/check.m4: Added check unit test
	  framework macro to local macro directory

2004-08-05 12:57  cvs-sven

	* src/: gwp-messages.c, gwp-messages.h, message-reader.c,
	  vcr-combat.c: message reader uses different subject-colours
	  according to the message body (bad news, good news, etc ..)

2004-08-05 12:07  ldipenti

	* ChangeLog: New ChangeLog

2004-07-07 01:13  ldipenti

	* CHANGES, Doxyfile, Makefile.am, VERSION, configure.in,
	  debian/changelog, package/gwp-fedora.spec, package/gwp-mdk.spec,
	  po/de.po, po/es.po, po/fr.po, po/gwp.pot: Release 0.3.2 commit,
	  yeah!

2004-07-07 00:45  ldipenti

	* releaser.sh: Changes because of the name change of the changelog

2004-07-07 00:39  ldipenti

	* CHANGES, ChangeLog: ChangeLog file renamed, because 'ChangeLog'
	  will be used with cvs2cl utility

2004-07-07 00:33  ldipenti

	* po/POTFILES.in: Typo fixed

2004-07-06 12:14  ldipenti

	* src/gwp-utils.c: oops, some FIXME messages eliminated

2004-07-06 12:13  ldipenti

	* src/gwp-utils.c: HIGified warning dialog

2004-07-06 12:12  ldipenti

	* src/callbacks.c: warning message added when python support is
	  disabled and the python console menuitem is selected

2004-07-06 11:39  cvs-sven

	* po/POTFILES.in, src/vcr-combat-gl.c, src/vcr-combat.c: small
	  change, allowing non-gtkglext information text to be translated

2004-07-05 19:16  cvs-sven

	* src/: gwp.glade, vcr-combat-gl.c, vcr-combat-gl.h, vcr-combat.c,
	  vcr-combat.h, vcr.c, vcr.h: battle calculation becomes alpha :-)

2004-07-05 17:14  cvs-sven

	* src/: vcr-combat-gl.c, vcr-combat-gl.h, vcr-combat.c, vcr.c,
	  vcr.h: one small step for man, one big step for ... someone else

2004-07-05 12:53  cvs-sven

	* src/vcr-combat-gl.c: bugfix: --enable-gtkglext=no works now

2004-07-05 12:33  cvs-sven

	* src/: vcr-combat-gl.c, vcr-combat.c, vcr.c: small bug-fix for
	  not-gtkglext-users

2004-07-05 11:08  ldipenti

	* configure.in: Added option --enable-gtkglext=[yes|no] to
	  configure script

2004-07-05 07:26  cvs-sven

	* src/callbacks.c: just a tiny cleanup

2004-07-05 07:23  cvs-sven

	* src/: gwp.glade, vcr-combat.c, vcr-combat.h: many calculation
	  bug-fixes, the biggest ones: 1) torpedo chance to hit was wrong
	  2) beam-weapon range against fighters was wrong 3) destroyed
	  fighters were not replaced

2004-07-04 23:01  ldipenti

	* src/: gwp-starchart.c, gwp-starchart.h: planets, ships and
	  locations per quad hashes implemented on the new starchart data
	  model

2004-07-04 22:48  ldipenti

	* src/Makefile.am: New files added

2004-07-04 22:41  ldipenti

	* src/: global.h, callbacks.c, starchart.c, starchart.h: More code
	  cleaning: old planets_per_quad hash table eliminated,
	  gwp_planets_per_quad hash replaces it now, no hash table
	  *_per_quad is a GnomeCanvasItem anymore, we're getting rid of the
	  graphic engine dependency.

2004-07-04 20:40  cvs-sven

	* src/vcr-combat.c: bug-fixes in fighter preparation

2004-07-04 18:48  cvs-sven

	* src/: vcr-combat.c, vcr-combat.h: battle calculation is in alpha

2004-07-03 20:31  ldipenti

	* src/: global.h, vp_utils.c: shipxy_list global variable went bye
	  bye

2004-07-03 20:21  ldipenti

	* src/: starchart.h, starchart.c: get_ships_from_coords()
	  eliminated, cleaning the code...

2004-07-03 18:43  ldipenti

	* src/: vp_utils.c, global.h: XYPLAN global variable... gone!

2004-07-03 18:33  ldipenti

	* src/: starchart.c, starchart.h: Unnecessary function eliminated,
	  keeping the code clean! :-)

2004-07-03 16:55  ldipenti

	* src/: vp_utils.h, vp_utils.c, global.h: base_list global variable
	  eliminated, it wasn't needed

2004-07-03 12:19  cvs-sven

	* src/: vcr-combat.c, vcr-combat.h: again nothing visible, but
	  fighters launch, fight, fire and land

2004-07-01 19:50  cvs-sven

	* src/: vcr-combat-gl.c, vcr-combat-gl.h, vcr-combat.c,
	  vcr-combat.h, vcr.c: something moves beneath the hood ...  (many
	  changes, nothing to be seen)

2004-07-01 01:40  ldipenti

	* src/: gwp-starchart.c, gwp-starchart.h: Initial works on object
	  starchart

2004-06-29 11:32  cvs-sven

	* pixmaps/vcr-textures/planet_earth.bmp,
	  pixmaps/vcr-textures/planet_universe.bmp, src/vcr-combat-gl.c,
	  src/vcr-combat-gl.h: slow but steady ... many changes under the
	  hood

2004-06-25 23:33  ldipenti

	* src/: global.h, starchart.c: changed ship scanner area color and
	  transparency

2004-06-24 10:57  ldipenti

	* src/vcr-combat-gl.c: Textures activated on combat simulator

2004-06-24 06:33  cvs-sven

	* pixmaps/vcr-textures/planet_universe.bmp, src/vcr-combat-gl.c:
	  use of textures is disabled by default, to enable set #undef
	  USE_TEXTURES to #define USE_TEXTURES in src/vcr-combat-gl.c

2004-06-23 14:05  cvs-sven

	* pixmaps/vcr-textures/Makefile.am, src/vcr-combat-gl.c: a small
	  step for me, ... that's it

2004-06-23 14:03  cvs-sven

	* pixmaps/vcr-textures/planet_universe.bmp: picture of a star
	  filled sky, mapped to the combat background

2004-06-23 11:12  cvs-sven

	* src/: vcr-combat-gl.c, vcr-combat-gl.h: vcr-combat-gl: improved
	  .bmp file loading and texture generation

2004-06-22 10:58  cvs-sven

	* src/vcr-combat-gl.c: another version with small changes in
	  approach to alpha-state

2004-06-22 10:49  ldipenti

	* configure.in, pixmaps/Makefile.am,
	  pixmaps/vcr-textures/Makefile.am,
	  pixmaps/vcr-textures/planet_earth.bmp, src/global.h: Added VCR
	  textures directory

2004-06-22 10:39  cvs-sven

	* src/: vcr-combat-gl.c, vcr-combat-gl.h: first pre-alpha shot of
	  texture-support in open-gl graphics ...

2004-06-21 22:25  ldipenti

	* src/: gwp-py-functions.c, gwp-py-functions.h, gwp-py-mappings.c:
	  Some minor fixes, I don't remember :-)

2004-06-21 22:23  ldipenti

	* src/gwp.glade: Ship detection area added to starchart

2004-06-21 22:18  ldipenti

	* src/: starchart.c, global.h, game_state.h, callbacks.h,
	  callbacks.c, game_state.c, starchart.h, gwp_types.c, gwp_types.h:
	  Ship detection area added to starchart

2004-06-21 22:17  ldipenti

	* ChangeLog: ..

2004-06-21 22:17  ldipenti

	* ChangeLog: added some changes to the log

2004-06-21 22:02  ldipenti

	* src/gwp-py-mappings.override: fixed minor error

2004-06-21 17:17  cvs-sven

	* src/: vcr-combat-gl.c, vcr-combat-gl.h: if you can read this you
	  have too much time :-)

2004-06-21 09:09  cvs-sven

	* src/: trackball.c, trackball.h, vcr-combat-gl.c, vcr-combat-gl.h:
	  lots of changes, but still an incredible construction site far
	  from usable ...

2004-06-21 09:08  cvs-sven

	* TODO, src/Makefile.am, src/gwp.glade, src/vcr-combat.c,
	  src/vcr.c, src/vcr.h: lots of changes, but still an incredible
	  construction site far from usable...

2004-06-21 00:54  ldipenti

	* gwp.desktop.in: Corrected category

2004-06-20 20:44  ldipenti

	* src/: gwp-py-functions.h, gwp-py-mappings.c,
	  gwp-py-mappings.defs, gwp-py-mappings.override: Added
	  planet_get_list() python module function. Minimal Python
	  finished.

2004-06-20 20:34  ldipenti

	* src/vp_utils.c: removed python include

2004-06-19 22:00  ldipenti

	* src/gwp-py-mappings.defs: New python method: ship_get_list()

2004-06-19 21:58  ldipenti

	* src/: gwp-py-mappings.override, gwp-py-mappings.c,
	  gwp-py-functions.c, gwp-py-functions.h: New method:
	  ship_get_list() for python

2004-06-19 00:52  ldipenti

	* src/gwp-py-mappings.override: Override method to be python
	  firendly

2004-06-18 20:58  ldipenti

	* src/: gwp-py-functions.c, gwp-py-functions.h: new file: generic
	  gwp python module funcs

2004-06-18 18:52  ldipenti

	* generate_py_mappings.sh, src/Makefile.am, src/gwp-beamspec.c,
	  src/gwp-beamspec.h, src/gwp-engspec.c, src/gwp-engspec.h,
	  src/gwp-flying-object.c, src/gwp-flying-object.h,
	  src/gwp-hullspec.c, src/gwp-hullspec.h, src/gwp-ion-storm.c,
	  src/gwp-ion-storm.h, src/gwp-object.c, src/gwp-object.h,
	  src/gwp-planet.c, src/gwp-planet.h, src/gwp-py-mappings.c,
	  src/gwp-py-mappings.defs, src/gwp-py-mappings.override,
	  src/gwp-ship.c, src/gwp-ship.h, src/gwp-torpspec.c,
	  src/gwp-torpspec.h, src/starchart.c, src/vcr.c, src/vp_utils.c:
	  Big API change: all functions that returned or received GString*
	  were changed to manipulate just gchar*

2004-06-18 17:03  ldipenti

	* src/vcr.c: Changing GObject API: functions won't return/receipt
	  GString* anymore!

2004-06-18 12:00  ldipenti

	* src/: gwp-py-mappings.c, gwp-py-mappings.defs,
	  gwp-py-mappings.override, gwp-ship.c, gwp-ship.h: Proof of
	  concept: getting live objects from C to Python, it works :-)

2004-06-18 09:03  cvs-sven

	* src/: gwp.glade, message-reader.c, vcr-combat.c, vcr-combat.h,
	  vcr.c, vcr.h: minor bugfixes

2004-06-17 17:42  cvs-sven

	* src/: gwp.glade, vcr-combat.c, vcr-combat.h, vcr.c: vcr has
	  simulation and logging tabs

2004-06-17 13:56  ldipenti

	* src/gwp.glade: Python console menu item was missing

2004-06-17 09:05  cvs-sven

	* src/vcr.c: tiny tiny changes ... but: release early, release
	  often

2004-06-17 09:03  cvs-sven

	* src/: gwp.glade, vcr.c: vcr: small bugfixes in gui

2004-06-17 08:46  cvs-sven

	* src/vcr-combat.c: vcr combat simulator

2004-06-17 08:46  cvs-sven

	* src/vcr-combat.h: header file for vcr combat simulator

2004-06-17 08:41  cvs-sven

	* src/: Makefile.am, gwp.glade, vcr.c, vcr.h: vcr passes combat
	  relevant data to vcr-combat

2004-06-16 01:09  ldipenti

	* generate_py_mappings.sh, src/gwp-beamspec.h, src/gwp-engspec.h,
	  src/gwp-flying-object.c, src/gwp-flying-object.h,
	  src/gwp-hullspec.h, src/gwp-ion-storm.c, src/gwp-ion-storm.h,
	  src/gwp-location.c, src/gwp-location.h, src/gwp-minefield.c,
	  src/gwp-minefield.h, src/gwp-object.h, src/gwp-planet.c,
	  src/gwp-planet.h, src/gwp-py-mappings.c,
	  src/gwp-py-mappings.defs, src/gwp-py-mappings.override,
	  src/gwp-ship.c, src/gwp-ship.h, src/gwp-starbase.h,
	  src/gwp-torpspec.h: Added GwpLocation and GwpMinefield types to
	  Python mapping. Corrected all type definition macros on other GWP
	  types

2004-06-15 14:45  ldipenti

	* Makefile.am, src/global.h, src/gwp.glade: new gtkcons.py -
	  eliminated old console

2004-06-15 14:08  ldipenti

	* scripts/gtkcons.py: gwp module automatic import

2004-06-15 13:50  ldipenti

	* src/: callbacks.h, callbacks.c: eliminated unnecessary console
	  callbacks

2004-06-15 13:26  ldipenti

	* scripts/: Makefile.am, gtkcons.py: Added gtkcons.py :-D

2004-06-15 13:25  ldipenti

	* configure.in, src/callbacks.c: Added gtkcons.py!! :-D

2004-06-15 07:36  cvs-sven

	* src/vcr.c: vcr: bug-fix: preventing several lists from being
	  filled several times

2004-06-15 01:39  ldipenti

	* ChangeLog, configure.in, generate_py_mappings.sh, po/de.po,
	  po/es.po, po/gwp.pot, src/Makefile.am, src/gwp-beamspec.h,
	  src/gwp-engspec.h, src/gwp-flying-object.c,
	  src/gwp-flying-object.h, src/gwp-hullspec.h, src/gwp-ion-storm.h,
	  src/gwp-object.h, src/gwp-planet.h, src/gwp-py-mappings.c,
	  src/gwp-py-mappings.defs, src/gwp-py-mappings.override,
	  src/gwp-python.c, src/gwp-ship.c, src/gwp-ship.h,
	  src/gwp-starbase.h, src/gwp-torpspec.h, src/starchart.c,
	  src/vp_utils.c: GObject -> Python classes mapping started, I
	  changed a little the API on gwp-flying-object.[ch] because the
	  codegen parser required it. Added pygtk-2.0 checks on autoconf,
	  and several macros to GObjects needed by the mapping.

2004-06-14 15:11  cvs-sven

	* src/: callbacks.c, callbacks.h, gwp.glade, vcr.c, vcr.h: vcr:
	  selecting all ships/races/hulls/values is in beta

2004-06-14 10:28  ldipenti

	* src/: gwp-utils.h, gwp-utils.c: Removed unnecessary function

2004-06-13 21:38  ldipenti

	* releaser.sh: reomved unnecesary line change

2004-06-13 21:30  ldipenti

	* configure.in: lowering the libglade minimum version requirement

2004-06-13 21:25  ldipenti

	* configure.in, src/Makefile.am, releaser.sh: Corrected libgnomeui
	  and libglade requirement checks, added GtkGlExt check for VCR
	  player

2004-06-13 21:21  ldipenti

	* configure.in: Corrected libgnomeui and libglade requirement
	  checks, added GtkGlExt check for VCR player

2004-06-13 20:49  cvs-sven

	* src/: callbacks.c, callbacks.h, gwp.glade, vcr.c, vcr.h: vcr:
	  selecting the race changes the hull-choices (race a, too)

2004-06-13 20:41  cvs-sven

	* src/: callbacks.c, callbacks.h, gwp.glade, vcr.c, vcr.h: vcr:
	  selecting the race fills the hulls-list

2004-06-13 12:24  ldipenti

	* VERSION, releaser.sh: VERSION file will have the last version
	  number, from where the website will take the info to show it on
	  the main page. The releaser script was updated to manage this
	  file.

2004-06-13 01:17  ldipenti

	* src/: callbacks.c, callbacks.h, gwp-python.c, gwp-python.h,
	  gwp-utils.c, gwp-utils.h, gwp.glade, main.c, vp_utils.c: Some
	  advance on python console

2004-06-12 20:29  ldipenti

	* src/: vp_utils.c, global.h, starchart.c: truehull global var now
	  has all race->hulls assignments

2004-06-12 19:56  ldipenti

	* src/callbacks.c: Added Sven on the authors list!!

2004-06-12 13:15  cvs-sven

	* src/gwp.glade: no hardcoded spec-lists in vcr

2004-06-12 13:12  cvs-sven

	* src/: callbacks.c, callbacks.h, vcr.c, vcr.h: vcr is able to get
	  ships values for all own ships

2004-06-10 09:27  ldipenti

	* configure.in, po/de.po, po/es.po, po/fr.po, po/gwp.pot: French
	  translation initiated

2004-06-10 00:31  ldipenti

	* configure.in, debian/files, debian/gwp.substvars, po/de.po,
	  po/es.po, po/gwp.pot, src/Makefile.am, src/callbacks.c,
	  src/gwp-python.c, src/gwp-python.h, src/gwp-ship.h,
	  src/gwp.glade, src/main.c: Various mods. The main one: change the
	  build system to check for Python and add python support to the
	  build.

2004-06-09 11:47  ldipenti

	* src/: gwp-utils.c, gwp-utils.h: new function

2004-06-09 11:34  cvs-sven

	* src/: vcr.c, vcr.h: prototype of the visual combat recorder VCR

2004-06-09 10:16  cvs-sven

	* TODO, src/Makefile.am, src/callbacks.c, src/callbacks.h,
	  src/gwp.glade: added a visual combat recorder prototype

2004-06-08 17:25  ldipenti

	* src/gwp.glade: New python console UI defined

2004-06-07 14:24  cvs-sven

	* src/: callbacks.c, gwp-messages.c, gwp-messages.h,
	  message-reader.c: treeview: message is highlighted when using
	  next/prev buttons

2004-06-07 10:52  cvs-sven

	* src/message-reader.c: bug-fix: message-reader, converting to
	  UTF-8

2004-06-06 18:58  ldipenti

	* ChangeLog, Doxyfile, TODO, configure.in, releaser.sh,
	  debian/changelog, package/gwp-fedora.spec, package/gwp-mdk.spec:
	  Release 0.3.1 commit, yeah!

2004-06-06 04:45  ldipenti

	* src/: gwp-object.c, gwp.glade, vp_unpack.c: Some misc changes....

2004-06-06 04:30  ldipenti

	* src/vp_utils.c: removed some check messages to console

2004-06-06 04:28  ldipenti

	* TODO, src/vp_utils.c: Bugfix: visual contacts from KOREx.DAT were
	  not loaded, corrected!

2004-06-05 17:55  ldipenti

	* TODO: Some new TODOs

2004-06-05 15:13  cvs-sven

	* TODO, src/callbacks.c, src/gwp-messages.c, src/gwp-messages.h,
	  src/message-reader.c, src/message-reader.h: message reader
	  improvements

2004-06-04 16:21  cvs-sven

	* src/: callbacks.c, gwp-messages.c, message-reader.c,
	  message-reader.h: new message-reader

2004-06-04 12:18  cvs-sven

	* src/: gwp-messages.c, message-reader.c: new message reader
	  treeview

2004-06-04 12:07  ldipenti

	* src/gwp.glade: Reader: Added a string to label to allow selecting
	  it from glade-2

2004-06-04 12:05  ldipenti

	* src/gwp.glade: Layout re-styling

2004-06-04 11:53  cvs-sven

	* src/: callbacks.c, callbacks.h, gwp-messages.c, gwp-messages.h,
	  message-reader.c, message-reader.h: new version of message-reader
	  with expandable/collapsable rows

2004-06-04 11:26  cvs-sven

	* src/gwp.glade: bug-fix: rows could get
	  selected/expanded/collapsed

2004-06-04 11:25  ldipenti

	* src/game_mgr.c: Minor bugfix: When unpacking, the new turn number
	  wasn't loaded on time to copy the new mdata file to the history
	  directory

2004-06-03 19:35  ldipenti

	* src/gwp.glade: Some minor corrections because of the glade
	  version change

2004-06-03 18:53  cvs-sven

	* src/: callbacks.c, callbacks.h, gwp-ship.c, gwp.glade,
	  message-reader.c, vp_utils.c: [no log message]

2004-06-03 18:41  ldipenti

	* src/message-reader.c: a couple of minor fixes

2004-06-03 17:39  ldipenti

	* src/game_mgr.c: Message files are copied to the 'message-history'
	  directory.

2004-06-03 15:37  cvs-sven

	* src/message-reader.c: changed the treeview in message-reader to
	  display the messages in categories

2004-06-03 12:02  cvs-sven

	* src/: gwp-messages.c, gwp-messages.h, message-reader.c: small bug
	  fix: message-turn-combobox increased constantly

2004-06-03 11:41  cvs-sven

	* src/gwp.glade: added change-event to the message-turn-GtkComboBox

2004-06-03 07:47  ldipenti

	* src/: Makefile.am, callbacks.c, callbacks.h, gwp-messages.c,
	  gwp-messages.h, gwp.glade, message-reader.c, message-reader.h:
	  New merge from Sven's work on the message reader: new improved UI
	  and message history.

2004-05-30 19:32  ldipenti

	* src/game_mgr.c, src/game_state.c, ChangeLog: Bug fixed: new gwp
	  users was having problems with gwp format version checks

2004-05-25 02:21  ldipenti

	* package/gwp-mdk.spec: Autodetect dependencies on mdk spec

2004-05-25 00:29  ldipenti

	* package/: gwp-fedora.spec, gwp-mdk.spec, gwp.spec: Now two spec
	  files: fedora & mandrake

2004-05-24 01:23  ldipenti

	* ChangeLog: date to changelog

2004-05-24 01:02  ldipenti

	* ChangeLog, Doxyfile, configure.in, releaser.sh, debian/changelog,
	  debian/gwp.substvars, help/C/gwp.xml,
	  help/C/figures/game-mgr-edit-game.png,
	  help/C/figures/game-mgr.png, help/C/figures/starchart-planet.png,
	  help/C/figures/starchart-ship-complete.png,
	  help/C/figures/starchart-ship-simple.png,
	  help/C/figures/starchart-starbase.png,
	  help/C/figures/starchart.png, package/gwp.spec, po/de.po,
	  po/es.po, po/gwp.pot, src/Makefile.am, src/callbacks.c,
	  src/callbacks.h, src/gwp-object.c, src/gwp-object.h,
	  src/gwp.glade, src/starchart.c: Release 0.3.0 commit, yeah!

2004-05-24 00:15  ldipenti

	* src/: gwp-messages.c, gwp-messages.h: Initial message reader for
	  GWP, contribution from Sven!

2004-05-23 13:19  ldipenti

	* src/vp_utils.c: More bugfixing

2004-05-23 12:52  ldipenti

	* src/vp_utils.c: debugging

2004-05-23 04:51  ldipenti

	* src/: callbacks.c, callbacks.h, game_mgr.c, global.h, gwp.glade,
	  main.c, mission.c, mission.h, starchart.c, starchart.h,
	  vp_utils.c, vp_utils.h: UI bugfixes, Starbase UI finished,
	  release 0.3.0 is very close.

2004-05-22 21:08  ldipenti

	* src/: starchart.c, gwp-ship.c, gwp-ship.h, vp_utils.c: Added
	  unknown ships mass

2004-05-22 17:32  ldipenti

	* src/starchart.c: ETA calculation fixed for ships with waypoint
	  set but warp 0 speed

2004-05-22 00:20  ldipenti

	* src/gwp.glade: Message reader UI completion

2004-05-21 20:08  ldipenti

	* src/starchart.c: If ship is towing nothing, say so.

2004-05-21 20:03  ldipenti

	* ChangeLog: calculate_mass method now checks if ship is laying
	  mines

2004-05-21 19:59  ldipenti

	* src/: gwp-ship.h, gwp-ship.c: calculate_mass method now checks if
	  ship is laying mines

2004-05-21 03:06  ldipenti

	* src/gwp.glade: Initial simple message reader UI

2004-05-20 01:32  ldipenti

	* src/starchart.c: Ship's waypoint changed to location name

2004-05-19 10:04  ldipenti

	* src/gwp-engspec.c: Bugfix: Fuel usage calculation fixed, thanks
	  to summ!

2004-05-18 01:34  ldipenti

	* src/gwp.glade: Several bugfixes

2004-05-18 01:32  ldipenti

	* src/starchart.c: Ship list performance improvement

2004-05-18 00:59  ldipenti

	* src/: starchart.c, starchart.h, global.h: First implementation of
	  location name function, used by anyone who wants to print the
	  name of any location

2004-05-17 23:26  ldipenti

	* src/: race.c, starchart.c: Add owner field to planet panel

2004-05-16 02:44  ldipenti

	* ChangeLog, Makefile.am, configure.in, pixmaps/Makefile.am,
	  pixmaps/races/Makefile.am, src/callbacks.c, src/callbacks.h,
	  src/game_state.c, src/game_state.h, src/gwp.glade,
	  src/gwp_types.c, src/gwp_types.h, src/starchart.c,
	  src/starchart.h: Several fixes & additions (too late to remember)

2004-05-16 01:01  ldipenti

	* ChangeLog, src/game_mgr.c, src/global.h: new race icons!!

2004-05-16 00:28  ldipenti

	* pixmaps/races/: race-logo1.png, race-logo10.png, race-logo11.png,
	  race-logo2.png, race-logo3.png, race-logo4.png, race-logo5.png,
	  race-logo6.png, race-logo7.png, race-logo8.png, race-logo9.png:
	  Race logos for game manager

2004-05-16 00:27  ldipenti

	* contrib/scripts/: parsekore.pl, plcat.pl: Some utility scripts
	  from Stefan Reuther!

2004-05-15 05:58  ldipenti

	* Doxyfile, configure.in: Some version number error fixed

2004-05-14 21:05  ldipenti

	* src/: callbacks.c, game_state.c, game_state.h, gwp.glade,
	  gwp_types.c, gwp_types.h, starchart.c, starchart.h: Planet names
	  are hide/shown using menu

2004-05-13 17:09  ldipenti

	* ChangeLog, src/starchart.c: Zoom label fixed.

	  Planet names showed

2004-05-12 01:45  ldipenti

	* src/: callbacks.c, global.h, main.c, starchart.c, starchart.h:
	  Lots of UI optimizations and enhancements, thanks Nico!!!!

2004-05-11 22:59  ldipenti

	* src/callbacks.c: Simple drag starchart -- thanks Nico & Legui!!!!

2004-05-11 18:24  ldipenti

	* ChangeLog: New change

2004-05-11 18:22  ldipenti

	* Doxyfile, configure.in, pixmaps/ships/Makefile.am,
	  pixmaps/ships/ship1.jpg, pixmaps/ships/ship10.jpg,
	  pixmaps/ships/ship100.jpg, pixmaps/ships/ship101.jpg,
	  pixmaps/ships/ship102.jpg, pixmaps/ships/ship103.jpg,
	  pixmaps/ships/ship104.jpg, pixmaps/ships/ship105.jpg,
	  pixmaps/ships/ship11.jpg, pixmaps/ships/ship12.jpg,
	  pixmaps/ships/ship13.jpg, pixmaps/ships/ship14.jpg,
	  pixmaps/ships/ship15.jpg, pixmaps/ships/ship16.jpg,
	  pixmaps/ships/ship17.jpg, pixmaps/ships/ship18.jpg,
	  pixmaps/ships/ship19.jpg, pixmaps/ships/ship2.jpg,
	  pixmaps/ships/ship20.jpg, pixmaps/ships/ship21.jpg,
	  pixmaps/ships/ship22.jpg, pixmaps/ships/ship23.jpg,
	  pixmaps/ships/ship24.jpg, pixmaps/ships/ship25.jpg,
	  pixmaps/ships/ship26.jpg, pixmaps/ships/ship27.jpg,
	  pixmaps/ships/ship28.jpg, pixmaps/ships/ship29.jpg,
	  pixmaps/ships/ship3.jpg, pixmaps/ships/ship30.jpg,
	  pixmaps/ships/ship31.jpg, pixmaps/ships/ship32.jpg,
	  pixmaps/ships/ship33.jpg, pixmaps/ships/ship34.jpg,
	  pixmaps/ships/ship35.jpg, pixmaps/ships/ship36.jpg,
	  pixmaps/ships/ship37.jpg, pixmaps/ships/ship38.jpg,
	  pixmaps/ships/ship39.jpg, pixmaps/ships/ship4.jpg,
	  pixmaps/ships/ship40.jpg, pixmaps/ships/ship41.jpg,
	  pixmaps/ships/ship42.jpg, pixmaps/ships/ship43.jpg,
	  pixmaps/ships/ship44.jpg, pixmaps/ships/ship45.jpg,
	  pixmaps/ships/ship46.jpg, pixmaps/ships/ship47.jpg,
	  pixmaps/ships/ship48.jpg, pixmaps/ships/ship49.jpg,
	  pixmaps/ships/ship5.jpg, pixmaps/ships/ship50.jpg,
	  pixmaps/ships/ship51.jpg, pixmaps/ships/ship52.jpg,
	  pixmaps/ships/ship53.jpg, pixmaps/ships/ship54.jpg,
	  pixmaps/ships/ship55.jpg, pixmaps/ships/ship56.jpg,
	  pixmaps/ships/ship57.jpg, pixmaps/ships/ship58.jpg,
	  pixmaps/ships/ship59.jpg, pixmaps/ships/ship6.jpg,
	  pixmaps/ships/ship60.jpg, pixmaps/ships/ship61.jpg,
	  pixmaps/ships/ship62.jpg, pixmaps/ships/ship63.jpg,
	  pixmaps/ships/ship64.jpg, pixmaps/ships/ship65.jpg,
	  pixmaps/ships/ship66.jpg, pixmaps/ships/ship67.jpg,
	  pixmaps/ships/ship68.jpg, pixmaps/ships/ship69.jpg,
	  pixmaps/ships/ship7.jpg, pixmaps/ships/ship70.jpg,
	  pixmaps/ships/ship71.jpg, pixmaps/ships/ship72.jpg,
	  pixmaps/ships/ship73.jpg, pixmaps/ships/ship74.jpg,
	  pixmaps/ships/ship75.jpg, pixmaps/ships/ship76.jpg,
	  pixmaps/ships/ship77.jpg, pixmaps/ships/ship78.jpg,
	  pixmaps/ships/ship79.jpg, pixmaps/ships/ship8.jpg,
	  pixmaps/ships/ship80.jpg, pixmaps/ships/ship81.jpg,
	  pixmaps/ships/ship82.jpg, pixmaps/ships/ship83.jpg,
	  pixmaps/ships/ship84.jpg, pixmaps/ships/ship85.jpg,
	  pixmaps/ships/ship86.jpg, pixmaps/ships/ship87.jpg,
	  pixmaps/ships/ship88.jpg, pixmaps/ships/ship89.jpg,
	  pixmaps/ships/ship9.jpg, pixmaps/ships/ship90.jpg,
	  pixmaps/ships/ship91.jpg, pixmaps/ships/ship92.jpg,
	  pixmaps/ships/ship93.jpg, pixmaps/ships/ship94.jpg,
	  pixmaps/ships/ship95.jpg, pixmaps/ships/ship96.jpg,
	  pixmaps/ships/ship97.jpg, pixmaps/ships/ship98.jpg,
	  pixmaps/ships/ship99.jpg, pixmaps/ships/vpl10.jpg,
	  pixmaps/ships/vpl100.jpg, pixmaps/ships/vpl101.jpg,
	  pixmaps/ships/vpl102.jpg, pixmaps/ships/vpl103.jpg,
	  pixmaps/ships/vpl104.jpg, pixmaps/ships/vpl105.jpg,
	  pixmaps/ships/vpl106.jpg, pixmaps/ships/vpl107.jpg,
	  pixmaps/ships/vpl108.jpg, pixmaps/ships/vpl109.jpg,
	  pixmaps/ships/vpl11.jpg, pixmaps/ships/vpl110.jpg,
	  pixmaps/ships/vpl112.jpg, pixmaps/ships/vpl113.jpg,
	  pixmaps/ships/vpl114.jpg, pixmaps/ships/vpl117.jpg,
	  pixmaps/ships/vpl118.jpg, pixmaps/ships/vpl119.jpg,
	  pixmaps/ships/vpl12.jpg, pixmaps/ships/vpl120.jpg,
	  pixmaps/ships/vpl121.jpg, pixmaps/ships/vpl122.jpg,
	  pixmaps/ships/vpl123.jpg, pixmaps/ships/vpl124.jpg,
	  pixmaps/ships/vpl128.jpg, pixmaps/ships/vpl129.jpg,
	  pixmaps/ships/vpl13.jpg, pixmaps/ships/vpl131.jpg,
	  pixmaps/ships/vpl132.jpg, pixmaps/ships/vpl133.jpg,
	  pixmaps/ships/vpl134.jpg, pixmaps/ships/vpl135.jpg,
	  pixmaps/ships/vpl136.jpg, pixmaps/ships/vpl137.jpg,
	  pixmaps/ships/vpl14.jpg, pixmaps/ships/vpl140.jpg,
	  pixmaps/ships/vpl141.jpg, pixmaps/ships/vpl142.jpg,
	  pixmaps/ships/vpl143.jpg, pixmaps/ships/vpl144.jpg,
	  pixmaps/ships/vpl146.jpg, pixmaps/ships/vpl147.jpg,
	  pixmaps/ships/vpl148.jpg, pixmaps/ships/vpl149.jpg,
	  pixmaps/ships/vpl15.jpg, pixmaps/ships/vpl152.jpg,
	  pixmaps/ships/vpl153.jpg, pixmaps/ships/vpl16.jpg,
	  pixmaps/ships/vpl17.jpg, pixmaps/ships/vpl18.jpg,
	  pixmaps/ships/vpl19.jpg, pixmaps/ships/vpl20.jpg,
	  pixmaps/ships/vpl29.jpg, pixmaps/ships/vpl31.jpg,
	  pixmaps/ships/vpl32.jpg, pixmaps/ships/vpl33.jpg,
	  pixmaps/ships/vpl45.jpg, pixmaps/ships/vpl46.jpg,
	  pixmaps/ships/vpl47.jpg, pixmaps/ships/vpl49.jpg,
	  pixmaps/ships/vpl5.jpg, pixmaps/ships/vpl50.jpg,
	  pixmaps/ships/vpl54.jpg, pixmaps/ships/vpl55.jpg,
	  pixmaps/ships/vpl56.jpg, pixmaps/ships/vpl57.jpg,
	  pixmaps/ships/vpl58.jpg, pixmaps/ships/vpl59.jpg,
	  pixmaps/ships/vpl6.jpg, pixmaps/ships/vpl60.jpg,
	  pixmaps/ships/vpl61.jpg, pixmaps/ships/vpl62.jpg,
	  pixmaps/ships/vpl63.jpg, pixmaps/ships/vpl64.jpg,
	  pixmaps/ships/vpl65.jpg, pixmaps/ships/vpl66.jpg,
	  pixmaps/ships/vpl67.jpg, pixmaps/ships/vpl68.jpg,
	  pixmaps/ships/vpl69.jpg, pixmaps/ships/vpl7.jpg,
	  pixmaps/ships/vpl72.jpg, pixmaps/ships/vpl73.jpg,
	  pixmaps/ships/vpl74.jpg, pixmaps/ships/vpl76.jpg,
	  pixmaps/ships/vpl77.jpg, pixmaps/ships/vpl78.jpg,
	  pixmaps/ships/vpl79.jpg, pixmaps/ships/vpl84.jpg,
	  pixmaps/ships/vpl85.jpg, pixmaps/ships/vpl86.jpg,
	  pixmaps/ships/vpl87.jpg, pixmaps/ships/vpl88.jpg,
	  pixmaps/ships/vpl89.jpg, pixmaps/ships/vpl9.jpg,
	  pixmaps/ships/vpl90.jpg, pixmaps/ships/vpl97.jpg,
	  pixmaps/ships/vpl98.jpg, pixmaps/ships/vpl99.jpg, src/gwp-ship.c,
	  src/gwp-ship.h, src/starchart.c: New ship pictures! The ones of
	  VP4

2004-05-06 14:17  ldipenti

	* releaser.sh: Completing the super-script

2004-05-05 21:19  ldipenti

	* releaser.sh: Releaser utility - automate the release process as
	  much as possible.

2004-05-04 17:24  ldipenti

	* src/gwp-starbase.c: some inline documentation

2004-05-04 16:54  ldipenti

	* src/gwp-ship.c: some inline documentation

2004-05-04 16:39  ldipenti

	* src/gwp-location.c: some inline documentation

2004-05-04 16:21  ldipenti

	* src/: gwp-beamspec.c, gwp-location.c: compilation warnings
	  eliminated

2004-05-04 16:17  ldipenti

	* src/: gwp-ion-storm.c, gwp-planet.c, gwp-hullspec.c,
	  gwp-engspec.c, gwp-torpspec.c: compilation warnings eliminated

2004-05-04 16:14  ldipenti

	* src/: gwp-object.c, gwp-flying-object.c, gwp-starbase.c,
	  gwp-ship.c, gwp-minefield.c: compilation warnings eliminated

2004-05-03 03:05  ldipenti

	* Doxyfile, debian/changelog, debian/copyright, debian/files,
	  debian/gwp.substvars: Late minute commit: Release 0.2.13 go go
	  go!

2004-05-03 02:30  ldipenti

	* ChangeLog: typo

2004-05-03 02:02  ldipenti

	* package/gwp.spec: Ooops, forgot this one

2004-05-03 02:00  ldipenti

	* BUGS, ChangeLog, Makefile.am, configure.in, po/de.po, po/es.po,
	  po/gwp.pot, src/gwp.glade, src/vp_utils.c: Release 0.2.13 commit

2004-05-03 01:16  ldipenti

	* src/gwp-engspec.c: compilation warning fixed

2004-05-03 01:07  ldipenti

	* src/vp_unpack.c: unpack now generates kore file

2004-05-01 19:06  ldipenti

	* src/Makefile.am: Removed "disable_deprecated" compilation flag...
	  new gtk+ comes and I should migrate the new things in the future,
	  when Debian include those libs

2004-04-25 03:13  ldipenti

	* src/starchart.c: Fixed bug with intercept missions

2004-04-23 12:08  ldipenti

	* src/gwp.glade:  Revert glade file to 1.26 version -- 1.27 was
	  made with a 2.4 glade, odd...mandrake cooker sucks :-)

2004-04-22 18:02  ldipenti

	* src/starchart.c, src/global.h, ChangeLog: Special mark on planets
	  with starbase

2004-04-22 17:33  ldipenti

	* src/gwp.glade: Some ship UI adds and planet UI corrections

2004-04-22 17:11  ldipenti

	* src/starchart.c: Added ship mission parameter for tow and
	  intercept

2004-04-22 17:10  ldipenti

	* src/: gwp-ship.c, gwp-ship.h: Added a couple of methods that wrap
	  a host problem about weapons detection

2004-04-22 11:55  ldipenti

	* src/Makefile.am: Added gwp-utils.c and gwp-utils.h files

2004-04-22 11:48  ldipenti

	* ChangeLog: new bugfix registered

2004-04-21 21:21  ldipenti

	* src/game_mgr.c: Warning message dialogs now use the new
	  gwp_warning_dialog_new() wrapper

2004-04-21 21:10  ldipenti

	* src/vp_utils.c: load_kore_data now checks for uppercase or
	  lowercase file, and shows a warning if neither files are found,
	  but continue the execution

2004-04-21 21:09  ldipenti

	* src/: gwp-utils.c, gwp-utils.h: New file: GWP specific utils.
	  Begining with a gtk warning dialog wrapper

2004-04-21 12:08  ldipenti

	* src/Makefile.am: GTK 2.4 has deprecated some widgets (GtkCombo
	  for example)...so we need compatibility with both GTK 2.2 and GTK
	  2.4, I removed the diable_gtk_deprecated cflag.

2004-04-19 23:15  ldipenti

	* ChangeLog, src/game_mgr.c: bug fixing

2004-04-19 18:25  ldipenti

	* src/game_mgr.c: Bug fixed: when the manager didn't have any game
	  defined, if the user clicked on "play game" GWP crashed. Thanks
	  Cristian!

2004-04-15 17:24  ldipenti

	* ChangeLog, debian/README.Debian, debian/changelog, debian/compat,
	  debian/conffiles.ex, debian/control, debian/copyright,
	  debian/cron.d.ex, debian/docs, debian/emacsen-install.ex,
	  debian/emacsen-remove.ex, debian/emacsen-startup.ex,
	  debian/files, debian/gwp-default.ex, debian/gwp.doc-base.EX,
	  debian/gwp.postinst.debhelper, debian/gwp.postrm.debhelper,
	  debian/gwp.substvars, debian/init.d.ex, debian/manpage.1.ex,
	  debian/manpage.sgml.ex, debian/manpage.xml.ex, debian/menu,
	  debian/postinst.ex, debian/postrm.ex, debian/preinst.ex,
	  debian/prerm.ex, debian/rules, debian/watch.ex: Debian package
	  generation!! woohoooo!!

2004-04-15 11:38  ldipenti

	* ChangeLog: A couple of changes notifications

2004-04-15 02:43  ldipenti

	* package/gwp.spec: First working spec file, works on mandrake 9.2

2004-04-14 21:48  ldipenti

	* package/gwp.spec: RPM spec file

2004-04-11 02:53  ldipenti

	* po/: de.po, es.po, gwp.pot: Eliminated some unstranslatable
	  strings

2004-04-11 02:52  ldipenti

	* src/gwp.glade: More eliminated translatable properties from
	  untranslatable strings such as "*" and ",".

2004-04-11 02:49  ldipenti

	* src/gwp.glade: eliminated some translatable properties from
	  untranslatable strings such as "(", ")", "*".

2004-04-11 02:45  ldipenti

	* src/callbacks.c: Some UI usability glitch was fixed.

2004-04-11 02:40  ldipenti

	* src/: starchart.c, gwp-object.c: cp437 to utf8 tests were made,
	  looks like works ok! all names now are automatically converted

2004-04-10 22:35  ldipenti

	* ChangeLog: new change

2004-04-10 22:34  ldipenti

	* ChangeLog, Doxyfile, po/POTFILES.in, po/de.po, po/es.po,
	  po/gwp.pot, src/Makefile.am, src/gwp-ship.c, src/gwp-ship.h,
	  src/gwp.glade, src/mission.c, src/mission.h, src/starchart.c:
	  Ship visualization UI completed

2004-04-10 03:25  ldipenti

	* ChangeLog, configure.in, po/es.po, src/callbacks.c,
	  src/game_state.c, src/game_state.h, src/gwp-planet.c,
	  src/gwp-planet.h, src/gwp-ship.c, src/gwp-ship.h,
	  src/gwp-starbase.c, src/gwp.glade, src/starchart.c,
	  src/starchart.h: Several changes, additions, deletions...bah!
	  doesn't matter because this is a release commit!! oh yeah!! let's
	  call it Release-0_2_12!!

2004-04-10 01:57  ldipenti

	* src/game_mgr.c: added missing include

2004-04-10 01:15  ldipenti

	* src/gwp-hullspec.c: Documented function

2004-04-10 00:40  ldipenti

	* src/gwp-ion-storm.c: A little dirty patch to correct awful ion
	  coordinates... Tim you suck!

2004-04-09 22:32  ldipenti

	* src/global.h: oops, wrong move!!

2004-04-09 22:30  ldipenti

	* src/vp_utils.c: code cleanup

2004-04-09 22:02  ldipenti

	* src/global.h: eliminate a not needed definition

2004-04-09 20:22  ldipenti

	* src/game_state.c: added a missing header

2004-04-09 12:56  ldipenti

	* src/: support.c, support.h: Added GPL header

2004-04-09 12:40  ldipenti

	* src/callbacks.h: Added GPL header

2004-04-08 19:40  ldipenti

	* src/: gwp.glade, starchart.c: Dseigning the ship UI

2004-04-07 19:27  ldipenti

	* src/starchart.c: Ion storm arrow

2004-04-06 18:28  ldipenti

	* ChangeLog, src/Makefile.am, src/global.h, src/gwp-ion-storm.c,
	  src/gwp-ion-storm.h, src/gwp-minefield.c, src/gwp-object.c,
	  src/gwp-object.h, src/gwp-planet.c, src/gwp-planet.h,
	  src/starchart.c, src/starchart.h, src/vp_utils.c: * Some bugs
	  fixed related to GwpObjects

	  * Ion Storm type implemented and some basic visualization done

2004-04-06 02:28  ldipenti

	* ChangeLog, src/Makefile.am, src/game_state.c, src/global.h,
	  src/gwp-engspec.c, src/gwp-minefield.c, src/gwp-minefield.h,
	  src/gwp-ship.c, src/starchart.c, src/starchart.h, src/vp_utils.c,
	  src/vp_utils.h: Corrected fuel usage algoritm, now it calculates
	  better, not perfect!

	  Implemented GwpMinefield to load the minefields from KOREx.DAT,
	  they're showed on starchart

2004-04-01 17:15  ldipenti

	* src/: game_mgr.c, game_state.c, gwp-engspec.c, main.c,
	  starchart.c: Temporal commit - fixing game cleanups

2004-03-31 22:27  ldipenti

	* README: 0.2.11 update

2004-03-25 14:54  ldipenti

	* src/main.c: Fixed some initialization code on gwp_init()

2004-03-25 02:18  ldipenti

	* src/gwp-starbase.c: Som source documentation...

2004-03-25 01:51  ldipenti

	* src/gwp-planet.c: Added more documentation to the source

2004-03-24 18:09  ldipenti

	* src/gwp-planet.c: Adding more sources documentation

2004-03-24 17:51  ldipenti

	* src/gwp-ship.c: Adding more sources documentation

2004-03-24 10:43  ldipenti

	* Doxyfile: Added autobrief option

2004-03-24 10:31  ldipenti

	* Doxyfile: paths fixed

2004-03-24 00:50  ldipenti

	* src/gwp-engspec.c: Some missing parameters in documentation fixed

2004-03-24 00:49  ldipenti

	* src/gwp-ship.c: High level methods documentation complete

2004-03-23 18:06  ldipenti

	* src/: gwp-engspec.c, gwp-ship.c: Some doxgen documentation added
	  to high level methods

2004-03-23 17:36  ldipenti

	* ChangeLog: new changes on the log

2004-03-23 17:29  ldipenti

	* Doxyfile: Doxygen configuration file added.

2004-03-23 02:28  ldipenti

	* src/Makefile.am: Added specs.h file to automake

2004-03-23 02:26  ldipenti

	* ChangeLog, po/de.po, po/es.po, po/gwp.pot, src/game_mgr.c,
	  src/gwp-hullspec.c, src/gwp-ship.c, src/gwp-ship.h,
	  src/gwp-specs.h, src/starchart.c, src/vp_utils.c, src/vp_utils.h:
	  Added fuel usage and mass calculation for ships using the specs
	  types

2004-03-22 20:55  ldipenti

	* src/global.h: Global vars

2004-03-22 20:54  ldipenti

	* src/gwp-ship.c: partial commit

2004-03-22 18:36  ldipenti

	* src/vp_utils.c: Added BEAMSPEC.DAT loader code

2004-03-22 11:59  ldipenti

	* src/: vp_utils.c, vp_utils.h: Added TORPSPEC.DAT loading code.

2004-03-22 11:59  ldipenti

	* src/: gwp-torpspec.h, gwp-torpspec.c: Typo fixed and a couple of
	  methods were missing...

2004-03-22 11:38  ldipenti

	* src/: vp_utils.c, vp_utils.h: Added ENGSPEC.DAT loading code.

2004-03-22 11:35  ldipenti

	* src/gwp-engspec.c: Oops, forgot the new() method

2004-03-22 07:59  ldipenti

	* src/Makefile.am: Added several specs types

2004-03-22 00:38  ldipenti

	* src/global.h: Added specs lists

2004-03-22 00:35  ldipenti

	* src/: starchart.c, vp_utils.c, vp_utils.h: hullspec list data
	  type corrected to be from hash to slist

2004-03-22 00:03  ldipenti

	* src/: gwp-engspec.c, gwp-engspec.h: engines specs type

2004-03-21 19:57  ldipenti

	* src/: gwp-beamspec.c, gwp-beamspec.h: beam weapons specs type

2004-03-21 19:57  ldipenti

	* src/: gwp-torpspec.h, gwp-torpspec.c: torpedoes specs type

2004-03-16 12:56  ldipenti

	* AUTHORS: Author & contributors listed

2004-03-16 12:44  ldipenti

	* src/game_mgr.c: Initial coordinates to new games set to middle
	  echo cluster by default ...thanks Nico!

2004-03-15 23:26  ldipenti

	* ChangeLog, configure.in, po/de.po, po/es.po, po/gwp.pot,
	  src/callbacks.c: 0.2.11 release commit

2004-03-15 00:12  ldipenti

	* ChangeLog, src/callbacks.c, src/game_state.c, src/gwp.glade,
	  src/starchart.c, src/vp_unpack.c, src/vp_utils.c: Various bug
	  fixes, including full ship target support, beyond target 50!

2004-02-18 01:33  ldipenti

	* configure.in, po/de.po: Added German translation, thanks Stefan
	  Reuther!!!

2004-02-09 00:29  ldipenti

	* ChangeLog, configure.in, pixmaps/Makefile.am,
	  pixmaps/ships/Makefile.am, src/Makefile.am, src/callbacks.c,
	  src/global.h, src/gwp-hullspec.c, src/gwp-hullspec.h,
	  src/gwp.glade, src/starchart.c, src/starchart.h, src/vp_utils.c,
	  src/vp_utils.h: Added GwpHullSpec data type to handle hull
	  specifications.

	  Added code to handle ship image viewing.

2004-02-08 19:03  ldipenti

	* pixmaps/ships/: Makefile.am, ship1.jpg, ship10.jpg, ship100.jpg,
	  ship101.jpg, ship102.jpg, ship103.jpg, ship104.jpg, ship105.jpg,
	  ship11.jpg, ship12.jpg, ship13.jpg, ship14.jpg, ship15.jpg,
	  ship16.jpg, ship17.jpg, ship18.jpg, ship19.jpg, ship2.jpg,
	  ship20.jpg, ship21.jpg, ship22.jpg, ship23.jpg, ship24.jpg,
	  ship25.jpg, ship26.jpg, ship27.jpg, ship28.jpg, ship29.jpg,
	  ship3.jpg, ship30.jpg, ship31.jpg, ship32.jpg, ship33.jpg,
	  ship34.jpg, ship35.jpg, ship36.jpg, ship37.jpg, ship38.jpg,
	  ship39.jpg, ship4.jpg, ship40.jpg, ship41.jpg, ship42.jpg,
	  ship43.jpg, ship44.jpg, ship45.jpg, ship46.jpg, ship47.jpg,
	  ship48.jpg, ship49.jpg, ship5.jpg, ship50.jpg, ship51.jpg,
	  ship52.jpg, ship53.jpg, ship54.jpg, ship55.jpg, ship56.jpg,
	  ship57.jpg, ship58.jpg, ship59.jpg, ship6.jpg, ship60.jpg,
	  ship61.jpg, ship62.jpg, ship63.jpg, ship64.jpg, ship65.jpg,
	  ship66.jpg, ship67.jpg, ship68.jpg, ship69.jpg, ship7.jpg,
	  ship70.jpg, ship71.jpg, ship72.jpg, ship73.jpg, ship74.jpg,
	  ship75.jpg, ship76.jpg, ship77.jpg, ship78.jpg, ship79.jpg,
	  ship8.jpg, ship80.jpg, ship81.jpg, ship82.jpg, ship83.jpg,
	  ship84.jpg, ship85.jpg, ship86.jpg, ship87.jpg, ship88.jpg,
	  ship89.jpg, ship9.jpg, ship90.jpg, ship91.jpg, ship92.jpg,
	  ship93.jpg, ship94.jpg, ship95.jpg, ship96.jpg, ship97.jpg,
	  ship98.jpg, ship99.jpg: Ship images added to CVS

2004-02-07 12:42  ldipenti

	* src/starchart.c: changed "n/a" to "--" where values aren't known

2004-02-07 11:45  ldipenti

	* src/gwp-ship.c: Fixed a bug in the ETA calculation method

2004-02-06 22:09  ldipenti

	* src/gwp-ship.c: Bug in calculate_heading method -- fixed

2004-02-06 19:28  ldipenti

	* ChangeLog: ChangeLog updated

2004-02-05 19:10  ldipenti

	* src/gwp-ship.c: Removed som bad checks on cargo unload and
	  transfer functions

2004-02-02 01:47  ldipenti

	* Makefile.am, configure.in, po/POTFILES.in, po/es.po, po/gwp.pot,
	  src/callbacks.c, src/starchart.c: Some fixes for 0.2.10 release

2004-02-02 01:03  ldipenti

	* src/: Makefile.am, callbacks.c, callbacks.h, game_mgr.c,
	  global.h, gwp-flying-object.c, gwp-flying-object.h,
	  gwp-location.c, gwp-location.h, gwp-ship.c, gwp-ship.h,
	  gwp.glade, main.c, starchart.c, starchart.h, vp_utils.c: Finally
	  the ships are shown properly, this is the version 0.2.10 commit!!
	  yeah!

2004-02-01 14:15  ldipenti

	* src/callbacks.c: Fixed copyright symbol and year on about dialog

2004-01-31 15:09  ldipenti

	* src/gwp-planet.c: fixed little bug on mined_trit assignment

2004-01-30 19:53  ldipenti

	* src/vp_utils.c: Some code cleaning

2004-01-30 07:34  ldipenti

	* src/: Makefile.am, base.c, base.h, planet.c, planet.h,
	  starchart.c, vp_utils.c: Eliminated rest of the old data source
	  files

2004-01-30 00:27  ldipenti

	* Makefile.am, src/Makefile.am, src/global.h, src/gwp-starbase.c,
	  src/gwp.glade, src/ship.c, src/ship.h, src/starchart.c,
	  src/starchart.h, src/vp_utils.c: Old ship source files
	  eliminated.

	  Planets now are drawn as circles.

	  Sort of ship mark implemented, must be polished.

	  Added planet coords to UI planet panel.

2004-01-26 15:41  ldipenti

	* src/: callbacks.c, gwp-flying-object.c, gwp-object.c,
	  gwp-planet.c, gwp-ship.c, gwp-ship.h, gwp-starbase.c,
	  starchart.c, starchart.h, vp_utils.c: Feature added: ships are
	  drawn as triangles, and they are rotated by their heading
	  attribute.

2004-01-25 21:03  ldipenti

	* Makefile.am, configure.in, docs/class-diagram.dia,
	  po/POTFILES.in, po/es.po, po/gwp.pot, src/callbacks.c,
	  src/gwp-ship.c, src/gwp-ship.h, src/starchart.c, src/starchart.h,
	  src/vp_utils.c: Finished with ship drawing, this will be called
	  the 0.2.9 commit :-)

2004-01-21 00:09  ldipenti

	* docs/class-diagram.dia, src/callbacks.c, src/gwp-object.c,
	  src/gwp-ship.c, src/gwp-ship.h, src/vp_utils.c: Some missing
	  methods added to GwpShip, some fixed to GwpObject and some erased
	  from GwpFlyingObject.

	  Now all ships are being loaded with the new data scheme, they're
	  not displayed yet.

	  I've removed the dynamic highlight feature, I think it was
	  annoying.

2004-01-19 00:22  ldipenti

	* src/: gwp-planet.c, gwp-starbase.c, gwp-starbase.h, tables.c,
	  vp_utils.c: Error fixed in object copy method

2004-01-18 22:19  ldipenti

	* src/: Makefile.am, gwp-planet.c, gwp-planet.h, gwp-starbase.c,
	  gwp-starbase.h, planet.c, starchart.c, starchart.h, vp_utils.c:
	  Finished displaying all planet info as of version 0.2.8 with new
	  data structure

2004-01-18 12:48  ldipenti

	* src/: gwp-planet.c, gwp-planet.h, starchart.c, starchart.h,
	  tables.c, tables.h: New planet scheme treatment finished
	  (hopefully)

2004-01-12 01:13  ldipenti

	* docs/class-diagram.dia, src/callbacks.c, src/gwp-planet.c,
	  src/gwp-planet.h, src/planet.c, src/planet.h, src/race.c,
	  src/race.h, src/starchart.c, src/starchart.h, src/vp_utils.c:
	  Changes being made to migrate planet management from old struct
	  style to new gnome-type style...work in progress

2004-01-08 19:59  ldipenti

	* configure.in: Added some descriptions to definitions on
	  configure.in to work with new autoheader

2004-01-06 22:57  ldipenti

	* Makefile.am: [no log message]

2004-01-05 15:42  ldipenti

	* Makefile.in, acconfig.h, aclocal.m4, config.h.in, stamp-h.in,
	  po/Makefile.in.in: Removed useless files (for CVS)

2004-01-05 01:15  ldipenti

	* src/vp_utils.c: New planet loading it seems to be OK

2004-01-05 00:54  ldipenti

	* src/gwp-planet.c: Some bound checking code corrected

2004-01-04 23:53  ldipenti

	* src/Makefile.in: This file hasn't to be in cvs

2004-01-03 11:51  ldipenti

	* AUTHORS, docs/class-diagram.dia: Some new stuff

2004-01-03 11:50  ldipenti

	* src/main.c: Added init code to type system

2004-01-03 11:48  ldipenti

	* src/: Makefile.am, Makefile.in, main.c: Added the new object
	  gwp-*.* to Makefile.in.  Disabled splash screen - it's annoying.

2004-01-03 11:46  ldipenti

	* src/: gwp-starbase.h, gwp-starbase.c: Added planet attribute,
	  fixed some includes so that it compiles

2004-01-03 11:46  ldipenti

	* src/: gwp-planet.h, gwp-planet.c: Some fixes - added attributes
	  and methods

2004-01-03 11:45  ldipenti

	* src/vp_utils.c: First attempt to use the GwpPlanet object

2004-01-03 11:31  ldipenti

	* src/: gwp-flying-object.h, gwp-flying-object.c, gwp-object.c,
	  gwp-object.h: name attribute moved up to GwpObject class

2004-01-02 21:27  ldipenti

	* src/gwp-starbase.h: [no log message]

2004-01-02 21:27  ldipenti

	* src/gwp-starbase.c: planet attribute methods added

2004-01-02 20:56  ldipenti

	* src/: gwp-starbase.c, gwp-starbase.h: First version of
	  GwpStarbase

2004-01-02 14:55  ldipenti

	* src/: gwp-starbase.h, gwp-object.c: (c) updated

2004-01-02 13:52  ldipenti

	* src/: gwp-planet.c, gwp-planet.h: Finished gwp-planet

2004-01-02 11:39  ldipenti

	* src/gwp-ship.c: Added some cleanup code to dispose method

2003-12-30 19:11  ldipenti

	* src/: gwp-planet.c, gwp-planet.h: New Glib type GwpPlanet

2003-12-30 08:28  ldipenti

	* docs/class-diagram.dia: Diagram updated

2003-12-30 07:55  ldipenti

	* src/: gwp-ship.h, gwp-flying-object.h, gwp-flying-object.c,
	  gwp-ship.c: owner attr and methods moved from GwpFlyingObject to
	  GwpShip

2003-12-29 23:16  ldipenti

	* src/: gwp-object.h, gwp-object.c, gwp-flying-object.h,
	  gwp-flying-object.c: id attr and methods moved up to GwpObject

2003-12-29 23:05  ldipenti

	* src/gwp-object.c: Some mistakes on type checking and boundaries
	  were corrected on methods

2003-12-29 23:04  ldipenti

	* src/gwp-flying-object.c: Some mistakes on type checking were
	  corrected

2003-12-28 23:52  ldipenti

	* src/: gwp-ship.h, gwp-ship.c: Added (hopefully) all attributes
	  and get/set methods to GwpShip class

2003-12-24 00:23  ldipenti

	* src/: gwp-object.h, gwp-ship.h, gwp-flying-object.h, gwp-ship.c,
	  gwp-flying-object.c, gwp-object.c: Starting to migrate data
	  structures to Glib's Object Type System

2003-12-21 09:04  ldipenti

	* src/ship.c: Some code formatting enhancements

2003-09-10 21:07  ldipenti

	* pixmaps/planets/sbase1.png: Starbase image, forgotten!

2003-07-31 11:58  ldipenti

	* docs/class-diagram.dia: Added ship class with attributes

2003-07-31 10:58  ldipenti

	* docs/class-diagram.dia: Added docs dir with class diagram

2003-07-09 01:40  ldipenti

	* po/es.po: Minor correction

2003-07-09 01:40  ldipenti

	* src/starchart.c: Minor feature: Planet name get underlined when
	  it has a starbase

2003-06-30 03:01  ldipenti

	* configure.in, pixmaps/planets/Makefile.am, po/es.po, po/gwp.pot,
	  src/Makefile.am, src/Makefile.in, src/base.c, src/base.h,
	  src/callbacks.c, src/callbacks.h, src/game_mgr.c, src/game_mgr.h,
	  src/game_state.c, src/game_state.h, src/global.h, src/gwp.glade,
	  src/gwp_types.c, src/gwp_types.h, src/planet.c, src/planet.h,
	  src/ship.c, src/starchart.c, src/starchart.h, src/tables.c,
	  src/vp_types.h, src/vp_utils.c, src/vp_utils.h: Release 0.2.8
	  commit. Changes:

	  * Starbase data are now being loaded.  * Starbase image shows on
	  planet image when applicable.  * Initial starbase view UI.  *
	  Internal data reorganization to be able to save game state.  *
	  Turns left calculation for mineral extraction on planets.  *
	  Starchart coordinates are now saved from one GWP execution to
	  another.  * Global Defense Systems calculation on each planet.  *
	  Some buttons were added to the toolbar, one to toggle the GDS
	  panel,   the other to show starbase panel.

2003-06-29 04:17  ldipenti

	* src/: base.c, base.h: Initial starbase support

2003-06-23 03:41  ldipenti

	* Makefile.am, Makefile.in: Oops, forgot documentation

2003-06-23 03:27  ldipenti

	* po/: ChangeLog, es.po, gwp.pot: Oops, I missed these...

2003-06-23 03:23  ldipenti

	* Makefile.am, Makefile.in, aclocal.m4, configure.in,
	  pixmaps/Makefile.am, pixmaps/planets/Makefile.am,
	  pixmaps/planets/planet-unknown.png,
	  pixmaps/planets/planet0-9.png, pixmaps/planets/planet10-19.png,
	  pixmaps/planets/planet20-29.png, pixmaps/planets/planet30-39.png,
	  pixmaps/planets/planet40-49.png, pixmaps/planets/planet50-59.png,
	  pixmaps/planets/planet60-69.png, pixmaps/planets/planet70-79.png,
	  pixmaps/planets/planet80-89.png,
	  pixmaps/planets/planet90-100.png, po/es.po, po/gwp.pot,
	  src/callbacks.c, src/callbacks.h, src/gwp.glade, src/gwp_types.c,
	  src/main.c, src/starchart.c, src/starchart.h: Release 0.2.7
	  commit:

	  * Some bugfixes on game manager were fixed * Added toolbar with
	  show/hide menu function * Show planet image when double-clicking
	  on one

2003-06-18 15:09  ldipenti

	* src/game_state.c: bug fixed: if the game dir didn't finished with
	  a trailing /, the client couldn't find the data files

2003-06-17 02:00  ldipenti

	* COPYING-DOCS, Makefile.am, Makefile.in, configure.in,
	  help/Makefile.am, help/omf.make, help/xmldocs.make,
	  help/C/Makefile.am, help/C/fdl-appendix.xml, help/C/gwp-C.omf,
	  help/C/gwp.xml, help/C/legal.xml,
	  help/C/figures/game-mgr-edit-game.png,
	  help/C/figures/game-mgr.png, help/C/figures/logo.png,
	  help/C/figures/starchart-planet.png,
	  help/C/figures/starchart.png, pixmaps/Makefile.am,
	  po/Makefile.in.in, po/POTFILES.in, po/es.po, po/gwp.pot,
	  src/Makefile.am, src/Makefile.in, src/callbacks.c,
	  src/callbacks.h, src/game_mgr.c, src/global.h, src/gwp.glade,
	  src/main.c: Release 0.2.6 commit:

	  * Added online help * Fixed some UI usability issues on game
	  manager

2003-06-10 17:17  ldipenti

	* src/main.c: Comments format corrected

2003-06-09 01:11  ldipenti

	* README, configure.in, po/POTFILES.in, po/es.po, po/gwp.pot,
	  src/Makefile.am, src/Makefile.in, src/callbacks.c,
	  src/callbacks.h, src/game_mgr.c, src/game_mgr.h,
	  src/game_state.c, src/game_state.h, src/global.h, src/gwp.glade,
	  src/gwp_types.c, src/main.c, src/planet.c, src/planet.h,
	  src/race.c, src/race.h, src/ship.c, src/starchart.c,
	  src/starchart.h, src/tables.c, src/tables.h, src/vp_unpack.c,
	  src/vp_unpack.h, src/vp_utils.c, src/vp_utils.h: Multiple bug
	  fixes & features added:

	  * Full planet data show feature implemented.	* Extra panels
	  hides and shows as requested.  * Estimated population growth
	  table.  * User interface polished.  * Fixed some problems with
	  starchart panning (now it's necessary to press the shift key).

	  This is the version 0.2.5 commit!!

2003-05-30 21:58  ldipenti

	* src/starchart.c: Improved planet mark

2003-05-30 02:25  ldipenti

	* configure.in, pixmaps/logo.png, src/callbacks.c, src/starchart.c,
	  src/starchart.h: * Big logo * Shift-drag to pan the starchart *
	  click will select planet with a little red mark

2003-05-26 00:37  ldipenti

	* Makefile.am, Makefile.in, configure.in, gwp.desktop.in,
	  pixmaps/gwp.png, pixmaps/logo.png, po/POTFILES.in, po/es.po,
	  po/gwp.pot, src/callbacks.c, src/game_mgr.c, src/global.h,
	  src/gwp.glade, src/gwp_types.c, src/gwp_types.h, src/planet.c,
	  src/planet.h, src/starchart.c, src/starchart.h: Release 0.2.3
	  commit!! various things:

	  * i18n * Mini-map * Starchart panning * Starchart & mini-map
	  antialiased * New GWP icon!! (thanks Ricardo!) * Some bugfixes

2003-05-24 21:13  ldipenti

	* src/: starchart.c, callbacks.c, starchart.h, main.c: Some changes
	  to optimize a little the pan feature and not being dependent to
	  libgal (not yet)

2003-05-24 15:23  ldipenti

	* configure.in, po/Makefile.in.in, po/es.po, po/gwp.pot,
	  src/callbacks.c, src/callbacks.h, src/global.h, src/gwp.glade,
	  src/main.c, src/starchart.c: Change cursor while panning the
	  starchart

2003-05-24 10:43  ldipenti

	* src/callbacks.c: Fix: the span feature didn't worked when some
	  key modifier (shift, ctrl, ...) was pressed.

2003-05-24 10:11  ldipenti

	* src/starchart.c: Mark some strings as translatable

2003-05-24 02:41  ldipenti

	* src/: global.h, callbacks.c: Basic starchart pan support - needs
	  some optimization!!

2003-05-24 01:33  ldipenti

	* src/ship.c: Mark strings for translation

2003-05-24 01:30  ldipenti

	* src/: race.c, planet.c: Mark strings for translation

2003-05-23 01:06  ldipenti

	* Makefile.am, Makefile.in, aclocal.m4, config.h.in, configure.in,
	  po/Makefile.in.in, po/POTFILES.in, po/es.po, po/gwp.pot,
	  src/Makefile.in, src/gwp.glade: i18n support added!!! :-)

2003-05-22 00:43  ldipenti

	* configure.in: Manteinance release - 0.2.1

2003-05-22 00:25  ldipenti

	* src/: callbacks.c, game_mgr.c, game_state.c, game_state.h,
	  planet.c, starchart.c, vp_utils.c, vp_utils.h: Code cleanup: tons
	  of memory leaks fixed!

2003-05-19 10:27  ldipenti

	* src/main.c: Commented a couple of gtk 2.2 functions so that gtk
	  2.0 users can compile the program

2003-05-18 01:08  ldipenti

	* configure.in: Release 0.2.0...at last :-)

2003-05-18 00:53  ldipenti

	* configure.in, src/starchart.c: Final commit to release 0.2.0

2003-05-12 15:43  ldipenti

	* contrib/kmkturn-1.3a.zip, contrib/kunpack-1.5d.zip,
	  src/Makefile.am, src/Makefile.in, src/callbacks.c,
	  src/callbacks.h, src/game_mgr.c, src/game_mgr.h,
	  src/game_state.c, src/game_state.h, src/gwp.glade,
	  src/gwp_types.c, src/gwp_types.h, src/main.c, src/vp_utils.c,
	  src/vp_utils.h: Fixed bug that did strange things with the cancel
	  button in the game_mgr_properties. Added RST unpacking support.
	  Fixed some UI design flaw to game mgr props (thanks Nico for the
	  tip!). Added some contrib files.

2003-05-12 02:31  ldipenti

	* src/: race_select.c, race_select.h: No longer needed

2003-05-12 01:40  ldipenti

	* src/: vp_unpack.c, vp_unpack.h: First adaptation of kunpack

2003-05-11 21:30  ldipenti

	* src/vp_types.h: Change all C++-style comments to C-style ones

2003-05-11 21:20  ldipenti

	* src/game_mgr.c: Adds the game name to window title, and race name
	  to label

2003-05-11 21:12  ldipenti

	* contrib/: appendix.txt, filefmt.txt: New docs

2003-05-11 14:54  ldipenti

	* src/gwp_types.h: Moved the GameSettings structure here from old
	  and dead game_types.h

2003-05-11 14:49  ldipenti

	* src/game_types.h: Moved contents to gwp_types.h

2003-05-11 01:59  ldipenti

	* configure: Bye bye useless file

2003-05-11 01:50  ldipenti

	* configure, configure.in, gwp.desktop.in, pixmaps/Makefile.am,
	  src/callbacks.c, src/callbacks.h, src/game_mgr.c, src/gwp.glade:
	  * Finished basic game manager.  * Cleaned some UI on the
	  starchart * This is called: version 0.1.0 :-) TAG!!!

2003-05-10 03:14  ldipenti

	* gwp.desktop.in, pixmaps/Makefile.am, pixmaps/gwp.png,
	  pixmaps/logo.png, src/Makefile.am, src/Makefile.in,
	  src/callbacks.c, src/callbacks.h, src/game_mgr.c, src/game_mgr.h,
	  src/gwp.glade: Backup-only commit: Almost there to version 0.1
	  :-)

2003-05-09 01:06  ldipenti

	* src/: game_mgr.c, game_mgr.h, callbacks.c: Initial game-init code

2003-05-09 00:47  ldipenti

	* src/gwp.glade: Game administration ready!!! yeah!!

2003-05-09 00:44  ldipenti

	* src/: main.c, callbacks.c, game_mgr.h, game_mgr.c: Game
	  administration ready!!! yeah!!

2003-05-07 02:37  ldipenti

	* pixmaps/Makefile.am, pixmaps/gwp_splash.png, src/callbacks.c,
	  src/callbacks.h, src/game_mgr.c, src/game_mgr.h, src/global.h,
	  src/gwp.glade, src/main.c: Backup-only commit - Data saving is
	  ready, data loading no quite yet...

2003-05-05 00:30  ldipenti

	* src/: callbacks.h, game_mgr.c, game_mgr.h, game_types.h,
	  gwp.glade, main.c: Backup-of-the-day commit, game manager almost
	  there!!! :-)

2003-05-05 00:25  ldipenti

	* src/callbacks.c: Backup-of-the-day commit :-) Game Manager almost
	  there!!!

2003-05-03 21:23  ldipenti

	* gwp.desktop.in, src/Makefile.am, src/Makefile.in,
	  src/callbacks.c, src/callbacks.h, src/game_mgr.c, src/gwp.glade,
	  src/main.c, src/race.c, src/race.h: Backup commit only

2003-05-03 01:45  ldipenti

	* src/: Makefile.am, callbacks.c, callbacks.h, game_mgr.c,
	  game_mgr.h, game_types.h, gwp.glade: Backup commit only...

2003-05-02 14:47  ldipenti

	* src/game_types.h: first version: game_types

2003-05-02 01:52  ldipenti

	* Makefile.am, Makefile.in, aclocal.m4, config.h.in, configure,
	  configure.in, po/Makefile.in.in, src/Makefile.am,
	  src/Makefile.in, src/callbacks.c, src/callbacks.h,
	  src/game_mgr.c, src/game_mgr.h, src/global.h, src/gwp.glade,
	  src/gwp.gladep, src/main.c, src/planet.c, src/race_select.c,
	  src/starchart.c, src/vp_utils.c: Generic useless commit, only for
	  backup

2003-05-02 00:37  ldipenti

	* pixmaps/: Makefile.am, game_icon.png: New pixmaps directory

2002-08-10 03:19  ldipenti

	* NEWS, TODO, README, aclocal.m4, Makefile.am, autogen.sh,
	  configure, configure.in, gwp.desktop.in, Makefile.in,
	  config.h.in, AUTHORS, stamp-h.in, ABOUT-NLS, ChangeLog,
	  acconfig.h, po/ChangeLog, po/POTFILES.in, po/Makefile.in.in,
	  src/gwp.gladep, src/vp_types.h, src/game_state.c,
	  src/game_state.h, src/race_select.c, src/race_select.h,
	  src/vp_utils.c, src/vp_utils.h, src/global.h, src/gwp_types.c,
	  src/gwp_types.h, src/Makefile.am, src/callbacks.c,
	  src/callbacks.h, src/Makefile.in, src/main.c, src/support.c,
	  src/support.h, src/starchart.c, src/ship.c, src/ship.h,
	  src/stamp-h.in, src/starchart.h, src/planet.c, src/planet.h,
	  src/gwp.glade, contrib/filefmt.txt, contrib/ion-storms.html,
	  contrib/pcc-markers.png, contrib/.xvpics/pcc-markers.png: Basta
	  de tgz, es hora de CVS

2002-08-10 03:19  ldipenti

	* NEWS, TODO, README, aclocal.m4, Makefile.am, autogen.sh,
	  configure, configure.in, gwp.desktop.in, Makefile.in,
	  config.h.in, AUTHORS, stamp-h.in, ABOUT-NLS, ChangeLog,
	  acconfig.h, po/ChangeLog, po/POTFILES.in, po/Makefile.in.in,
	  src/gwp.gladep, src/vp_types.h, src/game_state.c,
	  src/game_state.h, src/race_select.c, src/race_select.h,
	  src/vp_utils.c, src/vp_utils.h, src/global.h, src/gwp_types.c,
	  src/gwp_types.h, src/Makefile.am, src/callbacks.c,
	  src/callbacks.h, src/Makefile.in, src/main.c, src/support.c,
	  src/support.h, src/starchart.c, src/ship.c, src/ship.h,
	  src/stamp-h.in, src/starchart.h, src/planet.c, src/planet.h,
	  src/gwp.glade, contrib/filefmt.txt, contrib/ion-storms.html,
	  contrib/pcc-markers.png, contrib/.xvpics/pcc-markers.png: Initial
	  revision