File: ChangeLog

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

- mention the point release in all README files


------------------------------------------------------------------------
r9721 | josef | 2008-02-14 19:26:14 +0100 (Do, 14 Feb 2008) | 3 lines
Geänderte Pfade:
   M /branches/ggz-0-0-14/docs/configure.ac
   M /branches/ggz-0-0-14/ggz-client-libs/configure.ac
   M /branches/ggz-0-0-14/ggzd/configure.ac
   M /branches/ggz-0-0-14/gnome-client/configure.ac
   M /branches/ggz-0-0-14/grubby/configure.ac
   M /branches/ggz-0-0-14/gtk-client/configure.ac
   M /branches/ggz-0-0-14/gtk-games/configure.ac
   M /branches/ggz-0-0-14/kde-client/configure.ac
   M /branches/ggz-0-0-14/kde-games/configure.ac
   M /branches/ggz-0-0-14/libggz/configure.ac
   M /branches/ggz-0-0-14/python/configure.ac
   M /branches/ggz-0-0-14/sdl-games/configure.ac
   M /branches/ggz-0-0-14/txt-client/configure.ac
   M /branches/ggz-0-0-14/utils/configure.ac

- prepare 0.0.14.1 point release, all modules are now due for review and install tests


------------------------------------------------------------------------
r9720 | josef | 2008-02-14 19:25:04 +0100 (Do, 14 Feb 2008) | 3 lines
Geänderte Pfade:
   M /branches/ggz-0-0-14/gnome-client/INSTALL

- turn into real file instead of symlink


------------------------------------------------------------------------
r8956 | josef | 2007-01-17 08:06:04 +0100 (Mi, 17 Jan 2007) | 10 lines
Geänderte Pfade:
   A /branches/ggz-0-0-14 (von /trunk:8950)

- branching the ggz-0-0-14 branch

All important changes should be committed here as well, but *only* after a thorough
review period and discussion unless really trivial!

Distributors will likely pick up this branch as their main source.

[commit from josef@nada]


------------------------------------------------------------------------
r8950 | josef | 2007-01-16 19:42:07 +0100 (Di, 16 Jan 2007) | 8 lines
Geänderte Pfade:
   M /trunk/community/ChangeLog
   M /trunk/docs/ChangeLog
   M /trunk/ggz-client-libs/ChangeLog
   M /trunk/ggzd/ChangeLog
   M /trunk/gnome-client/ChangeLog
   M /trunk/grubby/ChangeLog
   M /trunk/gtk-client/ChangeLog
   M /trunk/gtk-games/ChangeLog
   M /trunk/java/ChangeLog
   M /trunk/kde-client/ChangeLog
   M /trunk/kde-games/ChangeLog
   M /trunk/libggz/ChangeLog
   M /trunk/python/ChangeLog
   M /trunk/sdl-games/ChangeLog
   M /trunk/txt-client/ChangeLog
   M /trunk/utils/ChangeLog

- updated changelogs

This is VERY consuming (4 MB changes) since we change the changelog format.
However we have to do so since no tool seems to be able to reproduce our old format.

[commit from josef@nada]


------------------------------------------------------------------------
r8949 | josef | 2007-01-16 19:23:42 +0100 (Di, 16 Jan 2007) | 5 lines
Geänderte Pfade:
   M /trunk/docs/configure.ac
   M /trunk/ggz-client-libs/configure.ac
   M /trunk/ggzd/configure.ac
   M /trunk/gnome-client/configure.ac
   M /trunk/grubby/configure.ac
   M /trunk/gtk-client/configure.ac
   M /trunk/gtk-games/configure.ac
   M /trunk/kde-client/configure.ac
   M /trunk/kde-games/configure.ac
   M /trunk/libggz/configure.ac
   M /trunk/python/configure.ac
   M /trunk/sdl-games/configure.ac
   M /trunk/txt-client/configure.ac
   M /trunk/utils/configure.ac

- 0.0.14pre => 0.0.14

[commit from josef@nada]


------------------------------------------------------------------------
r8947 | josef | 2007-01-16 19:14:12 +0100 (Di, 16 Jan 2007) | 5 lines
Geänderte Pfade:
   M /trunk/community/NEWS
   M /trunk/community/README.GGZ
   M /trunk/docs/AUTHORS
   M /trunk/docs/NEWS
   M /trunk/docs/QuickStart.GGZ
   M /trunk/docs/README.GGZ
   M /trunk/ggz-client-libs/AUTHORS
   M /trunk/ggz-client-libs/NEWS
   M /trunk/ggz-client-libs/QuickStart.GGZ
   M /trunk/ggz-client-libs/README
   M /trunk/ggz-client-libs/README.GGZ
   M /trunk/ggzd/AUTHORS
   M /trunk/ggzd/NEWS
   M /trunk/ggzd/README
   M /trunk/ggzd/README.GGZ
   M /trunk/gnome-client/AUTHORS
   M /trunk/gnome-client/NEWS
   M /trunk/gnome-client/QuickStart.GGZ
   M /trunk/gnome-client/README
   M /trunk/gnome-client/README.GGZ
   M /trunk/grubby/AUTHORS
   M /trunk/grubby/NEWS
   M /trunk/grubby/README
   M /trunk/grubby/README.GGZ
   M /trunk/gtk-client/AUTHORS
   M /trunk/gtk-client/NEWS
   M /trunk/gtk-client/QuickStart.GGZ
   M /trunk/gtk-client/README
   M /trunk/gtk-client/README.GGZ
   M /trunk/gtk-games/AUTHORS
   M /trunk/gtk-games/NEWS
   M /trunk/gtk-games/QuickStart.GGZ
   M /trunk/gtk-games/README
   M /trunk/gtk-games/README.GGZ
   M /trunk/java/AUTHORS
   M /trunk/java/NEWS
   M /trunk/java/README.GGZ
   M /trunk/kde-client/AUTHORS
   M /trunk/kde-client/NEWS
   M /trunk/kde-client/QuickStart.GGZ
   M /trunk/kde-client/README
   M /trunk/kde-client/README.GGZ
   M /trunk/kde-games/AUTHORS
   M /trunk/kde-games/NEWS
   M /trunk/kde-games/QuickStart.GGZ
   M /trunk/kde-games/README
   M /trunk/kde-games/README.GGZ
   M /trunk/libggz/AUTHORS
   M /trunk/libggz/NEWS
   M /trunk/libggz/QuickStart.GGZ
   M /trunk/libggz/README.GGZ
   M /trunk/python/AUTHORS
   M /trunk/python/NEWS
   M /trunk/python/QuickStart.GGZ
   M /trunk/python/README
   M /trunk/python/README.GGZ
   M /trunk/sdl-games/AUTHORS
   M /trunk/sdl-games/NEWS
   M /trunk/sdl-games/QuickStart.GGZ
   M /trunk/sdl-games/README
   M /trunk/sdl-games/README.GGZ
   M /trunk/txt-client/AUTHORS
   M /trunk/txt-client/NEWS
   M /trunk/txt-client/QuickStart.GGZ
   M /trunk/txt-client/README.GGZ
   M /trunk/utils/AUTHORS
   M /trunk/utils/NEWS
   M /trunk/utils/README
   M /trunk/utils/README.GGZ

- update common files slightly, and synchronise them

[commit from josef@nada]


------------------------------------------------------------------------
r8864 | josef | 2007-01-08 14:50:22 +0100 (Mo, 08 Jan 2007) | 5 lines
Geänderte Pfade:
   M /trunk/gnome-client/Makefile.am

- use dist_ primaries

[commit from josef@nada]


------------------------------------------------------------------------
r8852 | josef | 2007-01-08 14:36:45 +0100 (Mo, 08 Jan 2007) | 9 lines
Geänderte Pfade:
   M /trunk/docs/autogen.sh
   M /trunk/ggz-client-libs/autogen.sh
   M /trunk/ggzd/autogen.sh
   M /trunk/gnome-client/autogen.sh
   M /trunk/grubby/autogen.sh
   M /trunk/gtk-client/autogen.sh
   M /trunk/gtk-games/autogen.sh
   M /trunk/kde-client/autogen.sh
   M /trunk/kde-games/autogen.sh
   M /trunk/libggz/autogen.sh
   M /trunk/sdl-games/autogen.sh
   M /trunk/txt-client/autogen.sh
   M /trunk/utils/autogen.sh

- do not assume that there's always a m4 directory available (in docs and python, there aren't)
- make it work for srcdir != builddir

For the latter, we could simplify the script a lot by changing into srcdir first.
But I'm sure we had a reason not to and I don't want to break it right now.

[commit from josef@nada]


------------------------------------------------------------------------
r8819 | jdorje | 2007-01-05 00:38:21 +0100 (Fr, 05 Jan 2007) | 1 line
Geänderte Pfade:
   M /trunk/gnome-client/Makefile.am
   M /trunk/gnome-client/autogen.sh
   M /trunk/gnome-client/m4
   D /trunk/gnome-client/m4/ggz.m4
   D /trunk/gnome-client/m4/system.m4

Use externals for common GGZ m4 files.
------------------------------------------------------------------------
r8802 | josef | 2007-01-04 13:41:51 +0100 (Do, 04 Jan 2007) | 7 lines
Geänderte Pfade:
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

- take --with-ggz-dir into account when using AC_GGZ_VERSION
- prepare ggz.m4 for aclocal installation (a new automake 1.10 feature)
- in ggz-client-libs, remove all m4 files from EXTRA_DIST and use aclocal's -I feature instead

[commit from josef@nada]


------------------------------------------------------------------------
r8777 | josef | 2007-01-02 13:09:25 +0100 (Di, 02 Jan 2007) | 9 lines
Geänderte Pfade:
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

- check if ggz-config ran correctly to avoid errors due to wrong LD_LIBRARY_PATH

Note that I had to forcefully remove libggzcore.so to make that happen as the
LD_LIBRARY_PATH setting is not needed on my system. So whoever came across it
shall now be happy again.

[commit from josef@nada]


------------------------------------------------------------------------
r8725 | josef | 2006-12-13 16:42:32 +0100 (Mi, 13 Dez 2006) | 3 lines
Geänderte Pfade:
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

- sync forced ggz-config usage


------------------------------------------------------------------------
r8651 | josef | 2006-11-09 07:47:54 +0100 (Do, 09 Nov 2006) | 8 lines
Geänderte Pfade:
   M /trunk/ggz-client-libs/configure.ac
   M /trunk/ggz-client-libs/ggzcore/Makefile.am
   M /trunk/gnome-client/m4/system.m4
   M /trunk/gnome-client/motd-editor/Makefile.am
   M /trunk/gnome-client/src/Makefile.am
   M /trunk/grubby/games/guru-chess/Makefile.am
   M /trunk/grubby/grubby/src/Makefile.am
   M /trunk/grubby/m4/system.m4
   M /trunk/gtk-client/ggz-gtk/Makefile.am
   M /trunk/gtk-client/m4/system.m4
   M /trunk/gtk-client/src/Makefile.am
   M /trunk/gtk-games/m4/system.m4
   M /trunk/gtk-games/spades/Makefile.am
   M /trunk/kde-client/m4/system.m4
   M /trunk/kde-games/m4/system.m4
   M /trunk/sdl-games/m4/system.m4
   M /trunk/txt-client/ggz-txt/Makefile.am
   M /trunk/txt-client/m4/system.m4
   M /trunk/utils/m4/system.m4

- propagate the LIB_* changes in system.m4 to all modules
- always use LIB_GETTEXT if i18n functions are called

Now there are both INTLLIBS and LIB_GETTEXT in the gtk+ modules. This seems to be odd.

[commit from josef@armada]


------------------------------------------------------------------------
r8617 | josef | 2006-10-05 16:57:53 +0200 (Do, 05 Okt 2006) | 3 lines
Geänderte Pfade:
   A /trunk/gnome-client/m4/system.m4

- that was forgotten


------------------------------------------------------------------------
r8607 | jdorje | 2006-10-02 23:36:27 +0200 (Mo, 02 Okt 2006) | 1 line
Geänderte Pfade:
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

Josef forgot to propogate the ggz.m4 changes.
------------------------------------------------------------------------
r8587 | jdorje | 2006-09-20 04:15:08 +0200 (Mi, 20 Sep 2006) | 1 line
Geänderte Pfade:
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

Add AC_GGZ_CHECK_SERVER macro.
------------------------------------------------------------------------
r8583 | jdorje | 2006-09-19 17:26:31 +0200 (Di, 19 Sep 2006) | 3 lines
Geänderte Pfade:
   M /trunk/ggz-client-libs/ggz-config/Makefile.am
   M /trunk/ggz-client-libs/ggzcore/Makefile.am
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/grubby/src/Makefile.am
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/gaim-plugin/Makefile.am
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/ggz-txt/Makefile.am
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4
   M /trunk/utils/metaserv/metaserv/Makefile.am

Don't define PREFIX in config.h, as this makes it impossible to change
the prefix at compile time (as per GNU standards).

------------------------------------------------------------------------
r8567 | jdorje | 2006-09-03 07:35:12 +0200 (So, 03 Sep 2006) | 5 lines
Geänderte Pfade:
   M /trunk/ggz-client-libs/Makefile.am
   M /trunk/ggz-client-libs/configure.ac
   M /trunk/ggz-client-libs/ggz-config/Makefile.am
   M /trunk/ggz-client-libs/ggz-config/ggz-config.c
   M /trunk/ggz-client-libs/ggzcore/Makefile.am
   M /trunk/ggz-client-libs/m4/ggz.m4
   A /trunk/ggz-client-libs/m4/system.m4
   M /trunk/ggzd/configure.ac
   M /trunk/ggzd/game_servers/chess/game.c
   M /trunk/ggzd/game_servers/dots/game.c
   M /trunk/ggzd/game_servers/keepalive/src/player.cpp
   M /trunk/ggzd/game_servers/keepalive/src/world.cpp
   M /trunk/ggzd/game_servers/tictactoe/game.c
   M /trunk/ggzd/ggzd/Makefile.am
   M /trunk/ggzd/ggzd/ggzduedit.c
   M /trunk/ggzd/ggzd/parse_opt.c
   M /trunk/ggzd/ggzdmod/ggzdmod.c
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-games/Makefile.am
   M /trunk/gtk-games/m4/ggz.m4
   A /trunk/gtk-games/m4/system.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

Fix problems with substitution of prefixes.  This also resynchronizes the
ggz.m4 files and removes the obsolete AC_GGZ_UNQUOTEDPATH macro.  The new
code conforms to GNU standards as the prefix may be changed at compile time;
see the autoconf manual for details.

------------------------------------------------------------------------
r8452 | jdorje | 2006-08-01 21:53:36 +0200 (Di, 01 Aug 2006) | 2 lines
Geänderte Pfade:
   M /trunk/docs/games/ggz-games/Makefile.am
   M /trunk/docs/games/ggz-games/tictactoe/Makefile.am
   M /trunk/docs/spec/mainspec/Makefile.am
   M /trunk/ggz-client-libs/po/Makefile.am
   M /trunk/ggz-client-libs/po/ggzcore/Makefile.am
   M /trunk/ggzd/game_servers/chess/ai-gnuchess.c
   M /trunk/ggzd/game_servers/chess/ai-gnuchess.h
   M /trunk/ggzd/game_servers/tictactoe/ttt-ai.c
   M /trunk/ggzd/game_servers/tictactoe/ttt-ai.h
   M /trunk/ggzd/ggzd/meta/Makefile.am
   M /trunk/ggzd/ggzd/meta/meta.c
   M /trunk/ggzd/ggzd/meta/meta.h
   M /trunk/ggzd/ggzd/meta/minidom.c
   M /trunk/ggzd/ggzd/meta/minidom.h
   M /trunk/ggzd/ggzd/meta/uri.c
   M /trunk/ggzd/ggzd/meta/uri.h
   M /trunk/ggzd/ggzd/reconfiguration.h
   M /trunk/ggzd/ggzdmod++/Makefile.am
   M /trunk/ggzd/ggzdmod++/ggzgameserver.h
   M /trunk/ggzd/ggzdmod++/mnet.h
   M /trunk/ggzd/ggzdmod++/net.h
   M /trunk/gnome-client/man/Makefile.am
   M /trunk/gtk-client/ggz-gtk/ggz-embed.h
   M /trunk/gtk-client/ggz-gtk/ggz-gtk.h
   M /trunk/kde-games/lib/kggzmodule.h
   M /trunk/kde-games/lib/kggzseatsdialog.h
   M /trunk/libggz/src/ggz_dio.c
   M /trunk/libggz/src/ggz_dio.h
   M /trunk/libggz/src/security/base16.c
   M /trunk/libggz/src/security/base16.h
   M /trunk/playground/ggz-ruby/ai-ttt/ruttt-ai.c
   M /trunk/playground/ggz-ruby/ai-ttt/ttt-ai.c
   M /trunk/playground/ggz-ruby/ai-ttt/ttt-ai.h
   M /trunk/playground/server/async/gai_a.c
   M /trunk/playground/server/async/ggzresolver.c
   M /trunk/playground/server/coregen/proto.c
   M /trunk/utils/metaserv/libmeta/Makefile.am
   M /trunk/utils/metaserv/libmeta/meta.c
   M /trunk/utils/metaserv/libmeta/meta.h
   M /trunk/utils/metaserv/libmeta/minidom.c
   M /trunk/utils/metaserv/libmeta/minidom.h
   M /trunk/utils/metaserv/libmeta/uri.c
   M /trunk/utils/metaserv/libmeta/uri.h

Enable keyword substitution for all .c, .h, .ac, and .am files.

------------------------------------------------------------------------
r8412 | jdorje | 2006-07-28 02:48:14 +0200 (Fr, 28 Jul 2006) | 1 line
Geänderte Pfade:
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

Extensions to AC_GGZ_VERSION.
------------------------------------------------------------------------
r8385 | josef | 2006-07-22 09:41:49 +0200 (Sa, 22 Jul 2006) | 3 lines
Geänderte Pfade:
   M /trunk/docs/configure.ac
   M /trunk/gnome-client/configure.ac
   M /trunk/gtk-games/configure.ac
   M /trunk/kde-games/configure.ac
   M /trunk/libggz/configure.ac
   M /trunk/sdl-games/configure.ac
   M /trunk/txt-client/configure.ac

- make them all appear as 0.0.14pre now so we're consistent


------------------------------------------------------------------------
r8278 | josef | 2006-06-27 09:28:12 +0200 (Di, 27 Jun 2006) | 3 lines
Geänderte Pfade:
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

- sync all m4 files to get multiple-level unquoting of shell variables


------------------------------------------------------------------------
r8081 | josef | 2006-05-30 14:59:51 +0200 (Di, 30 Mai 2006) | 8 lines
Geänderte Pfade:
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

- prefix searching fix: always un-expand the default variables before using them

The core of the problem is that make resolves recursively defined variables just
fine, e.g. libdir=${exec_prefix}/lib with exec_prefix=${prefix}, whereas shell
code only substitutes once! Therefore, we trick with the evil eval command...
and --libdir=/usr/lib64 doesn't break the prefix search anymore.


------------------------------------------------------------------------
r8046 | josef | 2006-05-22 08:51:28 +0200 (Mo, 22 Mai 2006) | 7 lines
Geänderte Pfade:
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

[openSUSE]

- attempt to let GGZ take advantage of pure 64-bit systems: support (/usr)/lib64
- define a dummy GGZMODULECONFDIR even in the absence of ggz-config
- synchronisation of ggz.m4


------------------------------------------------------------------------
r7942 | josef | 2006-03-16 16:15:01 +0100 (Do, 16 Mär 2006) | 3 lines
Geänderte Pfade:
   M /trunk/community/ChangeLog
   M /trunk/docs/ChangeLog
   M /trunk/ggz-client-libs/ChangeLog
   M /trunk/ggzd/ChangeLog
   M /trunk/gnome-client/ChangeLog
   M /trunk/grubby/ChangeLog
   M /trunk/gtk-client/ChangeLog
   M /trunk/gtk-games/ChangeLog
   M /trunk/kde-client/ChangeLog
   M /trunk/kde-games/ChangeLog
   M /trunk/libggz/ChangeLog
   M /trunk/python/ChangeLog
   M /trunk/sdl-games/ChangeLog
   M /trunk/txt-client/ChangeLog
   M /trunk/utils/ChangeLog

- global changelog updates for 0.0.13 (boy have we been lazy this time!)


------------------------------------------------------------------------
r7912 | josef | 2006-03-14 14:54:27 +0100 (Di, 14 Mär 2006) | 3 lines
Geänderte Pfade:
   M /trunk/ggz-client-libs/README
   M /trunk/gnome-client/README
   M /trunk/grubby/README
   M /trunk/gtk-client/README
   M /trunk/gtk-games/README
   M /trunk/kde-client/README
   M /trunk/kde-games/README
   M /trunk/python/README
   M /trunk/sdl-games/README
   M /trunk/utils/README

- version bumping in the README files


------------------------------------------------------------------------
r7911 | josef | 2006-03-14 14:53:58 +0100 (Di, 14 Mär 2006) | 3 lines
Geänderte Pfade:
   M /trunk/docs/QuickStart.GGZ
   M /trunk/docs/autogen.sh
   M /trunk/ggz-client-libs/QuickStart.GGZ
   M /trunk/ggz-client-libs/autogen.sh
   M /trunk/ggzd/autogen.sh
   M /trunk/gnome-client/QuickStart.GGZ
   M /trunk/gnome-client/autogen.sh
   M /trunk/grubby/autogen.sh
   M /trunk/gtk-client/QuickStart.GGZ
   M /trunk/gtk-client/autogen.sh
   M /trunk/gtk-games/QuickStart.GGZ
   M /trunk/gtk-games/autogen.sh
   M /trunk/kde-client/QuickStart.GGZ
   M /trunk/kde-client/autogen.sh
   M /trunk/kde-games/QuickStart.GGZ
   M /trunk/kde-games/autogen.sh
   M /trunk/python/QuickStart.GGZ
   M /trunk/sdl-games/QuickStart.GGZ
   M /trunk/sdl-games/autogen.sh
   M /trunk/txt-client/QuickStart.GGZ
   M /trunk/txt-client/autogen.sh
   M /trunk/utils/autogen.sh

- more synchronisation of common files (must be a boring day...)


------------------------------------------------------------------------
r7905 | josef | 2006-03-14 14:47:11 +0100 (Di, 14 Mär 2006) | 4 lines
Geänderte Pfade:
   M /trunk/docs/AUTHORS
   M /trunk/docs/NEWS
   M /trunk/docs/README.GGZ
   M /trunk/ggz-client-libs/AUTHORS
   M /trunk/ggz-client-libs/NEWS
   M /trunk/ggz-client-libs/README.GGZ
   M /trunk/ggzd/AUTHORS
   M /trunk/ggzd/NEWS
   M /trunk/ggzd/README.GGZ
   M /trunk/gnome-client/AUTHORS
   M /trunk/gnome-client/NEWS
   M /trunk/gnome-client/README.GGZ
   M /trunk/grubby/AUTHORS
   M /trunk/grubby/NEWS
   M /trunk/grubby/README.GGZ
   M /trunk/gtk-client/AUTHORS
   M /trunk/gtk-client/NEWS
   M /trunk/gtk-client/README.GGZ
   M /trunk/gtk-games/AUTHORS
   M /trunk/gtk-games/NEWS
   M /trunk/gtk-games/README.GGZ
   A /trunk/java/AUTHORS
   A /trunk/java/NEWS
   A /trunk/java/README.GGZ
   M /trunk/kde-client/AUTHORS
   M /trunk/kde-client/NEWS
   M /trunk/kde-client/README.GGZ
   M /trunk/kde-games/AUTHORS
   M /trunk/kde-games/NEWS
   M /trunk/kde-games/README.GGZ
   M /trunk/libggz/NEWS
   M /trunk/python/AUTHORS
   M /trunk/python/NEWS
   M /trunk/python/README.GGZ
   M /trunk/sdl-games/AUTHORS
   M /trunk/sdl-games/NEWS
   M /trunk/sdl-games/README.GGZ
   M /trunk/txt-client/AUTHORS
   M /trunk/txt-client/NEWS
   M /trunk/txt-client/README.GGZ
   M /trunk/utils/AUTHORS
   M /trunk/utils/NEWS
   M /trunk/utils/README.GGZ

- sync all common files from libggz (README.GGZ, AUTHORS)
- updated NEWS file for the upcoming 0.0.13 release


------------------------------------------------------------------------
r7903 | josef | 2006-03-14 14:45:48 +0100 (Di, 14 Mär 2006) | 3 lines
Geänderte Pfade:
   M /trunk/docs/configure.ac
   M /trunk/ggz-client-libs/configure.ac
   M /trunk/ggzd/configure.ac
   M /trunk/gnome-client/configure.ac
   M /trunk/grubby/configure.ac
   M /trunk/gtk-client/configure.ac
   M /trunk/gtk-games/configure.ac
   M /trunk/kde-client/configure.ac
   M /trunk/kde-games/configure.ac
   M /trunk/libggz/configure.ac
   M /trunk/sdl-games/configure.ac
   M /trunk/txt-client/configure.ac
   M /trunk/utils/configure.ac

- bump all package numbers to 0.0.13 already


------------------------------------------------------------------------
r7782 | jdorje | 2006-01-14 06:29:03 +0100 (Sa, 14 Jan 2006) | 1 line
Geänderte Pfade:
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

Fix AM_CONDITIONAL problem.
------------------------------------------------------------------------
r7762 | jdorje | 2006-01-11 08:00:16 +0100 (Mi, 11 Jan 2006) | 1 line
Geänderte Pfade:
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

ggz-gtk support in ggz.m4.
------------------------------------------------------------------------
r7690 | josef | 2005-12-29 12:31:27 +0100 (Do, 29 Dez 2005) | 4 lines
Geänderte Pfade:
   M /trunk/docs/README.GGZ
   M /trunk/docs/autogen.sh
   M /trunk/ggz-client-libs/README.GGZ
   M /trunk/ggz-client-libs/autogen.sh
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggz-client-libs/m4/i18n.mk
   M /trunk/ggzd/README.GGZ
   M /trunk/ggzd/autogen.sh
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/README.GGZ
   M /trunk/gnome-client/autogen.sh
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/gnome-client/m4/i18n.mk
   M /trunk/grubby/README.GGZ
   M /trunk/grubby/autogen.sh
   M /trunk/grubby/m4/ggz.m4
   M /trunk/grubby/m4/i18n.mk
   M /trunk/gtk-client/README.GGZ
   M /trunk/gtk-client/autogen.sh
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-client/m4/i18n.mk
   M /trunk/gtk-games/README.GGZ
   M /trunk/gtk-games/autogen.sh
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/gtk-games/m4/i18n.mk
   M /trunk/kde-client/README.GGZ
   M /trunk/kde-client/autogen.sh
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/README.GGZ
   M /trunk/kde-games/autogen.sh
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/README.GGZ
   M /trunk/libggz/autogen.sh
   M /trunk/libggz/m4/ggz.m4
   M /trunk/python/README.GGZ
   M /trunk/sdl-games/README.GGZ
   M /trunk/sdl-games/autogen.sh
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/README.GGZ
   M /trunk/txt-client/autogen.sh
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/txt-client/m4/i18n.mk
   M /trunk/utils/README.GGZ
   M /trunk/utils/autogen.sh
   M /trunk/utils/m4/ggz.m4

- synchronisation of all globally used files
- in the future, README.GGZ should be even more generic!


------------------------------------------------------------------------
r7660 | josef | 2005-12-12 12:54:49 +0100 (Mo, 12 Dez 2005) | 5 lines
Geänderte Pfade:
   M /trunk/community/web/articles
   M /trunk/community/web/common
   M /trunk/community/web/map
   D /trunk/docs/.cvsignore
   D /trunk/docs/articles/.cvsignore
   D /trunk/docs/coreclients/.cvsignore
   D /trunk/docs/games/.cvsignore
   D /trunk/docs/games/external-games/.cvsignore
   D /trunk/docs/games/game-development/.cvsignore
   D /trunk/docs/games/ggzcards/.cvsignore
   D /trunk/docs/games/hastings/.cvsignore
   D /trunk/docs/games/modules/.cvsignore
   D /trunk/docs/ggz-project/.cvsignore
   D /trunk/docs/grubby/.cvsignore
   D /trunk/docs/overview/.cvsignore
   D /trunk/docs/overview/architecture/.cvsignore
   D /trunk/docs/server/.cvsignore
   D /trunk/docs/server/hosting/.cvsignore
   M /trunk/docs/spec
   D /trunk/docs/spec/.cvsignore
   D /trunk/docs/spec/clientspec/.cvsignore
   D /trunk/docs/spec/serverspec/.cvsignore
   M /trunk/ggz-client-libs
   D /trunk/ggz-client-libs/.cvsignore
   D /trunk/ggz-client-libs/desktop/.cvsignore
   D /trunk/ggz-client-libs/ggz-config/.cvsignore
   D /trunk/ggz-client-libs/ggz-wrapper/.cvsignore
   D /trunk/ggz-client-libs/ggzcore/.cvsignore
   D /trunk/ggz-client-libs/ggzmod/.cvsignore
   D /trunk/ggz-client-libs/ggzmod-ggz/.cvsignore
   D /trunk/ggz-client-libs/man/.cvsignore
   D /trunk/ggz-client-libs/po/.cvsignore
   D /trunk/ggz-client-libs/tests/.cvsignore
   M /trunk/ggzd
   D /trunk/ggzd/.cvsignore
   D /trunk/ggzd/doc/.cvsignore
   D /trunk/ggzd/game_servers/.cvsignore
   D /trunk/ggzd/game_servers/chess/.cvsignore
   M /trunk/ggzd/game_servers/chess/libcgc
   D /trunk/ggzd/game_servers/chess/libcgc/.cvsignore
   D /trunk/ggzd/game_servers/chinese-checkers/.cvsignore
   D /trunk/ggzd/game_servers/combat/.cvsignore
   D /trunk/ggzd/game_servers/connectx/.cvsignore
   D /trunk/ggzd/game_servers/dots/.cvsignore
   D /trunk/ggzd/game_servers/escape/.cvsignore
   D /trunk/ggzd/game_servers/geekgame/.cvsignore
   D /trunk/ggzd/game_servers/ggzcards/.cvsignore
   M /trunk/ggzd/game_servers/ggzcards/ai
   D /trunk/ggzd/game_servers/ggzcards/ai/.cvsignore
   M /trunk/ggzd/game_servers/ggzcards/client
   D /trunk/ggzd/game_servers/ggzcards/client/.cvsignore
   M /trunk/ggzd/game_servers/ggzcards/common
   D /trunk/ggzd/game_servers/ggzcards/common/.cvsignore
   D /trunk/ggzd/game_servers/ggzcards/config/.cvsignore
   M /trunk/ggzd/game_servers/ggzcards/games
   D /trunk/ggzd/game_servers/ggzcards/games/.cvsignore
   D /trunk/ggzd/game_servers/hastings/.cvsignore
   D /trunk/ggzd/game_servers/hastings/maps/.cvsignore
   D /trunk/ggzd/game_servers/keepalive/.cvsignore
   D /trunk/ggzd/game_servers/keepalive/ggzsh/.cvsignore
   D /trunk/ggzd/game_servers/keepalive/src/.cvsignore
   D /trunk/ggzd/game_servers/krosswater/.cvsignore
   D /trunk/ggzd/game_servers/krosswater/stackpath/.cvsignore
   D /trunk/ggzd/game_servers/krosswater/zoneserver/.cvsignore
   D /trunk/ggzd/game_servers/lapocha/.cvsignore
   D /trunk/ggzd/game_servers/muehle/.cvsignore
   D /trunk/ggzd/game_servers/muehle/qtserv/.cvsignore
   D /trunk/ggzd/game_servers/muehle/variants/.cvsignore
   D /trunk/ggzd/game_servers/reversi/.cvsignore
   D /trunk/ggzd/game_servers/spades/.cvsignore
   D /trunk/ggzd/game_servers/tuxman/.cvsignore
   D /trunk/ggzd/game_servers/widelands/.cvsignore
   D /trunk/ggzd/ggzd/.cvsignore
   D /trunk/ggzd/ggzd/database/.cvsignore
   D /trunk/ggzd/ggzdmod/.cvsignore
   M /trunk/ggzd/ggzdmod++
   D /trunk/ggzd/man/.cvsignore
   D /trunk/ggzd/tests/.cvsignore
   M /trunk/gnome-client
   D /trunk/gnome-client/.cvsignore
   A /trunk/gnome-client/INSTALL
   M /trunk/gnome-client/man
   D /trunk/gnome-client/motd-editor/.cvsignore
   D /trunk/gnome-client/pixmaps/.cvsignore
   D /trunk/gnome-client/po/.cvsignore
   D /trunk/gnome-client/src/.cvsignore
   D /trunk/gnome-client/src/.deps/.cvsignore
   D /trunk/grubby/.cvsignore
   D /trunk/grubby/games/.cvsignore
   D /trunk/grubby/games/guru-chess/.cvsignore
   D /trunk/grubby/games/guru-ttt/.cvsignore
   D /trunk/grubby/games/lib/.cvsignore
   D /trunk/grubby/grubby/.cvsignore
   D /trunk/grubby/grubby/data/.cvsignore
   D /trunk/grubby/grubby/modules/.cvsignore
   D /trunk/grubby/grubby/po/.cvsignore
   D /trunk/grubby/grubby/src/.cvsignore
   D /trunk/grubby/man/.cvsignore
   D /trunk/grubby/man/de/.cvsignore
   M /trunk/gtk-client
   D /trunk/gtk-client/.cvsignore
   D /trunk/gtk-client/doc/.cvsignore
   D /trunk/gtk-client/gaim-plugin/.cvsignore
   D /trunk/gtk-client/ggz-gtk/.cvsignore
   D /trunk/gtk-client/ggz-gtk/glade/.cvsignore
   D /trunk/gtk-client/man/.cvsignore
   D /trunk/gtk-client/po/.cvsignore
   M /trunk/gtk-games
   D /trunk/gtk-games/.cvsignore
   D /trunk/gtk-games/chess/.cvsignore
   D /trunk/gtk-games/chess/bitmaps/.cvsignore
   D /trunk/gtk-games/chess/glade/.cvsignore
   D /trunk/gtk-games/chess/libcgc/.cvsignore
   D /trunk/gtk-games/chinese-checkers/.cvsignore
   D /trunk/gtk-games/chinese-checkers/glade/.cvsignore
   D /trunk/gtk-games/chinese-checkers/pixmaps/.cvsignore
   D /trunk/gtk-games/combat/.cvsignore
   D /trunk/gtk-games/combat/glade/.cvsignore
   D /trunk/gtk-games/combat/maps/.cvsignore
   D /trunk/gtk-games/combat/pixmaps/.cvsignore
   D /trunk/gtk-games/combat/pixmaps/default/.cvsignore
   D /trunk/gtk-games/common/.cvsignore
   D /trunk/gtk-games/common/cardsets/.cvsignore
   D /trunk/gtk-games/dots/.cvsignore
   D /trunk/gtk-games/ggzcards/.cvsignore
   D /trunk/gtk-games/ggzcards/client/.cvsignore
   D /trunk/gtk-games/ggzcards/common/.cvsignore
   D /trunk/gtk-games/hastings/.cvsignore
   D /trunk/gtk-games/hastings/pixmaps/.cvsignore
   D /trunk/gtk-games/po/.cvsignore
   D /trunk/gtk-games/po/chess/.cvsignore
   D /trunk/gtk-games/po/chinese-checkers/.cvsignore
   D /trunk/gtk-games/po/combat/.cvsignore
   D /trunk/gtk-games/po/common/.cvsignore
   D /trunk/gtk-games/po/dots/.cvsignore
   D /trunk/gtk-games/po/ggzcards/.cvsignore
   D /trunk/gtk-games/po/hastings/.cvsignore
   D /trunk/gtk-games/po/reversi/.cvsignore
   D /trunk/gtk-games/po/spades/.cvsignore
   D /trunk/gtk-games/po/tictactoe/.cvsignore
   D /trunk/gtk-games/reversi/.cvsignore
   D /trunk/gtk-games/reversi/glade/.cvsignore
   D /trunk/gtk-games/spades/.cvsignore
   D /trunk/gtk-games/tictactoe/.cvsignore
   M /trunk/kde-client
   D /trunk/kde-client/.cvsignore
   D /trunk/kde-client/compcal/.cvsignore
   D /trunk/kde-client/compcal/data/.cvsignore
   D /trunk/kde-client/compcal/src/.cvsignore
   D /trunk/kde-client/compcal/src/lib/.cvsignore
   D /trunk/kde-client/ggz-kde/.cvsignore
   D /trunk/kde-client/ggz-kde/data/.cvsignore
   D /trunk/kde-client/ggz-kde/data/browser/.cvsignore
   D /trunk/kde-client/ggz-kde/data/icons/.cvsignore
   D /trunk/kde-client/ggz-kde/data/icons/games/.cvsignore
   D /trunk/kde-client/ggz-kde/data/icons/players/.cvsignore
   D /trunk/kde-client/ggz-kde/data/kde/.cvsignore
   D /trunk/kde-client/ggz-kde/data/splash/.cvsignore
   D /trunk/kde-client/ggz-kde/doc/.cvsignore
   D /trunk/kde-client/ggz-kde/doc/de/.cvsignore
   D /trunk/kde-client/ggz-kde/ggzcore++/.cvsignore
   D /trunk/kde-client/ggz-kde/ggzcore++/doc/.cvsignore
   D /trunk/kde-client/ggz-kde/ggzcore++/doc/html/.cvsignore
   D /trunk/kde-client/ggz-kde/ggzcore++/src/.cvsignore
   D /trunk/kde-client/ggz-kde/po/.cvsignore
   D /trunk/kde-client/ggz-kde/src/.cvsignore
   D /trunk/kde-client/ggz-kde/src/abstract/.cvsignore
   D /trunk/kde-client/ggz-kde/src/widgets/.cvsignore
   M /trunk/kde-client/ggz-kde/src/widgets/more
   D /trunk/kde-client/ggz-kde/src/widgets/more/.cvsignore
   D /trunk/kde-client/ggzap/.cvsignore
   D /trunk/kde-client/kcm_ggz/.cvsignore
   D /trunk/kde-client/kcm_ggz/modules/.cvsignore
   D /trunk/kde-client/keepalivecontrol/.cvsignore
   D /trunk/kde-client/keepalivecontrol/data/.cvsignore
   D /trunk/kde-client/keepalivecontrol/src/.cvsignore
   D /trunk/kde-client/kgrubby/.cvsignore
   D /trunk/kde-client/kgrubby/data/.cvsignore
   D /trunk/kde-client/kgrubby/src/.cvsignore
   D /trunk/kde-client/kio_ggz/.cvsignore
   D /trunk/kde-client/kio_ggz/kioslave/.cvsignore
   D /trunk/kde-client/kio_ggzmeta/.cvsignore
   D /trunk/kde-client/kio_ggzmeta/kioslave/.cvsignore
   D /trunk/kde-client/man/.cvsignore
   D /trunk/kde-client/po/.cvsignore
   D /trunk/kde-client/po/compcal/.cvsignore
   D /trunk/kde-client/po/ggzap/.cvsignore
   D /trunk/kde-client/po/kcm_ggz/.cvsignore
   D /trunk/kde-client/po/kgrubby/.cvsignore
   D /trunk/kde-client/po/shadowbridge/.cvsignore
   D /trunk/kde-client/shadowbridge/.cvsignore
   D /trunk/kde-client/shadowbridge/pics/.cvsignore
   M /trunk/kde-games
   D /trunk/kde-games/.cvsignore
   D /trunk/kde-games/KReversi/.cvsignore
   D /trunk/kde-games/KReversi/pixmaps/.cvsignore
   D /trunk/kde-games/KReversi/pixmaps/blend/.cvsignore
   D /trunk/kde-games/KReversi/pixmaps/default/.cvsignore
   D /trunk/kde-games/KReversi/pixmaps/gtk-client/.cvsignore
   D /trunk/kde-games/fyrdman/.cvsignore
   D /trunk/kde-games/fyrdman/data/.cvsignore
   D /trunk/kde-games/kcc/.cvsignore
   D /trunk/kde-games/kcc/themes/.cvsignore
   D /trunk/kde-games/kcc/themes/default/.cvsignore
   D /trunk/kde-games/kdots/.cvsignore
   D /trunk/kde-games/kdots/Dot/.cvsignore
   D /trunk/kde-games/keepalive/.cvsignore
   D /trunk/kde-games/keepalive/pics/.cvsignore
   D /trunk/kde-games/keepalive/src/.cvsignore
   D /trunk/kde-games/koenig/.cvsignore
   D /trunk/kde-games/koenig/libcgc/.cvsignore
   D /trunk/kde-games/koenig/pics/.cvsignore
   D /trunk/kde-games/koenig/pieces/.cvsignore
   D /trunk/kde-games/krosswater/.cvsignore
   D /trunk/kde-games/krosswater/gfx/.cvsignore
   D /trunk/kde-games/krosswater/zoneclient/.cvsignore
   D /trunk/kde-games/ktictactux/.cvsignore
   D /trunk/kde-games/ktictactux/themes/.cvsignore
   D /trunk/kde-games/lib/.cvsignore
   D /trunk/kde-games/man/.cvsignore
   D /trunk/kde-games/muehle/.cvsignore
   D /trunk/kde-games/muehle/doc/.cvsignore
   D /trunk/kde-games/muehle/pics/.cvsignore
   D /trunk/kde-games/muehle/pics/alt/.cvsignore
   D /trunk/kde-games/muehle/pics/standard/.cvsignore
   D /trunk/kde-games/muehle/src/.cvsignore
   D /trunk/kde-games/muehle/src/ai/.cvsignore
   D /trunk/kde-games/muehle/src/ggzwrap/.cvsignore
   D /trunk/kde-games/muehle/variants/.cvsignore
   D /trunk/kde-games/po/.cvsignore
   D /trunk/kde-games/po/KReversi/.cvsignore
   D /trunk/kde-games/po/fyrdman/.cvsignore
   D /trunk/kde-games/po/kdots/.cvsignore
   D /trunk/kde-games/po/koenig/.cvsignore
   D /trunk/kde-games/po/krosswater/.cvsignore
   D /trunk/kde-games/po/ktictactux/.cvsignore
   D /trunk/kde-games/po/muehle/.cvsignore
   M /trunk/libggz
   D /trunk/libggz/.cvsignore
   D /trunk/libggz/man/.cvsignore
   M /trunk/libggz/src
   D /trunk/libggz/src/.cvsignore
   D /trunk/libggz/src/security/.cvsignore
   D /trunk/libggz/tests/.cvsignore
   M /trunk/playground/README
   D /trunk/playground/agrue/agrue/.cvsignore
   D /trunk/playground/colorsniff/.cvsignore
   D /trunk/playground/ggz-java/distributed-ggz/classes/.cvsignore
   D /trunk/playground/ggz-java/tictactoe/classes/.cvsignore
   D /trunk/playground/ggz-java/tictactoe/classes/GGZ/.cvsignore
   D /trunk/playground/ggz-java/tictactoeclient/.cvsignore
   M /trunk/playground/ggz-ruby/ai-ttt/ttt-ai.c
   D /trunk/playground/ggz-ruby/ruggzdmod/.cvsignore
   D /trunk/playground/kopete-ggz/.cvsignore
   D /trunk/playground/sdl-games/tuxman-server/.cvsignore
   D /trunk/playground/sdl-games/tuxman-server/lib/.cvsignore
   D /trunk/python/.cvsignore
   M /trunk/python/chess
   M /trunk/python/escape-sdl
   D /trunk/python/escape-sdl/.cvsignore
   M /trunk/python/ggzboard
   D /trunk/python/ggzboard/.cvsignore
   D /trunk/python/go/.cvsignore
   M /trunk/python/lib
   D /trunk/python/po/.cvsignore
   D /trunk/python/pyggzchess/.cvsignore
   D /trunk/python/pyggzcore/.cvsignore
   D /trunk/python/pyggzdmod/.cvsignore
   D /trunk/python/pyggzmod/.cvsignore
   D /trunk/python/pyrsvgsdl/.cvsignore
   M /trunk/python/xadrez-chines
   D /trunk/python/xadrez-chines/.cvsignore
   M /trunk/sdl-games
   D /trunk/sdl-games/.cvsignore
   D /trunk/sdl-games/geekgame/.cvsignore
   D /trunk/sdl-games/geekgame/graphics/.cvsignore
   D /trunk/sdl-games/ttt3d/.cvsignore
   M /trunk/txt-client
   D /trunk/txt-client/.cvsignore
   D /trunk/txt-client/ggz-txt/.cvsignore
   D /trunk/txt-client/man/.cvsignore
   D /trunk/txt-client/po/.cvsignore
   D /trunk/txt-client/tttxt/.cvsignore
   M /trunk/utils
   D /trunk/utils/.cvsignore
   D /trunk/utils/cmd-client/.cvsignore
   D /trunk/utils/ggzcomm/.cvsignore
   D /trunk/utils/man/.cvsignore
   D /trunk/utils/metaserv/.cvsignore
   D /trunk/utils/metaserv/gui-qt/.cvsignore
   D /trunk/utils/metaserv/metaserv/.cvsignore
   D /trunk/utils/metaserv/minidom/.cvsignore
   D /trunk/utils/telggz/.cvsignore
   D /trunk/www/docs/.cvsignore

This week's XXL commit!
- removal of all .cvsignore files
- addition of *.a, *.os, ... to svn:ignore


------------------------------------------------------------------------
r7602 | josef | 2005-09-28 01:44:48 +0200 (Mi, 28 Sep 2005) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/configure.ac

- move PACKAGE_LOCALE_DIR variable further down


------------------------------------------------------------------------
r7601 | josef | 2005-09-28 01:37:04 +0200 (Mi, 28 Sep 2005) | 4 lines
Geänderte Pfade:
   M /trunk/ggz-client-libs/configure.ac
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggzd/configure.ac
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/configure.ac
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/configure.ac
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/configure.ac
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-games/configure.ac
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/kde-client/configure.ac
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/configure.ac
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/configure.ac
   M /trunk/utils/m4/ggz.m4

- move prefix sanitiser into AC_GGZ_INIT
- remove all assumptions over prefix being NONE


------------------------------------------------------------------------
r7593 | josef | 2005-09-25 20:25:14 +0200 (So, 25 Sep 2005) | 3 lines
Geänderte Pfade:
   M /trunk/docs/ChangeLog
   M /trunk/ggz-client-libs/ChangeLog
   M /trunk/ggzd/ChangeLog
   M /trunk/gnome-client/ChangeLog
   M /trunk/grubby/ChangeLog
   M /trunk/gtk-client/ChangeLog
   M /trunk/gtk-games/ChangeLog
   M /trunk/kde-client/ChangeLog
   M /trunk/kde-games/ChangeLog
   M /trunk/libggz/ChangeLog
   M /trunk/python/ChangeLog
   M /trunk/sdl-games/ChangeLog
   M /trunk/txt-client/ChangeLog
   M /trunk/utils/ChangeLog

- big changelog update (2.3 MB... due to new formatting)


------------------------------------------------------------------------
r7579 | josef | 2005-09-25 18:49:05 +0200 (So, 25 Sep 2005) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/man/Makefile.am

- man pages must go into EXTRA_DIST!


------------------------------------------------------------------------
r7551 | josef | 2005-09-25 12:11:25 +0200 (So, 25 Sep 2005) | 3 lines
Geänderte Pfade:
   M /trunk/community/Makefile
   M /trunk/community/web/common/htconf-dist
   M /trunk/docs/configure.ac
   M /trunk/ggz-client-libs/configure.ac
   M /trunk/ggzd/configure.ac
   M /trunk/gnome-client/configure.ac
   M /trunk/grubby/configure.ac
   M /trunk/gtk-client/configure.ac
   M /trunk/gtk-games/configure.ac
   M /trunk/kde-client/configure.ac
   M /trunk/kde-games/configure.ac
   M /trunk/libggz/configure.ac
   M /trunk/python/configure.ac
   M /trunk/sdl-games/configure.ac
   M /trunk/txt-client/configure.ac
   M /trunk/utils/configure.ac

- more version string changes in the build system


------------------------------------------------------------------------
r7550 | josef | 2005-09-25 11:54:30 +0200 (So, 25 Sep 2005) | 4 lines
Geänderte Pfade:
   M /trunk/community/NEWS
   M /trunk/community/README.GGZ
   M /trunk/docs/NEWS
   M /trunk/docs/README.GGZ
   M /trunk/ggz-client-libs/NEWS
   M /trunk/ggz-client-libs/README
   M /trunk/ggz-client-libs/README.GGZ
   M /trunk/ggzd/NEWS
   M /trunk/ggzd/README
   M /trunk/ggzd/README.GGZ
   M /trunk/gnome-client/NEWS
   M /trunk/gnome-client/README
   M /trunk/gnome-client/README.GGZ
   M /trunk/grubby/NEWS
   M /trunk/grubby/README
   M /trunk/grubby/README.GGZ
   M /trunk/gtk-client/NEWS
   M /trunk/gtk-client/README
   M /trunk/gtk-client/README.GGZ
   M /trunk/gtk-games/NEWS
   M /trunk/gtk-games/README
   M /trunk/gtk-games/README.GGZ
   M /trunk/kde-client/NEWS
   M /trunk/kde-client/README
   M /trunk/kde-client/README.GGZ
   M /trunk/kde-games/NEWS
   M /trunk/kde-games/README
   M /trunk/kde-games/README.GGZ
   M /trunk/libggz/NEWS
   M /trunk/libggz/README.GGZ
   M /trunk/python/NEWS
   M /trunk/python/README
   M /trunk/python/README.GGZ
   M /trunk/sdl-games/NEWS
   M /trunk/sdl-games/README
   M /trunk/sdl-games/README.GGZ
   M /trunk/txt-client/NEWS
   M /trunk/txt-client/README.GGZ
   M /trunk/utils/NEWS
   M /trunk/utils/README
   M /trunk/utils/README.GGZ

- version updates in common files
- news and release-specific changes


------------------------------------------------------------------------
r7547 | josef | 2005-09-23 23:54:25 +0200 (Fr, 23 Sep 2005) | 4 lines
Geänderte Pfade:
   M /trunk/community/COPYING
   M /trunk/ggz-client-libs/COPYING
   M /trunk/ggzd/COPYING
   A /trunk/gnome-client/COPYING
   M /trunk/grubby/COPYING
   M /trunk/gtk-client/COPYING
   M /trunk/gtk-games/COPYING
   M /trunk/kde-client/COPYING
   M /trunk/kde-games/COPYING
   M /trunk/libggz/COPYING
   M /trunk/playground/COPYING
   M /trunk/python/COPYING
   A /trunk/sdl-games/COPYING
   M /trunk/txt-client/COPYING
   M /trunk/utils/COPYING

- add copyright files for gnome-client and sdl-games to SVN
- update all copyright files with current version, including the new FSF address in Boston


------------------------------------------------------------------------
r7516 | josef | 2005-09-15 20:00:53 +0200 (Do, 15 Sep 2005) | 4 lines
Geänderte Pfade:
   M /trunk/docs/autogen.sh
   M /trunk/ggz-client-libs/autogen.sh
   M /trunk/ggz-client-libs/configure.ac
   M /trunk/ggzd/autogen.sh
   M /trunk/ggzd/configure.ac
   M /trunk/gnome-client/autogen.sh
   M /trunk/grubby/autogen.sh
   M /trunk/grubby/configure.ac
   M /trunk/gtk-client/autogen.sh
   M /trunk/gtk-client/configure.ac
   M /trunk/gtk-games/autogen.sh
   M /trunk/gtk-games/configure.ac
   M /trunk/kde-client/autogen.sh
   M /trunk/kde-client/configure.ac
   M /trunk/kde-games/autogen.sh
   M /trunk/kde-games/configure.ac
   M /trunk/sdl-games/autogen.sh
   M /trunk/sdl-games/configure.ac
   M /trunk/txt-client/autogen.sh
   M /trunk/txt-client/configure.ac
   M /trunk/utils/autogen.sh
   M /trunk/utils/configure.ac

- synchronisation of all autogen.sh files
- quick fixes in configure.ac's (but they really need a cleanup also)


------------------------------------------------------------------------
r7491 | josef | 2005-08-21 16:00:44 +0200 (So, 21 Aug 2005) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/Makefile.am
   M /trunk/gnome-client/configure.ac
   A /trunk/gnome-client/man
   A /trunk/gnome-client/man/Makefile.am
   A /trunk/gnome-client/man/ggz-gnome.6
   A /trunk/gnome-client/man/motd_editor.6

- adding two manpages for ggz-gnome and motd_editor


------------------------------------------------------------------------
r7464 | josef | 2005-08-20 23:41:45 +0200 (Sa, 20 Aug 2005) | 4 lines
Geänderte Pfade:
   M /trunk/docs/configure.ac
   M /trunk/ggz-client-libs/configure.ac
   M /trunk/ggzd/configure.ac
   M /trunk/gnome-client/configure.ac
   M /trunk/grubby/configure.ac
   M /trunk/gtk-client/configure.ac
   M /trunk/gtk-games/Makefile.am
   M /trunk/gtk-games/configure.ac
   D /trunk/gtk-games/package.in
   M /trunk/kde-client/configure.ac
   M /trunk/kde-games/configure.ac
   M /trunk/libggz/configure.ac
   M /trunk/python/configure.ac
   M /trunk/sdl-games/configure.ac
   M /trunk/txt-client/configure.ac
   M /trunk/utils/configure.ac

- bump version to 0.0.12pre to not create *-0.0.11.tar.gz files
- remove the gtk-games override stuff


------------------------------------------------------------------------
r7449 | josef | 2005-08-20 12:23:51 +0200 (Sa, 20 Aug 2005) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/Makefile.am

- distribute README.GGZ


------------------------------------------------------------------------
r7395 | josef | 2005-08-13 19:46:45 +0200 (Sa, 13 Aug 2005) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/m4/ggz.m4

- build system synchronisation


------------------------------------------------------------------------
r7367 | josef | 2005-08-06 10:32:26 +0200 (Sa, 06 Aug 2005) | 4 lines
Geänderte Pfade:
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/gtk-games/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/txt-client/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

- global m4 file synchronisation (now that is fun with subversion)
- also a test for the changed commit script which crops at 20 kB diff size


------------------------------------------------------------------------
r7260 | josef | 2005-05-29 13:44:13 +0200 (So, 29 Mai 2005) | 7 lines
Geänderte Pfade:
   M /trunk/gnome-client/Makefile.am

- fix gnome-client distcheck issue

This was introduced by the switch to XDG. I think it's bad that although
automake includes all _SOURCES into the distribution, it omits the _DATA
files. For GGZ 0.0.11 we should switch to dist_foo_DATA to prevent these
problems. Still automake should make dist_*_DATA the default :/

------------------------------------------------------------------------
r7216 | josef | 2005-05-21 13:13:11 +0200 (Sa, 21 Mai 2005) | 2 lines
Geänderte Pfade:
   M /trunk/docs/AUTHORS
   M /trunk/docs/NEWS
   M /trunk/docs/QuickStart.GGZ
   M /trunk/docs/README.GGZ
   M /trunk/ggz/game_clients/AUTHORS
   M /trunk/ggz/game_clients/NEWS
   M /trunk/ggz/game_clients/QuickStart.GGZ
   M /trunk/ggz/game_clients/README
   M /trunk/ggz/game_clients/README.GGZ
   M /trunk/ggz-client-libs/AUTHORS
   M /trunk/ggz-client-libs/NEWS
   M /trunk/ggz-client-libs/QuickStart.GGZ
   M /trunk/ggz-client-libs/README
   M /trunk/ggz-client-libs/README.GGZ
   M /trunk/ggz-txt-client/AUTHORS
   M /trunk/ggz-txt-client/NEWS
   M /trunk/ggz-txt-client/QuickStart.GGZ
   M /trunk/ggz-txt-client/README.GGZ
   M /trunk/ggzd/AUTHORS
   M /trunk/ggzd/NEWS
   M /trunk/ggzd/README
   M /trunk/ggzd/README.GGZ
   M /trunk/gnome-client/AUTHORS
   M /trunk/gnome-client/NEWS
   M /trunk/gnome-client/QuickStart.GGZ
   M /trunk/gnome-client/README
   M /trunk/gnome-client/README.GGZ
   M /trunk/grubby/AUTHORS
   M /trunk/grubby/NEWS
   M /trunk/grubby/README
   M /trunk/grubby/README.GGZ
   M /trunk/gtk-client/AUTHORS
   M /trunk/gtk-client/NEWS
   M /trunk/gtk-client/QuickStart.GGZ
   M /trunk/gtk-client/README
   M /trunk/gtk-client/README.GGZ
   M /trunk/kde-client/AUTHORS
   M /trunk/kde-client/NEWS
   M /trunk/kde-client/QuickStart.GGZ
   M /trunk/kde-client/README
   M /trunk/kde-client/README.GGZ
   M /trunk/kde-games/AUTHORS
   M /trunk/kde-games/NEWS
   M /trunk/kde-games/QuickStart.GGZ
   M /trunk/kde-games/README
   M /trunk/kde-games/README.GGZ
   M /trunk/libggz/README
   M /trunk/python/AUTHORS
   M /trunk/python/NEWS
   M /trunk/python/QuickStart.GGZ
   M /trunk/python/README
   M /trunk/python/README.GGZ
   M /trunk/sdl-games/AUTHORS
   M /trunk/sdl-games/NEWS
   M /trunk/sdl-games/QuickStart.GGZ
   M /trunk/sdl-games/README
   M /trunk/sdl-games/README.GGZ
   M /trunk/utils/AUTHORS
   M /trunk/utils/NEWS
   M /trunk/utils/README
   M /trunk/utils/README.GGZ

- common files synchronisation and README update for 0.0.11

------------------------------------------------------------------------
r7214 | josef | 2005-05-21 12:46:02 +0200 (Sa, 21 Mai 2005) | 2 lines
Geänderte Pfade:
   M /trunk/docs/configure.ac
   M /trunk/ggz/game_clients/configure.ac
   M /trunk/ggz-client-libs/configure.ac
   M /trunk/ggz-txt-client/configure.ac
   M /trunk/ggzd/configure.ac
   M /trunk/gnome-client/configure.ac
   M /trunk/grubby/configure.ac
   M /trunk/gtk-client/configure.ac
   M /trunk/kde-client/configure.ac
   M /trunk/kde-games/configure.ac
   M /trunk/libggz/configure.ac
   M /trunk/python/configure.ac
   M /trunk/sdl-games/configure.ac
   M /trunk/utils/configure.ac

- LET version = 0.0.11

------------------------------------------------------------------------
r7182 | josef | 2005-05-06 23:19:56 +0200 (Fr, 06 Mai 2005) | 5 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/m4/ggz.m4
   M /trunk/ggz-txt-client/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

- synchronization of ggz.m4 files
- fixes typo: use ggzdconfdir instead of ggzconfdir
- fixes compiler problems: use -isystem X instead of -isystemX
- fixes ggzcore linkage force in ggzmod problem

------------------------------------------------------------------------
r7123 | josef | 2005-04-23 13:31:46 +0200 (Sa, 23 Apr 2005) | 4 lines
Geänderte Pfade:
   M /trunk/ggz/src/frontend/gtk/login.c
   M /trunk/ggz/src/frontend/kde/ggzcore++/src/GGZCoreServer.cpp
   M /trunk/ggz/src/frontend/text/server.c
   M /trunk/ggz/src/ggzcore/ggzcore.h
   M /trunk/ggz/src/ggzcore/net.h
   M /trunk/ggz/src/ggzcore/netxml.c
   M /trunk/ggz/src/ggzcore/server.c
   M /trunk/ggz/src/ggzcore/server.h
   M /trunk/ggzd/ggzd/login.c
   M /trunk/ggzd/ggzd/login.h
   M /trunk/ggzd/ggzd/net.c
   M /trunk/gnome-client/src/login.c
   M /trunk/grubby/grubby/src/net.c
   M /trunk/python/pyggzcore/src/pyggzcoresimple_init.c
   M /trunk/utils/cmd-client/main.c
   M /trunk/utils/telggz/net.c

- protocol enhancement:
 * allow users to give initial password when registering
 * allow users to give email address

------------------------------------------------------------------------
r7090 | josef | 2005-04-08 15:18:08 +0200 (Fr, 08 Apr 2005) | 2 lines
Geänderte Pfade:
   M /trunk/ggz/src/frontend/gtk/ggzclient.c
   M /trunk/gnome-client/src/ggzclient.c
   M /trunk/python/pyggzcore/src/pyggzcoresimple_init.c
   M /trunk/utils/telggz/net.c

- fix MOTD loading

------------------------------------------------------------------------
r6947 | josef | 2005-02-27 20:24:08 +0100 (So, 27 Feb 2005) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/Makefile.am
   A /trunk/gnome-client/motd-editor.desktop

- the MOTD editor should also show up in the menu

------------------------------------------------------------------------
r6945 | josef | 2005-02-27 20:06:16 +0100 (So, 27 Feb 2005) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/Makefile.am
   M /trunk/gnome-client/ggz-gnome.desktop

- switch to XDG menu entry

------------------------------------------------------------------------
r6918 | josef | 2005-02-04 16:59:43 +0100 (Fr, 04 Feb 2005) | 2 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/m4/ggz.m4
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggz-txt-client/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

- synchronize

------------------------------------------------------------------------
r6871 | jdorje | 2005-01-24 04:46:22 +0100 (Mo, 24 Jan 2005) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/Makefile.am
   A /trunk/gnome-client/indent.pro
   M /trunk/gnome-client/src/chat.c
   M /trunk/gnome-client/src/chat.h
   M /trunk/gnome-client/src/game.c
   M /trunk/gnome-client/src/ggzclient.c

Make hook functions take const pointers.

------------------------------------------------------------------------
r6866 | jdorje | 2005-01-24 02:39:48 +0100 (Mo, 24 Jan 2005) | 7 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/m4/ggz.m4
   M /trunk/ggz/src/ggzcore/game.c
   A /trunk/ggz/src/ggzcore/ggzcore-ggz.h
   M /trunk/ggz/src/ggzcore/ggzcore.h
   M /trunk/ggz/src/ggzcore/server.c
   M /trunk/ggz-client-libs/ggzmod/Makefile.am
   M /trunk/ggz-client-libs/ggzmod/ggzmod-ggz.h
   M /trunk/ggz-client-libs/ggzmod/ggzmod.c
   M /trunk/ggz-client-libs/ggzmod/io.c
   M /trunk/ggz-client-libs/ggzmod/io.h
   M /trunk/ggz-client-libs/ggzmod/mod.h
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggz-txt-client/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

Change the way channels are created at the client side.  The GGZ client
does not create the channel.  Instead the channel connection data is sent
to the game which makes the connection itself.  This means ggzmod needs
to call the channel-creation function from within ggzcore, adding a new
library dependency.  This is solved by linking ggzcore in along with
ggzmod inside AC_GGZ_GGZMOD.

------------------------------------------------------------------------
r6856 | josef | 2005-01-23 22:23:07 +0100 (So, 23 Jan 2005) | 2 lines
Geänderte Pfade:
   M /trunk/docs/AUTHORS
   M /trunk/docs/ChangeLog
   M /trunk/ggz/game_clients/AUTHORS
   M /trunk/ggz/game_clients/ChangeLog
   M /trunk/ggz-client-libs/AUTHORS
   M /trunk/ggz-client-libs/ChangeLog
   M /trunk/ggz-txt-client/AUTHORS
   M /trunk/ggz-txt-client/ChangeLog
   M /trunk/ggzd/AUTHORS
   M /trunk/ggzd/ChangeLog
   M /trunk/gnome-client/AUTHORS
   M /trunk/gnome-client/ChangeLog
   M /trunk/grubby/AUTHORS
   M /trunk/grubby/ChangeLog
   M /trunk/gtk-client/AUTHORS
   M /trunk/gtk-client/ChangeLog
   M /trunk/kde-client/AUTHORS
   M /trunk/kde-client/ChangeLog
   M /trunk/kde-games/AUTHORS
   M /trunk/kde-games/ChangeLog
   M /trunk/libggz/AUTHORS
   M /trunk/libggz/ChangeLog
   M /trunk/python/AUTHORS
   M /trunk/python/ChangeLog
   M /trunk/sdl-games/AUTHORS
   M /trunk/sdl-games/ChangeLog
   M /trunk/utils/AUTHORS
   M /trunk/utils/ChangeLog

- authors and changelog

------------------------------------------------------------------------
r6844 | josef | 2005-01-23 14:20:29 +0100 (So, 23 Jan 2005) | 2 lines
Geänderte Pfade:
   M /trunk/docs/NEWS
   M /trunk/ggz/game_clients/NEWS
   M /trunk/ggz-client-libs/NEWS
   M /trunk/ggz-txt-client/NEWS
   M /trunk/ggzd/NEWS
   M /trunk/gnome-client/NEWS
   M /trunk/grubby/NEWS
   M /trunk/gtk-client/NEWS
   M /trunk/kde-client/NEWS
   M /trunk/kde-games/NEWS
   M /trunk/libggz/NEWS
   M /trunk/python/NEWS
   M /trunk/sdl-games/NEWS
   M /trunk/utils/NEWS

- news update

------------------------------------------------------------------------
r6843 | josef | 2005-01-23 14:12:48 +0100 (So, 23 Jan 2005) | 2 lines
Geänderte Pfade:
   A /trunk/community/NEWS
   M /trunk/docs/QuickStart.GGZ
   M /trunk/docs/README.GGZ
   M /trunk/ggz/game_clients/QuickStart.GGZ
   M /trunk/ggz/game_clients/README
   M /trunk/ggz/game_clients/README.GGZ
   M /trunk/ggz-client-libs/QuickStart.GGZ
   M /trunk/ggz-client-libs/README
   M /trunk/ggz-client-libs/README.GGZ
   M /trunk/ggz-txt-client/QuickStart.GGZ
   M /trunk/ggz-txt-client/README.GGZ
   M /trunk/ggzd/README.GGZ
   M /trunk/gnome-client/QuickStart.GGZ
   M /trunk/gnome-client/README
   M /trunk/gnome-client/README.GGZ
   M /trunk/grubby/README
   M /trunk/grubby/README.GGZ
   M /trunk/gtk-client/QuickStart.GGZ
   M /trunk/gtk-client/README
   M /trunk/gtk-client/README.GGZ
   M /trunk/kde-client/QuickStart.GGZ
   M /trunk/kde-client/README
   M /trunk/kde-client/README.GGZ
   M /trunk/kde-games/QuickStart.GGZ
   M /trunk/kde-games/README
   M /trunk/kde-games/README.GGZ
   M /trunk/libggz/QuickStart.GGZ
   M /trunk/libggz/README.GGZ
   M /trunk/python/QuickStart.GGZ
   M /trunk/python/README
   M /trunk/python/README.GGZ
   M /trunk/sdl-games/QuickStart.GGZ
   M /trunk/sdl-games/README
   M /trunk/sdl-games/README.GGZ
   M /trunk/utils/README
   M /trunk/utils/README.GGZ

- updated common files

------------------------------------------------------------------------
r6824 | jdorje | 2005-01-22 20:22:53 +0100 (Sa, 22 Jan 2005) | 2 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/m4/ggz.m4
   M /trunk/ggz-txt-client/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

Search for .la files instead of .so.

------------------------------------------------------------------------
r6812 | josef | 2005-01-22 16:28:57 +0100 (Sa, 22 Jan 2005) | 2 lines
Geänderte Pfade:
   M /trunk/docs/configure.ac
   M /trunk/docs/games/game-development/ggz-game-development-guide.texi
   M /trunk/docs/ggz-project/GGZ-contributions
   M /trunk/ggz/game_clients/configure.ac
   M /trunk/ggz-client-libs/configure.ac
   M /trunk/ggz-txt-client/configure.ac
   M /trunk/ggzd/configure.ac
   M /trunk/gnome-client/configure.ac
   M /trunk/grubby/configure.ac
   M /trunk/gtk-client/configure.ac
   M /trunk/kde-client/configure.ac
   M /trunk/kde-games/configure.ac
   M /trunk/libggz/configure.ac
   M /trunk/sdl-games/configure.ac
   M /trunk/utils/configure.ac

- version number bump

------------------------------------------------------------------------
r6767 | josef | 2005-01-20 18:17:17 +0100 (Do, 20 Jan 2005) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/po
   M /trunk/gnome-client/po/.cvsignore

- bleh, typo

------------------------------------------------------------------------
r6764 | josef | 2005-01-20 18:13:33 +0100 (Do, 20 Jan 2005) | 4 lines
Geänderte Pfade:
   A /trunk/gnome-client/src/.deps
   A /trunk/gnome-client/src/.deps/.cvsignore

- shut it up!

(had to be readded because files in CVS cannot be handled in .cvsignore)

------------------------------------------------------------------------
r6763 | josef | 2005-01-20 18:12:08 +0100 (Do, 20 Jan 2005) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/po
   M /trunk/gnome-client/po/.cvsignore

- shut it up

------------------------------------------------------------------------
r6682 | josef | 2005-01-15 00:36:02 +0100 (Sa, 15 Jan 2005) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/ggzclient.c

- gcc 3.4 related: remove duplicate function prototype

------------------------------------------------------------------------
r6675 | jdorje | 2005-01-14 08:01:43 +0100 (Fr, 14 Jan 2005) | 3 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/m4/ggz.m4
   M /trunk/ggz-client-libs/Makefile.am
   M /trunk/ggz-client-libs/m4/ggz.m4
   A /trunk/ggz-client-libs/m4/iconv.m4
   M /trunk/ggz-txt-client/Makefile.am
   M /trunk/ggz-txt-client/m4/ggz.m4
   A /trunk/ggz-txt-client/m4/iconv.m4
   M /trunk/ggzd/Makefile.am
   M /trunk/ggzd/m4/ggz.m4
   A /trunk/ggzd/m4/iconv.m4
   M /trunk/gnome-client/Makefile.am
   M /trunk/gnome-client/m4/ggz.m4
   A /trunk/gnome-client/m4/iconv.m4
   M /trunk/grubby/Makefile.am
   M /trunk/grubby/m4/ggz.m4
   A /trunk/grubby/m4/iconv.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/kde-client/Makefile.am
   M /trunk/kde-client/m4/ggz.m4
   A /trunk/kde-client/m4/iconv.m4
   M /trunk/kde-games/Makefile.am
   M /trunk/kde-games/m4/ggz.m4
   A /trunk/kde-games/m4/iconv.m4
   M /trunk/libggz/Makefile.am
   M /trunk/libggz/m4/ggz.m4
   A /trunk/libggz/m4/iconv.m4
   M /trunk/sdl-games/Makefile.am
   M /trunk/sdl-games/m4/ggz.m4
   A /trunk/sdl-games/m4/iconv.m4
   M /trunk/utils/Makefile.am
   M /trunk/utils/m4/ggz.m4
   A /trunk/utils/m4/iconv.m4

Add support for libintl and libiconv to AC_GGZ_INTL.  This is needed to
compile at all on non-glibc systems.

------------------------------------------------------------------------
r6643 | jdorje | 2005-01-13 03:23:59 +0100 (Do, 13 Jan 2005) | 2 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/m4/ggz.m4
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggz-txt-client/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

Fix a typo in checking for libintl.h and locale.h.

------------------------------------------------------------------------
r6641 | jdorje | 2005-01-13 02:45:15 +0100 (Do, 13 Jan 2005) | 3 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/m4/ggz.m4
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggz-txt-client/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

Define ENABLE_NLS if NLS is present.  This is standard, even though it's
not helpful for most packages since NLS is manditory.

------------------------------------------------------------------------
r6638 | jdorje | 2005-01-11 18:36:35 +0100 (Di, 11 Jan 2005) | 3 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/m4/ggz.m4
   M /trunk/ggz-txt-client/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

Make AC_GGZ_INTL fail if the gettext functions are not available.  It also
checks for the header files but doesn't fail if they're not present.

------------------------------------------------------------------------
r6636 | jdorje | 2005-01-11 04:14:32 +0100 (Di, 11 Jan 2005) | 2 lines
Geänderte Pfade:
   M /trunk/ggz/src/frontend/kde/ggzcore++/src/Makefile.am
   M /trunk/ggz/src/frontend/kde/src/Makefile.am
   M /trunk/ggz/src/frontend/kde/src/abstract/Makefile.am
   M /trunk/ggz/src/frontend/kde/src/widgets/Makefile.am
   M /trunk/ggz/src/frontend/kde/src/widgets/more/Makefile.am
   M /trunk/ggz/src/frontend/text/Makefile.am
   M /trunk/ggz-client-libs/ggz-wrapper/Makefile.am
   M /trunk/ggz-txt-client/tttxt/Makefile.am
   M /trunk/gnome-client/src/Makefile.am
   M /trunk/grubby/games/guru-chess/Makefile.am
   M /trunk/grubby/games/guru-ttt/Makefile.am
   M /trunk/grubby/games/lib/Makefile.am
   M /trunk/grubby/grubby/modules/Makefile.am
   M /trunk/grubby/grubby/src/Makefile.am
   M /trunk/gtk-client/gaim-plugin/Makefile.am
   M /trunk/kde-client/compcal/src/Makefile.am
   M /trunk/kde-client/compcal/src/lib/Makefile.am
   M /trunk/kde-client/ggzap/Makefile.am
   M /trunk/kde-client/kcm_ggz/Makefile.am
   M /trunk/kde-client/kcm_ggz/modules/Makefile.am
   M /trunk/kde-client/keepalivecontrol/src/Makefile.am
   M /trunk/kde-client/kio_ggz/Makefile.am
   M /trunk/kde-client/kio_ggzmeta/Makefile.am
   M /trunk/kde-client/modsniff/Makefile.am
   M /trunk/kde-client/shadowbridge/Makefile.am
   M /trunk/kde-games/KReversi/Makefile.am
   M /trunk/kde-games/fyrdman/Makefile.am
   M /trunk/kde-games/kcc/Makefile.am
   M /trunk/kde-games/kdots/Dot/Makefile.am
   M /trunk/kde-games/kdots/Makefile.am
   M /trunk/kde-games/keepalive/src/Makefile.am
   M /trunk/kde-games/koenig/Makefile.am
   M /trunk/kde-games/krosswater/Makefile.am
   M /trunk/kde-games/krosswater/zoneclient/Makefile.am
   M /trunk/kde-games/ktictactux/Makefile.am
   M /trunk/kde-games/lib/Makefile.am
   M /trunk/kde-games/muehle/src/Makefile.am
   M /trunk/kde-games/muehle/src/ggzwrap/Makefile.am
   M /trunk/sdl-games/geekgame/Makefile.am
   M /trunk/sdl-games/ttt3d/Makefile.am

Replace deprated INCLUDES directive with AM_CPPFLAGS.

------------------------------------------------------------------------
r6561 | josef | 2004-12-23 21:55:09 +0100 (Do, 23 Dez 2004) | 2 lines
Geänderte Pfade:
   A /trunk/gnome-client/m4/i18n.mk

- new i18n infrastructure for the gnome client

------------------------------------------------------------------------
r6560 | josef | 2004-12-23 21:54:34 +0100 (Do, 23 Dez 2004) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/po/Makefile.am

- use new i18n infrastructure

------------------------------------------------------------------------
r6153 | josef | 2004-07-18 02:37:08 +0200 (So, 18 Jul 2004) | 2 lines
Geänderte Pfade:
   M /trunk/docs/ChangeLog
   M /trunk/ggz/game_clients/ChangeLog
   M /trunk/ggz-client-libs/ChangeLog
   M /trunk/ggz-txt-client/ChangeLog
   M /trunk/ggzd/ChangeLog
   M /trunk/gnome-client/ChangeLog
   M /trunk/grubby/ChangeLog
   M /trunk/gtk-client/ChangeLog
   M /trunk/kde-client/ChangeLog
   M /trunk/kde-games/ChangeLog
   M /trunk/libggz/ChangeLog
   M /trunk/python/ChangeLog
   M /trunk/sdl-games/ChangeLog
   M /trunk/utils/ChangeLog

- changelog update

------------------------------------------------------------------------
r6117 | josef | 2004-07-16 21:08:39 +0200 (Fr, 16 Jul 2004) | 2 lines
Geänderte Pfade:
   M /trunk/docs/AUTHORS
   M /trunk/docs/NEWS
   M /trunk/docs/QuickStart.GGZ
   M /trunk/docs/README.GGZ
   M /trunk/docs/configure.ac
   M /trunk/ggz/game_clients/AUTHORS
   M /trunk/ggz/game_clients/NEWS
   M /trunk/ggz/game_clients/QuickStart.GGZ
   M /trunk/ggz/game_clients/README
   M /trunk/ggz/game_clients/README.GGZ
   M /trunk/ggz/game_clients/configure.ac
   M /trunk/ggz-client-libs/AUTHORS
   M /trunk/ggz-client-libs/NEWS
   M /trunk/ggz-client-libs/QuickStart.GGZ
   M /trunk/ggz-client-libs/README
   M /trunk/ggz-client-libs/README.GGZ
   M /trunk/ggz-client-libs/configure.ac
   M /trunk/ggz-txt-client/AUTHORS
   M /trunk/ggz-txt-client/NEWS
   M /trunk/ggz-txt-client/QuickStart.GGZ
   M /trunk/ggz-txt-client/README.GGZ
   M /trunk/ggz-txt-client/configure.ac
   M /trunk/ggzd/AUTHORS
   M /trunk/ggzd/NEWS
   M /trunk/ggzd/README.GGZ
   M /trunk/ggzd/configure.ac
   M /trunk/gnome-client/AUTHORS
   M /trunk/gnome-client/NEWS
   M /trunk/gnome-client/QuickStart.GGZ
   M /trunk/gnome-client/README
   M /trunk/gnome-client/README.GGZ
   M /trunk/gnome-client/configure.ac
   M /trunk/grubby/AUTHORS
   M /trunk/grubby/NEWS
   M /trunk/grubby/README
   M /trunk/grubby/README.GGZ
   M /trunk/grubby/configure.ac
   M /trunk/gtk-client/AUTHORS
   M /trunk/gtk-client/NEWS
   M /trunk/gtk-client/QuickStart.GGZ
   M /trunk/gtk-client/README
   M /trunk/gtk-client/README.GGZ
   M /trunk/gtk-client/configure.ac
   M /trunk/kde-client/AUTHORS
   M /trunk/kde-client/NEWS
   M /trunk/kde-client/QuickStart.GGZ
   M /trunk/kde-client/README
   M /trunk/kde-client/README.GGZ
   M /trunk/kde-client/configure.ac
   M /trunk/kde-games/AUTHORS
   M /trunk/kde-games/NEWS
   M /trunk/kde-games/QuickStart.GGZ
   M /trunk/kde-games/README
   M /trunk/kde-games/README.GGZ
   M /trunk/kde-games/configure.ac
   M /trunk/libggz/AUTHORS
   M /trunk/libggz/NEWS
   M /trunk/libggz/QuickStart.GGZ
   M /trunk/libggz/README.GGZ
   M /trunk/libggz/configure.ac
   M /trunk/sdl-games/AUTHORS
   M /trunk/sdl-games/NEWS
   M /trunk/sdl-games/QuickStart.GGZ
   M /trunk/sdl-games/README
   M /trunk/sdl-games/README.GGZ
   M /trunk/sdl-games/configure.ac
   M /trunk/utils/AUTHORS
   M /trunk/utils/NEWS
   M /trunk/utils/README
   M /trunk/utils/README.GGZ
   M /trunk/utils/configure.ac

- 0.0.9 updates propagation

------------------------------------------------------------------------
r5956 | jdorje | 2004-02-21 09:51:32 +0100 (Sa, 21 Feb 2004) | 7 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/m4/ggz.m4
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggz-txt-client/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/libggz/Makefile.am
   A /trunk/libggz/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

- Copy ggz.m4 into libggz.
- Declare the libggz copy to be the master copy.
- Use AC_HELP_STRING inside AC_ARG_WITH.
- Replace the history section (which was getting really big) with a
  reference to CVS.
- Propogate the changes back into all modules.

------------------------------------------------------------------------
r5863 | jdorje | 2004-02-09 09:28:20 +0100 (Mo, 09 Feb 2004) | 9 lines
Geänderte Pfade:
   M /trunk/ggz/src/frontend/gtk/game.c
   M /trunk/ggz/src/ggzcore/game.c
   M /trunk/ggz/src/ggzcore/ggzcore.h
   M /trunk/ggz/src/ggzcore/room.c
   M /trunk/gnome-client/src/game.c

Cleanups and fixes for leaving a game.
  - GGZ_GAME_OVER, GGZ_GAME_IO_ERROR, and GGZ_GAME_PROTO_ERROR GGZCore game
    events are removed.  The first is quite worthless and the latter two
    are unused.  GGZCore now handles these events internally.
  - When the game client exits, ggzcore frees the game structure.  Later
    if a table join succeeds and there's no game structure present, we
    know we don't actually have a game running so we tell ggzd we've left
    the table.

------------------------------------------------------------------------
r5833 | jdorje | 2004-02-07 22:46:43 +0100 (Sa, 07 Feb 2004) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/motd-editor/callbacks.c

Fix a harmless compiler warning.

------------------------------------------------------------------------
r5814 | josef | 2004-02-07 10:09:49 +0100 (Sa, 07 Feb 2004) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/Makefile.am
   M /trunk/gnome-client/configure.ac
   M /trunk/gnome-client/src/Makefile.am

- link against ggzmod
- don't distribute mkinstalldirs because it's not available anymore

------------------------------------------------------------------------
r5790 | josef | 2004-02-05 11:46:53 +0100 (Do, 05 Feb 2004) | 7 lines
Geänderte Pfade:
   M /trunk/docs/ChangeLog
   M /trunk/ggz/game_clients/ChangeLog
   M /trunk/ggz/game_clients/NEWS
   M /trunk/ggz/game_clients/QuickStart.GGZ
   M /trunk/ggz/game_clients/README
   M /trunk/ggz/game_clients/README.GGZ
   M /trunk/ggz/game_clients/configure.ac
   M /trunk/ggz/src/frontend/kde/po/es.po
   M /trunk/ggz/src/frontend/kde/po/fr.po
   M /trunk/ggz/src/frontend/kde/po/pt_BR.po
   M /trunk/ggz/src/ggzcore/ggz-config.c
   M /trunk/ggz-client-libs/ChangeLog
   M /trunk/ggz-client-libs/NEWS
   M /trunk/ggz-client-libs/QuickStart.GGZ
   M /trunk/ggz-client-libs/README
   M /trunk/ggz-client-libs/README.GGZ
   M /trunk/ggz-client-libs/configure.ac
   M /trunk/ggz-txt-client/ChangeLog
   M /trunk/ggz-txt-client/NEWS
   M /trunk/ggz-txt-client/QuickStart.GGZ
   M /trunk/ggz-txt-client/README
   M /trunk/ggz-txt-client/README.GGZ
   M /trunk/ggz-txt-client/configure.ac
   M /trunk/ggzd/ChangeLog
   M /trunk/ggzd/NEWS
   M /trunk/ggzd/README
   M /trunk/ggzd/README.GGZ
   M /trunk/ggzd/configure.ac
   M /trunk/gnome-client/ChangeLog
   M /trunk/gnome-client/NEWS
   M /trunk/gnome-client/QuickStart.GGZ
   M /trunk/gnome-client/README
   M /trunk/gnome-client/README.GGZ
   M /trunk/gnome-client/configure.ac
   M /trunk/grubby/ChangeLog
   M /trunk/grubby/NEWS
   M /trunk/grubby/README
   M /trunk/grubby/README.GGZ
   M /trunk/grubby/configure.ac
   M /trunk/gtk-client/ChangeLog
   M /trunk/gtk-client/NEWS
   M /trunk/gtk-client/QuickStart.GGZ
   M /trunk/gtk-client/README
   M /trunk/gtk-client/README.GGZ
   M /trunk/gtk-client/configure.ac
   M /trunk/kde-client/ChangeLog
   M /trunk/kde-client/NEWS
   M /trunk/kde-client/QuickStart.GGZ
   M /trunk/kde-client/README
   M /trunk/kde-client/README.GGZ
   M /trunk/kde-client/configure.ac
   M /trunk/kde-games/ChangeLog
   M /trunk/kde-games/NEWS
   M /trunk/kde-games/QuickStart.GGZ
   M /trunk/kde-games/README
   M /trunk/kde-games/README.GGZ
   M /trunk/kde-games/configure.ac
   M /trunk/libggz/ChangeLog
   M /trunk/libggz/NEWS
   M /trunk/libggz/QuickStart.GGZ
   M /trunk/libggz/README
   M /trunk/libggz/README.GGZ
   M /trunk/libggz/configure.ac
   A /trunk/python/ChangeLog
   A /trunk/python/NEWS
   M /trunk/python/README
   A /trunk/python/README.GGZ
   M /trunk/python/configure.ac
   M /trunk/sdl-games/ChangeLog
   M /trunk/sdl-games/NEWS
   M /trunk/sdl-games/QuickStart.GGZ
   M /trunk/sdl-games/README
   M /trunk/sdl-games/README.GGZ
   M /trunk/sdl-games/configure.ac
   M /trunk/utils/ChangeLog
   M /trunk/utils/NEWS
   M /trunk/utils/README
   M /trunk/utils/README.GGZ
   M /trunk/utils/configure.ac

- synchronized NEWS, README.GGZ and QuickStart.GGZ from docs
- updated README
  * new URLs for developers, bugs, website
  * no more per-package maintainer mention (it was never valid anyway)
- updated configure.ac to indicate final version 0.0.8
- ChangeLog updates

------------------------------------------------------------------------
r5770 | josef | 2004-01-31 11:54:44 +0100 (Sa, 31 Jan 2004) | 2 lines
Geänderte Pfade:
   M /trunk/docs/autogen.sh
   M /trunk/ggz/game_clients/autogen.sh
   M /trunk/ggz/game_clients/m4/ggz.m4
   M /trunk/ggz-client-libs/autogen.sh
   M /trunk/ggz-txt-client/autogen.sh
   M /trunk/ggzd/autogen.sh
   M /trunk/gnome-client/autogen.sh
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/autogen.sh
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/autogen.sh
   M /trunk/kde-client/autogen.sh
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/autogen.sh
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/sdl-games/autogen.sh
   M /trunk/utils/autogen.sh
   M /trunk/utils/m4/ggz.m4

- sync common files

------------------------------------------------------------------------
r5740 | dr_maux | 2004-01-17 19:46:28 +0100 (Sa, 17 Jan 2004) | 2 lines
Geänderte Pfade:
   M /trunk/docs/autogen.sh
   M /trunk/ggz/game_clients/autogen.sh
   M /trunk/ggz-client-libs/autogen.sh
   M /trunk/ggz-txt-client/autogen.sh
   M /trunk/ggzd/autogen.sh
   M /trunk/gnome-client/autogen.sh
   M /trunk/grubby/autogen.sh
   M /trunk/kde-client/autogen.sh
   M /trunk/kde-games/autogen.sh
   M /trunk/libggz/autogen.sh
   M /trunk/sdl-games/autogen.sh
   M /trunk/utils/autogen.sh

- sync

------------------------------------------------------------------------
r5731 | dr_maux | 2003-12-31 18:35:48 +0100 (Mi, 31 Dez 2003) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/configure.ac
   M /trunk/kde-client/configure.ac
   M /trunk/kde-games/configure.ac

- use new-style AC_INIT

------------------------------------------------------------------------
r5649 | dr_maux | 2003-09-20 15:38:27 +0200 (Sa, 20 Sep 2003) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/src
   M /trunk/gnome-client/src/.cvsignore

- remove duplicated .deps

------------------------------------------------------------------------
r5637 | dr_maux | 2003-08-28 00:19:29 +0200 (Do, 28 Aug 2003) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/po/de.po
   M /trunk/gnome-client/po/ggz-gnome-client.pot
   M /trunk/gnome-client/src/interface.c
   M /trunk/gnome-client/src/msgboxi.c

- more strings marked for translation
- brought German translation up-to-date

------------------------------------------------------------------------
r5613 | dr_maux | 2003-06-26 11:23:13 +0200 (Do, 26 Jun 2003) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/Makefile.am
   M /trunk/gnome-client/configure.ac

- include MOTD editor in gnome-client build

------------------------------------------------------------------------
r5612 | dr_maux | 2003-06-26 11:22:52 +0200 (Do, 26 Jun 2003) | 2 lines
Geänderte Pfade:
   A /trunk/gnome-client/motd-editor
   A /trunk/gnome-client/motd-editor/.cvsignore
   A /trunk/gnome-client/motd-editor/Makefile.am
   A /trunk/gnome-client/motd-editor/callbacks.c
   A /trunk/gnome-client/motd-editor/callbacks.h
   A /trunk/gnome-client/motd-editor/interface.c
   A /trunk/gnome-client/motd-editor/interface.h
   A /trunk/gnome-client/motd-editor/main.c
   A /trunk/gnome-client/motd-editor/motd-editor.glade

- MOTD editor, (roughly) ported to GNOME 2.x

------------------------------------------------------------------------
r5594 | dr_maux | 2003-05-17 12:47:49 +0200 (Sa, 17 Mai 2003) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/po/Makefile.am

- add uninstall-local stuff so make distcheck works

------------------------------------------------------------------------
r5588 | dr_maux | 2003-05-17 10:10:42 +0200 (Sa, 17 Mai 2003) | 2 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/ChangeLog
   M /trunk/ggz-client-libs/ChangeLog
   M /trunk/ggz-txt-client/ChangeLog
   M /trunk/ggzd/ChangeLog
   M /trunk/gnome-client/ChangeLog
   M /trunk/grubby/ChangeLog
   M /trunk/gtk-client/ChangeLog
   M /trunk/kde-client/ChangeLog
   M /trunk/kde-games/ChangeLog
   M /trunk/libggz/ChangeLog
   M /trunk/sdl-games/ChangeLog
   M /trunk/utils/ChangeLog

- update changelog

------------------------------------------------------------------------
r5583 | dr_maux | 2003-05-16 20:34:45 +0200 (Fr, 16 Mai 2003) | 2 lines
Geänderte Pfade:
   M /trunk/docs/autogen.sh
   M /trunk/ggz/game_clients/autogen.sh
   M /trunk/ggz-client-libs/autogen.sh
   M /trunk/ggz-txt-client/autogen.sh
   M /trunk/ggzd/autogen.sh
   M /trunk/gnome-client/autogen.sh
   M /trunk/grubby/autogen.sh
   M /trunk/gtk-client/autogen.sh
   M /trunk/kde-client/autogen.sh
   M /trunk/kde-games/autogen.sh
   M /trunk/sdl-games/autogen.sh
   M /trunk/utils/autogen.sh

- apply autogen.sh changes from libggz

------------------------------------------------------------------------
r5578 | dr_maux | 2003-05-11 17:36:46 +0200 (So, 11 Mai 2003) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/po/Makefile.am

- fix translation installation, so we can use srcdir != builddir

------------------------------------------------------------------------
r5563 | dr_maux | 2003-05-11 01:54:28 +0200 (So, 11 Mai 2003) | 2 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/configure.ac
   M /trunk/ggz-client-libs/configure.ac
   M /trunk/ggz-txt-client/configure.ac
   M /trunk/ggzd/configure.ac
   M /trunk/gnome-client/configure.ac
   M /trunk/grubby/configure.ac
   M /trunk/gtk-client/configure.ac
   M /trunk/kde-client/configure.ac
   M /trunk/kde-games/configure.ac
   M /trunk/libggz/configure.ac
   M /trunk/sdl-games/configure.ac
   M /trunk/utils/configure.ac

- set the package version number (via configure.ac) to 0.0.7

------------------------------------------------------------------------
r5559 | dr_maux | 2003-05-11 01:41:13 +0200 (So, 11 Mai 2003) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/README

- add a README file for the GNOME client

------------------------------------------------------------------------
r5551 | dr_maux | 2003-05-11 01:17:50 +0200 (So, 11 Mai 2003) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/NEWS
   A /trunk/gnome-client/QuickStart.GGZ
   A /trunk/gnome-client/README.GGZ
   M /trunk/gnome-client/autogen.sh

- update common files for 0.0.7 in gnome-client

------------------------------------------------------------------------
r5539 | dr_maux | 2003-05-10 16:38:57 +0200 (Sa, 10 Mai 2003) | 2 lines
Geänderte Pfade:
   M /trunk/docs/autogen.sh
   M /trunk/ggz/game_clients/autogen.sh
   M /trunk/ggz-client-libs/autogen.sh
   M /trunk/ggz-txt-client/autogen.sh
   M /trunk/ggzd/autogen.sh
   M /trunk/gnome-client/autogen.sh
   M /trunk/grubby/autogen.sh
   M /trunk/gtk-client/autogen.sh
   M /trunk/kde-client/autogen.sh
   M /trunk/kde-games/autogen.sh
   M /trunk/sdl-games/autogen.sh
   M /trunk/utils/autogen.sh

- sync autogen.sh

------------------------------------------------------------------------
r5503 | dr_maux | 2003-05-05 16:41:07 +0200 (Mo, 05 Mai 2003) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/po/de.po
   M /trunk/gnome-client/po/ggz-gnome-client.pot

- some more translated words

------------------------------------------------------------------------
r5502 | dr_maux | 2003-05-05 16:40:48 +0200 (Mo, 05 Mai 2003) | 8 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/msgboxi.c

- if an error message is not found, display the raw message instead of an empty
  box.

The tricky part here is that the strings should better not be used for
comparison at all because they might contain locale-specific reasons (like:
host not found: <reason>).
But for now this workaround should do it.

------------------------------------------------------------------------
r5500 | dr_maux | 2003-05-05 15:03:41 +0200 (Mo, 05 Mai 2003) | 2 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/m4/ggz.m4
   M /trunk/ggz-txt-client/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

- add -fsigned-char

------------------------------------------------------------------------
r5476 | dr_maux | 2003-03-29 11:33:32 +0100 (Sa, 29 Mär 2003) | 2 lines
Geänderte Pfade:
   M /trunk/docs/autogen.sh
   M /trunk/ggz/game_clients/autogen.sh
   M /trunk/ggz-client-libs/autogen.sh
   M /trunk/ggz-txt-client/autogen.sh
   M /trunk/ggzd/autogen.sh
   M /trunk/gnome-client/autogen.sh
   M /trunk/grubby/autogen.sh
   M /trunk/gtk-client/autogen.sh
   M /trunk/kde-client/autogen.sh
   M /trunk/kde-games/autogen.sh
   M /trunk/sdl-games/autogen.sh
   M /trunk/utils/autogen.sh

- apply improverished autogen globally

------------------------------------------------------------------------
r5475 | dr_maux | 2003-03-29 11:27:44 +0100 (Sa, 29 Mär 2003) | 2 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/m4/ggz.m4
   M /trunk/ggz-client-libs/m4/ggz.m4
   M /trunk/ggz-txt-client/m4/ggz.m4
   M /trunk/ggzd/m4/ggz.m4
   M /trunk/gnome-client/m4/ggz.m4
   M /trunk/grubby/m4/ggz.m4
   M /trunk/gtk-client/m4/ggz.m4
   M /trunk/kde-client/m4/ggz.m4
   M /trunk/kde-games/m4/ggz.m4
   M /trunk/sdl-games/m4/ggz.m4
   M /trunk/utils/m4/ggz.m4

- update GGZ macro file

------------------------------------------------------------------------
r5466 | dr_maux | 2003-02-28 19:41:46 +0100 (Fr, 28 Feb 2003) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/configure.ac

- use GGZ_CONFIG test rather than handwritten invocation of probably wrong version of ggz-config

------------------------------------------------------------------------
r5413 | dr_maux | 2003-02-16 14:02:09 +0100 (So, 16 Feb 2003) | 2 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/autogen.sh
   M /trunk/ggz-client-libs/autogen.sh
   M /trunk/ggz-txt-client/autogen.sh
   M /trunk/ggzd/autogen.sh
   M /trunk/gnome-client/autogen.sh
   M /trunk/grubby/autogen.sh
   M /trunk/gtk-client/autogen.sh
   M /trunk/kde-client/autogen.sh
   M /trunk/kde-games/autogen.sh
   M /trunk/libggz/autogen.sh
   M /trunk/sdl-games/autogen.sh
   M /trunk/utils/autogen.sh

- new autogen.sh

------------------------------------------------------------------------
r5411 | dr_maux | 2003-02-16 13:37:04 +0100 (So, 16 Feb 2003) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/AUTHORS

- add authors file

------------------------------------------------------------------------
r5394 | dr_maux | 2003-02-04 21:18:52 +0100 (Di, 04 Feb 2003) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/Makefile.am
   M /trunk/gnome-client/configure.ac
   A /trunk/gnome-client/po
   A /trunk/gnome-client/po/.cvsignore
   A /trunk/gnome-client/po/Makefile.am
   A /trunk/gnome-client/po/de.po
   A /trunk/gnome-client/po/ggz-gnome-client.pot

- add i18n support to gnome-client

------------------------------------------------------------------------
r5387 | jdorje | 2003-02-04 18:38:06 +0100 (Di, 04 Feb 2003) | 2 lines
Geänderte Pfade:
   D /trunk/gnome-client/acconfig.h
   M /trunk/gnome-client/configure.ac

Various updates for autoconf2.5x usage.

------------------------------------------------------------------------
r5386 | jdorje | 2003-02-04 18:29:05 +0100 (Di, 04 Feb 2003) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/login.c

Disable TLS in the call to ggzcore_server_set_hostinfo.

------------------------------------------------------------------------
r5362 | jdorje | 2003-02-04 03:10:50 +0100 (Di, 04 Feb 2003) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src
   M /trunk/gnome-client/src/.cvsignore
   D /trunk/gnome-client/src/.deps

- Remove all files from .deps.
- Add .deps to .cvsignore.

------------------------------------------------------------------------
r5358 | jdorje | 2003-02-04 02:55:26 +0100 (Di, 04 Feb 2003) | 2 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/autogen.sh
   A /trunk/ggz/game_clients/configure.ac
   D /trunk/ggz/game_clients/configure.in
   M /trunk/ggz-client-libs/autogen.sh
   A /trunk/ggz-client-libs/configure.ac
   D /trunk/ggz-client-libs/configure.in
   M /trunk/ggzd/autogen.sh
   A /trunk/ggzd/configure.ac
   D /trunk/ggzd/configure.in
   M /trunk/gnome-client/autogen.sh
   A /trunk/gnome-client/configure.ac
   D /trunk/gnome-client/configure.in
   M /trunk/gtk-client/autogen.sh
   A /trunk/gtk-client/configure.ac
   D /trunk/gtk-client/configure.in

Step 1 of autoconf2.5x-only support: rename configure.in as configure.ac.

------------------------------------------------------------------------
r5296 | jdorje | 2002-12-17 09:53:47 +0100 (Di, 17 Dez 2002) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/Makefile.am
   M /trunk/gnome-client/pixmaps/Makefile.am
   M /trunk/gnome-client/src/Makefile.am

Update the build process so "make dist" works.

------------------------------------------------------------------------
r5295 | jdorje | 2002-12-17 09:38:09 +0100 (Di, 17 Dez 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/configure.in

Change top of configure.in to set module name: ggz-gnome-client and
version: 0.0.7pre.

------------------------------------------------------------------------
r5294 | jdorje | 2002-12-17 08:30:38 +0100 (Di, 17 Dez 2002) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/callbacks.c

Convert some char* to const char *.

------------------------------------------------------------------------
r5293 | jdorje | 2002-12-17 06:25:45 +0100 (Di, 17 Dez 2002) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/Makefile.am
   D /trunk/gnome-client/acinclude.ggz
   M /trunk/gnome-client/autogen.sh
   A /trunk/gnome-client/m4
   A /trunk/gnome-client/m4/ggz.m4

Move acinclude.ggz to m4/ggz.m4.

------------------------------------------------------------------------
r5156 | jdorje | 2002-11-03 01:55:29 +0100 (So, 03 Nov 2002) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/interface.c

Fix buggy typo.

------------------------------------------------------------------------
r5107 | jzaun | 2002-10-30 00:24:58 +0100 (Mi, 30 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/callbacks.c
   M /trunk/gnome-client/src/interface.h


- Tooltips hack for the player list works now, no stats are shown yet

------------------------------------------------------------------------
r5097 | jzaun | 2002-10-29 01:59:19 +0100 (Di, 29 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/callbacks.c
   M /trunk/gnome-client/src/callbacks.h
   M /trunk/gnome-client/src/ggzclient.c
   M /trunk/gnome-client/src/interface.c
   M /trunk/gnome-client/src/interface.h


- The framework to a tooltip system for the player list

------------------------------------------------------------------------
r5032 | jzaun | 2002-10-26 00:11:42 +0200 (Sa, 26 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/ggzclient.c
   M /trunk/gnome-client/src/interface.c


- Working on /beep

------------------------------------------------------------------------
r5006 | jzaun | 2002-10-23 17:23:22 +0200 (Mi, 23 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/callbacks.c
   M /trunk/gnome-client/src/game.c
   M /trunk/gnome-client/src/game.h
   M /trunk/gnome-client/src/interface.c


- Watching games works now.

------------------------------------------------------------------------
r5005 | jzaun | 2002-10-23 02:59:25 +0200 (Mi, 23 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/game.c
   M /trunk/gnome-client/src/game.h


- add #include "game.h" to game.c and fix a declaration in game.h

------------------------------------------------------------------------
r5004 | jzaun | 2002-10-23 02:51:53 +0200 (Mi, 23 Okt 2002) | 5 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/Makefile.am
   M /trunk/gnome-client/src/callbacks.c
   A /trunk/gnome-client/src/game.c
   A /trunk/gnome-client/src/game.h
   M /trunk/gnome-client/src/ggzclient.c
   M /trunk/gnome-client/src/interface.c
   M /trunk/gnome-client/src/msgboxi.c


- Joining a game works, though not much is checked yet so make sure you have a table selected!
- Sensitivity of the Change Room and Tables buttons
- Added a msgbox for when the server disconnects the client

------------------------------------------------------------------------
r4967 | jzaun | 2002-10-21 03:44:52 +0200 (Mo, 21 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/ggzclient.c


- made to compile again with ggzcore changes.

------------------------------------------------------------------------
r4954 | jzaun | 2002-10-20 00:02:49 +0200 (So, 20 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/callbacks.c
   M /trunk/gnome-client/src/ggzclient.c
   M /trunk/gnome-client/src/interface.c
   M /trunk/gnome-client/src/main.c
   M /trunk/gnome-client/src/msgboxi.c
   M /trunk/gnome-client/src/profilesc.c
   M /trunk/gnome-client/src/xtext.c
   M /trunk/gnome-client/src/xtext.h


- Commiting a patch by Jason and several cleanup of myown

------------------------------------------------------------------------
r4953 | jzaun | 2002-10-19 23:03:17 +0200 (Sa, 19 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/callbacks.c
   M /trunk/gnome-client/src/ggzclient.c
   M /trunk/gnome-client/src/xtext.c
   M /trunk/gnome-client/src/xtext.h


- Updated to 1.9.3 xtext widget.

------------------------------------------------------------------------
r4933 | jzaun | 2002-10-16 22:02:58 +0200 (Mi, 16 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/callbacks.c


- Started work on joining tables. Things don't work yet.

------------------------------------------------------------------------
r4932 | jzaun | 2002-10-16 19:47:46 +0200 (Mi, 16 Okt 2002) | 9 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/callbacks.c
   M /trunk/gnome-client/src/callbacks.h
   M /trunk/gnome-client/src/interface.c
   M /trunk/gnome-client/src/profilesc.c
   M /trunk/gnome-client/src/profilesi.c


- advanced profile editor works
  * modifying existing profiles
  * deleteing existing profiles
  * adding new profiles
  * button sensitivity

- Added the join and watch buttons to the table view

------------------------------------------------------------------------
r4929 | jdorje | 2002-10-16 02:07:30 +0200 (Mi, 16 Okt 2002) | 16 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/acinclude.ggz
   M /trunk/ggz-client-libs/acinclude.ggz
   M /trunk/ggz-txt-client/acinclude.ggz
   M /trunk/ggzd/acinclude.ggz
   M /trunk/gnome-client/acinclude.ggz
   M /trunk/grubby/acinclude.ggz
   M /trunk/gtk-client/acinclude.ggz
   M /trunk/kde-client/acinclude.ggz
   M /trunk/kde-games/acinclude.ggz
   M /trunk/utils/acinclude.ggz

Improvement (hopefully :-) to acinclude.ggz.  Now each GGZ check takes
two optional parameters.  For instance:

  AC_GGZ_LIBGGZ(action-if-found, action-if-not-found)

'action-if-found' will be evaluated if the specified module was found.
'action-if-not-found' will be evaluated if the module is not found.  This
is consistent with other autoconf macros.  If 'action-is-not-found' is
empty, then an error will be emitted if the module isn't found.  If
'action-if-not-found' is "ignore", then the module will simply be ignored
if it's not found.

This is not entirely backwards-compatible, since "ignore" used to be
the first parameter to the macro.  But this way is more consistent, in
my opinion.

------------------------------------------------------------------------
r4913 | jzaun | 2002-10-14 22:34:22 +0200 (Mo, 14 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/profilesc.c
   M /trunk/gnome-client/src/profilesi.c


- You can now add new profiles manualy for existing accounts

------------------------------------------------------------------------
r4911 | jzaun | 2002-10-14 22:17:50 +0200 (Mo, 14 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/ggzclient.c
   M /trunk/gnome-client/src/profilesc.c
   M /trunk/gnome-client/src/profilesc.h
   M /trunk/gnome-client/src/profilesi.c


- Some more work on the Advanced Profile editor

------------------------------------------------------------------------
r4909 | jzaun | 2002-10-14 20:08:47 +0200 (Mo, 14 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/profilesi.c


- removed some unneeded code

------------------------------------------------------------------------
r4908 | jzaun | 2002-10-14 20:06:53 +0200 (Mo, 14 Okt 2002) | 5 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/Makefile.am
   M /trunk/gnome-client/src/callbacks.c
   M /trunk/gnome-client/src/callbacks.h
   M /trunk/gnome-client/src/interface.c
   A /trunk/gnome-client/src/profilesc.c
   A /trunk/gnome-client/src/profilesc.h
   A /trunk/gnome-client/src/profilesi.c
   A /trunk/gnome-client/src/profilesi.h


- Added and advanced button to the profiles screen
- Created the advanced profile editor window
  not much is hooked up yet.

------------------------------------------------------------------------
r4907 | jzaun | 2002-10-14 14:13:15 +0200 (Mo, 14 Okt 2002) | 5 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/callbacks.c
   M /trunk/gnome-client/src/interface.c


- Password is disabled for guest login type
- Guest and Registered spaced better
- Renamed NEW to PROFILES

------------------------------------------------------------------------
r4906 | jzaun | 2002-10-14 13:49:59 +0200 (Mo, 14 Okt 2002) | 4 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/callbacks.c
   M /trunk/gnome-client/src/ggzclient.c
   M /trunk/gnome-client/src/interface.c
   M /trunk/gnome-client/src/msgboxi.c


- Don't allow login button to be enabled while registered and no password
- Error message for XML error

------------------------------------------------------------------------
r4905 | jzaun | 2002-10-14 01:42:42 +0200 (Mo, 14 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/callbacks.c
   M /trunk/gnome-client/src/ggzclient.c


- Fixed login sensitvity problem

------------------------------------------------------------------------
r4904 | jzaun | 2002-10-14 01:16:29 +0200 (Mo, 14 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/ggzclient.c
   M /trunk/gnome-client/src/interface.c


- First steps of the table list are done much more to come

------------------------------------------------------------------------
r4903 | jzaun | 2002-10-13 22:09:17 +0200 (So, 13 Okt 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/ggzclient.c
   M /trunk/gnome-client/src/interface.c
   M /trunk/gnome-client/src/login.c
   M /trunk/gnome-client/src/msgboxi.c


- Errors connecting to the server are explained in a message box now.

------------------------------------------------------------------------
r4853 | dr_maux | 2002-10-10 20:44:36 +0200 (Do, 10 Okt 2002) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/ggzclient.c

- fix gnome client

------------------------------------------------------------------------
r4791 | jdorje | 2002-10-03 17:32:26 +0200 (Do, 03 Okt 2002) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/ggzclient.c

Some more typecasting to avoid compiler warnings.

------------------------------------------------------------------------
r4790 | jdorje | 2002-10-03 17:24:46 +0200 (Do, 03 Okt 2002) | 6 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/callbacks.c

Avoid some compiler warnings:
  - Use a specific typecast on a GTK variable.
  - Remove a spurious semicolon.
Also, avoid comparing boolean values to TRUE.  Just check to see if
they're true!

------------------------------------------------------------------------
r4789 | jdorje | 2002-10-03 17:22:55 +0200 (Do, 03 Okt 2002) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/interface.c

Use a specific typecast to avoid a compiler warning.

------------------------------------------------------------------------
r4788 | jdorje | 2002-10-03 17:18:01 +0200 (Do, 03 Okt 2002) | 3 lines
Geänderte Pfade:
   A /trunk/gnome-client/src/.deps
   A /trunk/gnome-client/src/.deps/.cvsignore

I don't know why the .deps directory is in CVS, but every file in it
should be ignored.

------------------------------------------------------------------------
r4783 | dr_maux | 2002-10-01 20:53:52 +0200 (Di, 01 Okt 2002) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/configure.in
   M /trunk/gtk-client/configure.in
   M /trunk/kde-games/configure.in
   M /trunk/utils/configure.in

- use configure.in for AC_INIT

------------------------------------------------------------------------
r4774 | dr_maux | 2002-09-29 17:57:04 +0200 (So, 29 Sep 2002) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client
   M /trunk/gnome-client/.cvsignore

- put acinclude.m4 into cvsignore

------------------------------------------------------------------------
r4746 | dr_maux | 2002-09-27 10:58:31 +0200 (Fr, 27 Sep 2002) | 2 lines
Geänderte Pfade:
   M /trunk/docs/autogen.sh
   M /trunk/ggz/game_clients/autogen.sh
   M /trunk/ggz-client-libs/autogen.sh
   M /trunk/ggz-txt-client/autogen.sh
   M /trunk/ggzd/autogen.sh
   M /trunk/gnome-client/autogen.sh
   M /trunk/grubby/autogen.sh
   M /trunk/gtk-client/autogen.sh
   M /trunk/kde-client/autogen.sh
   M /trunk/kde-games/autogen.sh
   M /trunk/libggz/autogen.sh
   M /trunk/utils/autogen.sh

- new autogen

------------------------------------------------------------------------
r4728 | dr_maux | 2002-09-26 13:54:09 +0200 (Do, 26 Sep 2002) | 2 lines
Geänderte Pfade:
   D /trunk/gnome-client/ABOUT-NLS
   M /trunk/gnome-client/ChangeLog
   M /trunk/gnome-client/Makefile.am
   M /trunk/gnome-client/acconfig.h
   D /trunk/gnome-client/acinclude.m4
   M /trunk/gnome-client/autogen.sh

- even more cleanups

------------------------------------------------------------------------
r4727 | dr_maux | 2002-09-26 13:51:51 +0200 (Do, 26 Sep 2002) | 2 lines
Geänderte Pfade:
   D /trunk/gnome-client/m4
   D /trunk/gnome-client/po

- more gnome-client cleanups

------------------------------------------------------------------------
r4726 | dr_maux | 2002-09-26 13:43:41 +0200 (Do, 26 Sep 2002) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client
   M /trunk/gnome-client/.cvsignore
   M /trunk/gnome-client/acinclude.ggz
   M /trunk/gnome-client/configure.in
   M /trunk/gnome-client/src/Makefile.am

- fix gnome client

------------------------------------------------------------------------
r4674 | jdorje | 2002-09-24 00:45:37 +0200 (Di, 24 Sep 2002) | 3 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/acinclude.ggz
   M /trunk/ggz-client-libs/acinclude.ggz
   M /trunk/ggz-txt-client/acinclude.ggz
   M /trunk/ggzd/acinclude.ggz
   M /trunk/gnome-client/acinclude.ggz
   M /trunk/grubby/acinclude.ggz
   M /trunk/gtk-client/acinclude.ggz
   M /trunk/kde-client/acinclude.ggz
   M /trunk/kde-games/acinclude.ggz
   M /trunk/utils/acinclude.ggz

Update acinclude.ggz in the txt-client, and label acinclude.ggz as being
included in txt-client.

------------------------------------------------------------------------
r4631 | jdorje | 2002-09-19 18:18:33 +0200 (Do, 19 Sep 2002) | 2 lines
Geänderte Pfade:
   M /trunk/ggz/game_clients/acinclude.ggz
   M /trunk/ggz-client-libs/acinclude.ggz
   M /trunk/ggzd/acinclude.ggz
   M /trunk/gnome-client/acinclude.ggz
   M /trunk/grubby/acinclude.ggz
   M /trunk/gtk-client/acinclude.ggz
   M /trunk/kde-client/acinclude.ggz
   M /trunk/kde-games/acinclude.ggz
   M /trunk/utils/acinclude.ggz

Include gnome-client on the list of modules that use acinclude.ggz.

------------------------------------------------------------------------
r4308 | dr_maux | 2002-07-15 22:15:43 +0200 (Mo, 15 Jul 2002) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client
   A /trunk/gnome-client/.cvsignore
   M /trunk/gnome-client/ABOUT-NLS
   D /trunk/gnome-client/aclocal.m4
   D /trunk/gnome-client/ltmain.sh
   M /trunk/gnome-client/src
   M /trunk/gnome-client/src/.cvsignore
   D /trunk/gnome-client/stamp-h
   D /trunk/gnome-client/stamp-h.in

- some more cleanups

------------------------------------------------------------------------
r4307 | dr_maux | 2002-07-15 22:14:31 +0200 (Mo, 15 Jul 2002) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/pixmaps
   A /trunk/gnome-client/pixmaps/.cvsignore
   M /trunk/gnome-client/src
   A /trunk/gnome-client/src/.cvsignore

- some more cleanups

------------------------------------------------------------------------
r4306 | dr_maux | 2002-07-15 22:11:35 +0200 (Mo, 15 Jul 2002) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/m4/Makefile
   M /trunk/gnome-client/m4/Makefile.in
   M /trunk/gnome-client/po/ChangeLog
   M /trunk/gnome-client/po/Makefile
   D /trunk/gnome-client/src/.xvpics

- clean up ggz-gnome build system a bit

------------------------------------------------------------------------
r4263 | jzaun | 2002-06-19 23:20:04 +0200 (Mi, 19 Jun 2002) | 2 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/callbacks.c

- Fixed the login button sensitivity to the two types of loggins

------------------------------------------------------------------------
r4262 | jzaun | 2002-06-19 23:10:12 +0200 (Mi, 19 Jun 2002) | 3 lines
Geänderte Pfade:
   M /trunk/gnome-client/src/callbacks.c
   M /trunk/gnome-client/src/callbacks.h
   M /trunk/gnome-client/src/interface.c
   M /trunk/gnome-client/src/main.c


- Changed the login and create button checks from a timeout to a callback

------------------------------------------------------------------------
r4257 | jzaun | 2002-06-13 17:10:11 +0200 (Do, 13 Jun 2002) | 4 lines
Geänderte Pfade:
   D /trunk/gnome-client/src/.deps
   D /trunk/gnome-client/src/.thumbnails
   M /trunk/gnome-client/src/callbacks.c
   M /trunk/gnome-client/src/callbacks.h
   M /trunk/gnome-client/src/main.c

- Removed a bunch of files that should not have been commited to CVS
- Added a general timeout callback that currently checks the
  sensitivity of the login and create buttons

------------------------------------------------------------------------
r4253 | jzaun | 2002-06-10 01:24:38 +0200 (Mo, 10 Jun 2002) | 2 lines
Geänderte Pfade:
   A /trunk/gnome-client/m4
   A /trunk/gnome-client/m4/ChangeLog
   A /trunk/gnome-client/m4/Makefile
   A /trunk/gnome-client/m4/Makefile.am
   A /trunk/gnome-client/m4/Makefile.in
   A /trunk/gnome-client/m4/codeset.m4
   A /trunk/gnome-client/m4/gettext.m4
   A /trunk/gnome-client/m4/glibc21.m4
   A /trunk/gnome-client/m4/iconv.m4
   A /trunk/gnome-client/m4/isc-posix.m4
   A /trunk/gnome-client/m4/lcmessage.m4
   A /trunk/gnome-client/m4/lib-ld.m4
   A /trunk/gnome-client/m4/lib-link.m4
   A /trunk/gnome-client/m4/lib-prefix.m4
   A /trunk/gnome-client/m4/progtest.m4
   A /trunk/gnome-client/pixmaps/Default/New.xpm
   A /trunk/gnome-client/pixmaps/Default/star1.xpm
   A /trunk/gnome-client/pixmaps/Default/star2.xpm
   A /trunk/gnome-client/pixmaps/Default/star3.xpm
   A /trunk/gnome-client/pixmaps/Default/star4.xpm
   A /trunk/gnome-client/pixmaps/Default/star5.xpm
   A /trunk/gnome-client/po
   A /trunk/gnome-client/po/ChangeLog
   A /trunk/gnome-client/po/Makefile
   A /trunk/gnome-client/po/POTFILES
   A /trunk/gnome-client/po/POTFILES.in
   A /trunk/gnome-client/src
   A /trunk/gnome-client/src/.deps
   A /trunk/gnome-client/src/.deps/callbacks.P
   A /trunk/gnome-client/src/.deps/callbacks.Po
   A /trunk/gnome-client/src/.deps/chat.P
   A /trunk/gnome-client/src/.deps/chat.Po
   A /trunk/gnome-client/src/.deps/ggzclient.P
   A /trunk/gnome-client/src/.deps/ggzclient.Po
   A /trunk/gnome-client/src/.deps/interface.P
   A /trunk/gnome-client/src/.deps/interface.Po
   A /trunk/gnome-client/src/.deps/login.P
   A /trunk/gnome-client/src/.deps/login.Po
   A /trunk/gnome-client/src/.deps/loginc.P
   A /trunk/gnome-client/src/.deps/logini.P
   A /trunk/gnome-client/src/.deps/main.P
   A /trunk/gnome-client/src/.deps/main.Po
   A /trunk/gnome-client/src/.deps/msgboxc.P
   A /trunk/gnome-client/src/.deps/msgboxc.Po
   A /trunk/gnome-client/src/.deps/msgboxi.P
   A /trunk/gnome-client/src/.deps/msgboxi.Po
   A /trunk/gnome-client/src/.deps/support.P
   A /trunk/gnome-client/src/.deps/support.Po
   A /trunk/gnome-client/src/.deps/xtext.P
   A /trunk/gnome-client/src/.deps/xtext.Po
   A /trunk/gnome-client/src/.thumbnails
   A /trunk/gnome-client/src/.thumbnails/Login.xpm.png
   A /trunk/gnome-client/src/.thumbnails/New.xpm.png
   A /trunk/gnome-client/src/.thumbnails/chat.xpm.png
   A /trunk/gnome-client/src/.thumbnails/chatbackground.xpm.png
   A /trunk/gnome-client/src/.thumbnails/msg.xpm.png
   A /trunk/gnome-client/src/.thumbnails/star3.xpm.png
   A /trunk/gnome-client/src/.thumbnails/star4.xpm.png
   A /trunk/gnome-client/src/.thumbnails/star5.xpm.png
   A /trunk/gnome-client/src/.xvpics
   A /trunk/gnome-client/src/.xvpics/Login.xpm
   A /trunk/gnome-client/src/.xvpics/chatbackground.xpm
   A /trunk/gnome-client/src/.xvpics/star1.xpm
   A /trunk/gnome-client/src/.xvpics/star2.xpm
   A /trunk/gnome-client/src/.xvpics/star3.xpm
   A /trunk/gnome-client/src/.xvpics/star4.xpm
   A /trunk/gnome-client/src/.xvpics/star5.xpm
   A /trunk/gnome-client/src/Makefile.am
   A /trunk/gnome-client/src/callbacks.c
   A /trunk/gnome-client/src/callbacks.h
   A /trunk/gnome-client/src/chat.c
   A /trunk/gnome-client/src/chat.h
   A /trunk/gnome-client/src/ggzclient.c
   A /trunk/gnome-client/src/ggzclient.h
   A /trunk/gnome-client/src/interface.c
   A /trunk/gnome-client/src/interface.h
   A /trunk/gnome-client/src/login.c
   A /trunk/gnome-client/src/login.h
   A /trunk/gnome-client/src/main.c
   A /trunk/gnome-client/src/msgboxc.c
   A /trunk/gnome-client/src/msgboxc.h
   A /trunk/gnome-client/src/msgboxi.c
   A /trunk/gnome-client/src/msgboxi.h
   A /trunk/gnome-client/src/support.c
   A /trunk/gnome-client/src/support.h
   A /trunk/gnome-client/src/xtext.c
   A /trunk/gnome-client/src/xtext.h

Initial revision

------------------------------------------------------------------------
r4250 | jzaun | 2002-06-10 01:17:00 +0200 (Mo, 10 Jun 2002) | 2 lines
Geänderte Pfade:
   A /trunk/gnome-client/pixmaps/Default/Login.xpm
   A /trunk/gnome-client/pixmaps/Default/msg.xpm

Initial revision

------------------------------------------------------------------------
r4247 | jzaun | 2002-06-10 01:08:18 +0200 (Mo, 10 Jun 2002) | 2 lines
Geänderte Pfade:
   A /trunk/gnome-client/pixmaps/Default/chat.xpm

Initial revision

------------------------------------------------------------------------
r4244 | jzaun | 2002-06-10 01:01:52 +0200 (Mo, 10 Jun 2002) | 2 lines
Geänderte Pfade:
   A /trunk/gnome-client/pixmaps/Default
   A /trunk/gnome-client/pixmaps/Default/chatbackground.xpm

Initial revision

------------------------------------------------------------------------
r4241 | jzaun | 2002-06-10 00:53:50 +0200 (Mo, 10 Jun 2002) | 2 lines
Geänderte Pfade:
   A /trunk/gnome-client
   A /trunk/gnome-client/ABOUT-NLS
   A /trunk/gnome-client/AUTHORS
   A /trunk/gnome-client/ChangeLog
   A /trunk/gnome-client/Makefile.am
   A /trunk/gnome-client/NEWS
   A /trunk/gnome-client/README
   A /trunk/gnome-client/acconfig.h
   A /trunk/gnome-client/acinclude.ggz
   A /trunk/gnome-client/acinclude.m4
   A /trunk/gnome-client/aclocal.m4
   A /trunk/gnome-client/autogen.sh
   A /trunk/gnome-client/configure.in
   A /trunk/gnome-client/ggz-gnome.desktop
   A /trunk/gnome-client/ggz-gnome.schemas
   A /trunk/gnome-client/ltmain.sh
   A /trunk/gnome-client/pixmaps
   A /trunk/gnome-client/pixmaps/Makefile.am
   A /trunk/gnome-client/stamp-h
   A /trunk/gnome-client/stamp-h.in

Initial revision

------------------------------------------------------------------------