File: ChangeLog

package info (click to toggle)
italc 1%3A2.0.2%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 16,052 kB
  • ctags: 14,001
  • sloc: ansic: 113,193; cpp: 31,325; tcl: 6,138; java: 5,432; sh: 399; makefile: 66
file content (4275 lines) | stat: -rw-r--r-- 123,821 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
2008-11-08	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/include/types.h:
	include stdint.h for compiling with GCC 4.4

2008-11-05	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* build_mingw32:
	improved CFLAGS and CXXFLAGS

	* ima/src/client.cpp:
	allow remote login without password

	* lib/src/local_system.cpp:
	fixed registry setting for personal configuration directory and
	personal configuration file (closes #2006515)

2008-11-05	James Mitchell <james_mitchell/at/user/dot/sourceforge/dot/net>

	* ima/src/classroom_manager.cpp:
	* ima/src/classroom_manager.h:
	* ima/src/client.cpp:
	* ima/src/main_window.cpp:
	Implemented Toggle Autoview

2008-10-16	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/system_service.cpp:
	* ica/src/system_service.h:
	* ica/src/local_system_ica.cpp:
	* lib/include/local_system.h:
	* lib/src/local_system.cpp:
	applied patch by James Mitchell <James.P.Mitchell@education.nsw.gov.au>
	for improved username detection on win32

2008-07-23	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	made 1.0.9 release

	* ica/ica.rc.in:
	* setup/setup.rc.in:
	* ima/italc.rc.in:
	fixed version-information (closes #2025199)

	* ica/src/demo_server.h:
	* ica/src/demo_server.cpp:
	moved cursor-position queries to demoServer - workaround for an
	unknown bug in Qt 4.4 (closes #1994549, #2006526, #2015845)

	* lib/src/isd_base.cpp:
	use QTcpSocket::waitForBytesWritten() rather than flush()

	* lib/src/local_system.cpp:
	initialize LZO-library on startup

	* lib/src/messagebox.cpp:
	fixed compiler warning

2008-07-06	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	made 1.0.9-rc4 release

	* ica/src/isd_server.cpp:
	win32: run processes with rights of logged on user

	* lib/src/local_system.cpp:
	win32: tried better way for logging on user but had no success

	* ica/src/demo_server.h:
	* ica/src/demo_server.cpp:
	use QTimer-objects instead of QTimer::singleShot() as Qt 4.4.0 crashes
	quite often otherwise (for whatever reason)

	* utils-win32/Makefile.am:
	* utils-win32/userinfo.cpp:
	removed obsolete files

	* build_mingw32:
	-fno-strict-aliasing is not necessary anymore with GCC 4.3

	* ima/src/main.cpp:
	if custom ISD-port is used, apply at startup

	* ica/x11/x11vnc/inet.c:
	renamed deprecated member-variable as it's been reverted on 2008-06-24

2008-06-26	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/client.cpp:
	do not call client::update() outside of GUI-thread - fixes crashes of
	master

2008-06-24	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/ivs.cpp:
	* ica/x11/x11vnc/userinput.c:
	* ica/x11/x11vnc/inet.c:
	* ica/x11/x11vnc/options.h:
	* ica/x11/x11vnc/xinerama.c:
	* ica/x11/x11vnc/user.c:
	* ica/x11/x11vnc/8to24.c:
	* ica/x11/x11vnc/connections.c:
	* ica/x11/x11vnc/cursor.c:
	* ica/x11/x11vnc/x11vnc_defs.c:
	* ica/x11/x11vnc/tkx11vnc.h:
	* ica/x11/x11vnc/scan.c:
	* ica/x11/x11vnc/gui.c:
	* ica/x11/x11vnc/selection.c:
	* ica/x11/x11vnc/unixpw.c:
	* ica/x11/x11vnc/screen.c:
	* ica/x11/x11vnc/x11vnc.c:
	* ica/x11/x11vnc/ssltools.h:
	* ica/x11/x11vnc/sslhelper.c:
	* ica/x11/x11vnc/help.c:
	* ica/x11/x11vnc/options.c:
	* ica/x11/libvncserver/stats.c:
	* ica/x11/libvncserver/rfbregion.c:
	* ica/x11/libvncserver/zywrletemplate.c:
	* ica/x11/libvncserver/rfbserver.c:
	- integrated latest x11vnc-version which fixes ICA-crahes when
	  disconnecting in certain situations
	- disabled x11vnc-debug-console per default

2008-06-13	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/isd_server.cpp:
	* ima/src/main.cpp:
	* ima/src/main_window.cpp:
	* ima/italc.1:
	applied patch by Stephane Graber <stgraber/at/gmail/dot/com> which
	adds -isdhost option in order to connect to local ISD's in
	TC-environments

2008-06-11	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/resources/cs.qm:
	* ica/resources/pt_br.qm:
	* ica/resources/fi.ts:
	* ica/resources/fr.qm:
	* ica/resources/es.qm:
	* ica/resources/nn.qm:
	* ica/resources/pl.qm:
	* ica/resources/it.qm:
	* ica/resources/cs.ts:
	* ica/resources/sl.qm:
	* ica/resources/uk.qm:
	* ica/resources/pt_br.ts:
	* ica/resources/es.ts:
	* ica/resources/fr.ts:
	* ica/resources/zh.qm:
	* ica/resources/nn.ts:
	* ica/resources/pl.ts:
	* ica/resources/it.ts:
	* ica/resources/ru.qm:
	* ica/resources/sl.ts:
	* ica/resources/uk.ts:
	* ica/resources/zh.ts:
	* ica/resources/fi.qm:
	* ica/resources/ru.ts:
	* ica/resources/el.qm:
	* setup/resources/fr.qm:
	* setup/resources/fi.ts:
	* setup/resources/nn.qm:
	* setup/resources/pl.qm:
	* setup/resources/sl.qm:
	* setup/resources/cs.ts:
	* setup/resources/pt_br.ts:
	* setup/resources/zh.qm:
	* setup/resources/sk.ts:
	* setup/resources/uk.ts:
	* setup/resources/fi.qm:
	* setup/resources/ru.ts:
	* setup/resources/cs.qm:
	* setup/resources/pt_br.qm:
	* setup/resources/el.ts:
	* setup/resources/uk.qm:
	* setup/resources/fr.ts:
	* setup/resources/nn.ts:
	* setup/resources/pl.ts:
	* setup/resources/it.ts:
	* setup/resources/ru.qm:
	* setup/resources/sl.ts:
	* setup/resources/zh.ts:
	* setup/resources/el.qm:
	* ima/resources/pl.qm:
	* ima/resources/it.qm:
	* ima/resources/cs.ts:
	* ima/resources/sl.qm:
	* ima/resources/es.ts:
	* ima/resources/zh.qm:
	* ima/resources/sk.ts:
	* ima/resources/uk.ts:
	* ima/resources/cs.qm:
	* ima/resources/es.qm:
	* ima/resources/sk.qm:
	* ima/resources/uk.qm:
	* ima/resources/fr.ts:
	* ima/resources/nn.ts:
	* ima/resources/de.ts:
	* ima/resources/fi.ts:
	* ima/resources/fr.qm:
	* ima/resources/nn.qm:
	* ima/resources/pt_br.ts:
	* ima/resources/de.qm:
	* ima/resources/fi.qm:
	* ima/resources/ru.ts:
	* ima/resources/pt_br.qm:
	* ima/resources/el.ts:
	* ima/resources/pl.ts:
	* ima/resources/it.ts:
	* ima/resources/ru.qm:
	* ima/resources/sl.ts:
	* ima/resources/zh.ts:
	* ima/resources/el.qm:
	* lib/resources/fr.qm:
	* lib/resources/fi.ts:
	* lib/resources/nn.qm:
	* lib/resources/pl.qm:
	* lib/resources/it.qm:
	* lib/resources/sl.qm:
	* lib/resources/cs.ts:
	* lib/resources/pt_br.ts:
	* lib/resources/es.ts:
	* lib/resources/zh.qm:
	* lib/resources/sk.ts:
	* lib/resources/uk.ts:
	* lib/resources/fi.qm:
	* lib/resources/ru.ts:
	* lib/resources/cs.qm:
	* lib/resources/pt_br.qm:
	* lib/resources/es.qm:
	* lib/resources/el.ts:
	* lib/resources/uk.qm:
	* lib/resources/fr.ts:
	* lib/resources/nn.ts:
	* lib/resources/pl.ts:
	* lib/resources/it.ts:
	* lib/resources/ru.qm:
	* lib/resources/sl.ts:
	* lib/resources/zh.ts:
	* lib/resources/el.qm:
	refreshed localization-files

2008-06-06	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/x11/x11vnc/inet.c:
	renamed deprecated member-variable

	* lib/src/isd_connection.cpp:
	fixed sleep()-call

	* lib/src/local_system.cpp:
	immediately exit application when encountering messages containing
	timer-threading-problem under win32

2008-05-30	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/src/lock_widget.cpp:
	additionally set blank cursor before showing in fullscreen

	* lib/src/system_key_trapper.cpp:
	disable and hide taskbar while being locked

	* lib/src/isd_connection.cpp:
	- if connection failed, sleep for 2 seconds for not reaching
	  max-connection limit of WinXP/SP2 instantly
	- increased timeout when waiting for new connection to 5 seconds

	* ima/src/main_window.cpp:
	more graceful shutdown under win32

	* ica/src/ivs.cpp:
	- forward stdout and stderr or x11vnc to ICA's stdout/stderr
	- pass "-dbg" option to x11vnc

	* configure.in:
	1.0.9-rc2 release

2008-05-30	Andrei Krueger	<anc/at/iki/dot/fi>

	* ica/ica.qrc:
	* ica/resources/el.ts:
	* ica/resources/el.qm:
	* setup/setup.qrc:
	* setup/resources/el.ts:
	* setup/resources/el.qm:
	* lib/italc_core.qrc:
	* lib/resources/el.ts:
	* lib/resources/el.qm:
	* ima/italc.qrc:
	* ima/resources/el.ts:
	* ima/resources/el.qm:
	added Greek localization-files by Giorgos Nikolaidis

2008-05-27	Andrei Krueger	<anc/at/iki/dot/fi>

	* ima/src/client.h:
	* ima/src/classroom_manager.h:
	* ima/src/client.cpp:
	* ima/src/classroom_manager.cpp:
	customized menus - user can hide existing client-menu items
	and add own commands to the menu (added menu-element to personalconfig)

2008-05-27	Andrei Krueger	<anc/at/iki/dot/fi>

	* ima/src/main_window.h:
	* ima/src/kmultitabbar.cpp:
	* ima/src/italc_side_bar.cpp:
	* ima/src/main_window.cpp:
	* ima/src/kmultitabbar.h:
	* ima/src/italc_side_bar.h:
	* ima/src/classroom_manager.cpp:
	made visibility of individual sidebar-buttons configurable via
	context-menu

2008-05-26	Andrei Krueger	<anc/at/iki/dot/fi>

	* ima/src/client.h:
	* ima/src/classroom_manager.h:
	* ima/src/cmd_input_dialog.h:
	* ima/src/client.cpp:
	* ima/src/dialogs.h:
	* ima/src/classroom_manager.cpp:
	- added classes clientAction and clientMenu
	- improved multiselection of clients and implemented
	  execution of client actions on all selected items
	- re-structured contextMenuRequest() of classmanager

	* ima/src/classroom_manager.h:
	* ima/src/classroom_manager.cpp:
	- moved initialization of menus to setupMenus()
	- simplified changeMode()
	- removed m_domTree
	- fixed show/hide menu action

2008-05-24	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/remote_control_widget.cpp:
	reverted hotfix from 2008-05-20

	* lib/src/vncview.cpp:
	Qt::WA_PaintOnScreen-property seems to have changed in Qt >= 4.4.0 so
	that widgets with this property set can't have overlapping
	sibling-widgets - so do not use this property anymore which fixes
	with toolbar in remote-control view

	* acinclude.m4:
	when cross-compiling, use non-native Qt-development-tools (moc, uic)

2008-05-21	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/main_window.cpp:
	fixed mode-buttons in toolbar which were broken in 1.0.9-rc1

2008-05-20	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/resources/sk.qm:
	* ica/resources/sk.ts:
	* setup/resources/sk.ts:
	* setup/resources/sk.qm:
	* ima/resources/sk.ts:
	* ima/resources/sk.qm:
	* lib/resources/sk.ts:
	* lib/resources/sk.qm:
	updated Slovakian localization-files by Jan Valuska
	<jvaluska/at/gymzv8rocne/dot/edu/dot/sk>

	* ima/src/remote_control_widget.cpp:
	hotfix for Qt >= 4.4.0 where toolbar didn't appear anymore

	* ima/src/client.cpp:
	fixed tray-menu-actions when main-window is minimized

	* lib/src/isd_connection.cpp:
	increased timeout again

2008-05-09	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/ica.qrc:
	* ica/resources/ru.qm:
	* ica/resources/ru.ts:
	* setup/setup.qrc:
	* setup/resources/ru.ts:
	* setup/resources/ru.qm:
	* ima/italc.qrc:
	* ima/resources/ru.ts:
	* ima/resources/ru.qm:
	* lib/italc_core.qrc:
	* lib/resources/ru.ts:
	* lib/resources/ru.qm:
	added Russian localization-files by Alexander Kazancev

	* ima/resources/uk.ts:
	* ima/resources/uk.qm:
	updated Ukrainian localization-files by Yuri Chornoivan

2008-05-06	Andrei Krueger	<anc/at/iki/dot/fi>

	* ima/src/main.cpp:
	disabled stylesheet with Qt < 4.3

	* ima/resources/fi.ts:
	* ima/resources/fi.qm:
	updated Finnish localization

2008-05-05	Andriano Rino <rino-andr/at/users/dot/sourceforge/dot/net>

	* ima/resources/it.qm:
	* ima/resources/it.ts:
	* setup/resources/it.qm:
	* setup/resources/it.ts:
	Updated Italian localization

2008-05-04	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* build_mingw32:
	build with -fno-strict-aliasing as compiling with MinGW-GCC < 4.3.0
	can lead to miscompilations without this flag

	* ima/src/main_window.cpp:
	added exit()-call in main-window-destructor when building for win32 -
	hack which fixes bug

	* lib/src/isd_connection.cpp:
	increased timeout when reading from socket

	* ima/src/client.cpp:
	changed color of active titlebar

	* ica/src/isd_server.cpp:
	* ima/italc.qrc:
	* ima/src/tool_button.h:
	* ima/src/main_window.h:
	* ima/src/main.cpp:
	* ima/src/classroom_manager.h:
	* ima/src/tool_button.cpp:
	* ima/src/main_window.cpp:
	* ima/src/classroom_manager.cpp:
	* ima/resources/tray-menu-bg.png:
	* lib/include/isd_connection.h:
	* lib/include/isd_base.h:
	* lib/src/isd_connection.cpp:
	added support for controlling master-application via system-tray-icon

	* README.LZO:
	* lib/include/lzodefs.h:
	* lib/include/lzoconf.h:
	* lib/include/minilzo.h:
	* lib/src/minilzo.c:
	updated miniLZO-library to version 2.03

2008-05-03	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/win32/src/vncEncodeCoRRE.cpp:
	included patch from TightVNC-bug-tracker

2008-04-27	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/tool_button.h:
	* ima/src/tool_button.cpp:
	fixed tooltip flicker issue

	* ima/dialogs/config.ui:
	* ima/src/config_widget.h:
	* ima/src/config_widget.cpp:
	* ima/src/classroom_manager.cpp:
	* ima/src/tool_button.h:
	* ima/src/tool_button.cpp:
	added option for making toolbar buttons only display icon

	* ima/src/client.h:
	* ima/src/main_window.cpp:
	* ima/src/client.cpp:
	better shutdown on exit - hopefully fixes threading-problems

	* ima/src/main_window.cpp:
	fixed endless loop when initializing keys

2008-04-23	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/ivs.cpp:
	* ica/src/isd_server.cpp:
	* lib/include/isd_base.h:
	* lib/src/isd_base.cpp:
	* ica/win32/win32vnc.cpp:
	- renamed SocketGetIPBoundTo to SocketGetPeerAddress
	- fixed demo-mode on Linux-clients by not adding host-names twice
	  because of isdForwarder

	* lib/src/local_system.cpp:
	added patch by Ben Dailey <bdailey/at/bhmsd/dot/k12/dot/in/dot/us>
	which adds dates and times to logfiles

2008-04-21	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	* README:
	made 1.0.8 release

2008-04-21	Andriano Rino <rino-andr/at/users/dot/sourceforge/dot/net>

	* ica/resources/it.ts:
	* ima/resources/it.qm:
	* ima/resources/it.ts:
	* lib/resources/it.ts:
	refreshed Italian localization

2008-04-17	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/isd_server.cpp:
	cleanups

	* lib/src/isd_connection.cpp:
	do not load key-file from empty filename

	* lib/include/isd_connection.h:
	* lib/src/isd_connection.cpp:
	added gracefulClose() which should be used whereever possible as this
	gracefully closes the connection instead of aborting it - avoids
	SIGPIPE-signals

	* ica/src/demo_server.h:
	* ica/src/demo_server.cpp:
	* ica/src/isd_server.cpp:
	* ica/src/isd_server.h:
	* ima/src/main_window.cpp:
	* lib/include/isd_connection.h:
	* lib/include/isd_base.h:
	* lib/src/isd_connection.cpp:
	rewrote the way, demo-servers are instantiated, started, stopped and
	destroyed - hopefully fixes crashs when using demo-mode heavily

	* lib/src/vncview.cpp:
	update scaled-size as soon as we have a connection - fixes buggy
	demo-mode and remote-control

	* ica/src/isd_server.cpp:
	* ima/dialogs/config.ui:
	* ima/src/config_widget.cpp:
	* ima/src/main_window.h:
	* ima/src/main.cpp:
	* ima/src/config_widget.h:
	* ima/src/client.cpp:
	* ima/src/classroom_manager.cpp:
	* lib/include/isd_connection.h:
	* lib/src/isd_connection.cpp:
	determine demo-master-IP via active master-client connection -
	obsoletes network-interface-configuration in master-application

	* ima/src/cmd_input_dialog.cpp:
	fixed orientation of OK- and cancel-button

	* lib/src/isd_connection.cpp:
	print connection-failure-messages via qDebug so that they normally do
	not appear (closes #1945142)

	* setup/resources/fr.qm:
	* setup/resources/fr.ts:
	* ima/resources/fr.ts:
	* ima/resources/fr.qm:
	* lib/resources/fr.qm:
	* lib/resources/fr.ts:
	updated French localization-files

	* ima/resources/uk.ts:
	* ima/resources/uk.qm:
	updated Ukrainian localization-files

2008-04-17	Andrei Krueger	<anc/at/iki/dot/fi>

	* ima/resources/fi.ts:
	* ima/resources/fi.qm:
	updated Finnish localization-files

2008-04-17	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	*  ima/src/dialogs.cpp:
	set default-focus on hostNameEdit

2008-04-15	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/Makefile.am:
	* ima/src/tool_bar.h:
	* ima/src/tool_button.h:
	* ima/src/classroom_manager.h:
	* ima/src/tool_bar.cpp:
	* ima/src/tool_button.cpp:
	* ima/src/main_window.cpp:
	* ima/src/classroom_manager.cpp:
	- reintroduced align- and auto-arrange-buttons
	- made visibility of individual toolbar-buttons configurable via
	  context-menu

	* ica/resources/cs.ts:
	* ica/resources/pt_br.ts:
	* ica/resources/fr.ts:
	* ica/resources/es.ts:
	* ica/resources/nn.ts:
	* ica/resources/pl.ts:
	* ica/resources/sl.ts:
	* ica/resources/uk.ts:
	* ica/resources/zh.ts:
	* ica/resources/de.ts:
	* setup/resources/fi.ts:
	* setup/resources/cs.ts:
	* setup/resources/pt_br.ts:
	* setup/resources/uk.ts:
	* setup/resources/fr.ts:
	* setup/resources/nn.ts:
	* setup/resources/pl.ts:
	* setup/resources/it.ts:
	* setup/resources/sl.ts:
	* setup/resources/zh.ts:
	* setup/resources/de.ts:
	* ima/resources/pl.qm:
	* ima/resources/it.qm:
	* ima/resources/sl.qm:
	* ima/resources/cs.ts:
	* ima/resources/es.ts:
	* ima/resources/zh.qm:
	* ima/resources/sk.ts:
	* ima/resources/uk.ts:
	* ima/resources/cs.qm:
	* ima/resources/es.qm:
	* ima/resources/sk.qm:
	* ima/resources/uk.qm:
	* ima/resources/fr.ts:
	* ima/resources/nn.ts:
	* ima/resources/de.ts:
	* ima/resources/fi.ts:
	* ima/resources/fr.qm:
	* ima/resources/nn.qm:
	* ima/resources/pt_br.ts:
	* ima/resources/de.qm:
	* ima/resources/fi.qm:
	* ima/resources/pt_br.qm:
	* ima/resources/pl.ts:
	* ima/resources/it.ts:
	* ima/resources/sl.ts:
	* ima/resources/zh.ts:
	* lib/resources/cs.ts:
	* lib/resources/pt_br.ts:
	* lib/resources/es.ts:
	* lib/resources/uk.ts:
	* lib/resources/fr.ts:
	* lib/resources/nn.ts:
	* lib/resources/pl.ts:
	* lib/resources/it.ts:
	* lib/resources/sl.ts:
	* lib/resources/zh.ts:
	* lib/resources/de.ts:
	refreshed localization-files

2008-04-15	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/resources/pt_br.ts:
	* setup/resources/pt_br.ts:
	* ima/resources/pt_br.ts:
	* ima/resources/pt_br.qm:
	* lib/resources/pt_br.ts:
	updated Brazilian Portuguese localization-files

	* ica/ica.qrc:
	* ica/resources/sk.qm:
	* ica/resources/sk.ts:
	* setup/setup.qrc:
	* setup/resources/sk.ts:
	* setup/resources/sk.qm:
	* ima/italc.qrc:
	* ima/resources/pl.qm:
	* ima/resources/sk.ts:
	* ima/resources/sk.qm:
	* ima/resources/pl.ts:
	* lib/italc_core.qrc:
	* lib/resources/sk.ts:
	* lib/resources/sk.qm:
	added Slovakian localization-files by Jan Valuska
	<jvaluska/at/gymzv8rocne/dot/edu/dot/sk>

	* ima/src/main.cpp:
	fixed loading of country-specific localizations

2008-04-11	Andrei Krueger	<anc/at/iki/dot/fi>

	* classroom_manager.cpp:
	* classroom_manager.h:
	Fixed removing of child classroom (closes #1936559)
	Improved addClassRoom.

2008-04-11	Andrei Krueger	<anc/at/iki/dot/fi>

	* ima/dialogs/client_settings.ui:
	* ima/src/main_window.h:
	* ima/src/dialogs.cpp:
	* ima/src/client.h:
	* ima/src/main_window.cpp:
	* ima/src/client.cpp:
	* ima/src/classroom_manager.cpp:
	Name (nickname) of the client is now optional,
	hostname (ip) is used as default (closes #1886578)

2008-04-03	Andriano Rino <rino-andr/at/users/dot/sourceforge/dot/net>

	* ima/resources/it.qm:
	* ima/resources/it.ts:
	updated Italian localization

2008-04-03	Andrei Krueger	<anc/at/iki/dot/fi>

	* ima/src/classroom_manager.cpp:
	drag'n'drop workaround for Qt bug #155700 (Qt < 4.3.4)

2008-04-02	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/src/isd_connection.cpp:
	made readFromServer() have a timeout - fixes hung processes/threads on
	blocked connections (closes #1924390)

	* lib/src/ivs_connection.cpp:
	fill screen and scaled screen with black

	* ima/src/client.cpp:
	improved client-thread-destruction

	* ima/src/main_window.cpp:
	improved button-texts

	* ima/src/classroom_manager.cpp:
	* ima/src/classroom_manager.h:
	- removed obsolete functions
	- small optimizations by not using foreach

	* ica/src/system_service.cpp:
	use QString::toLocal8Bit() instead of QString::toUtf8() - hopefully
	fixes #1898070

	* ica/src/local_system_ica.cpp:
	use SHTDN_REASON_MAJOR_OTHER instead of SHTDN_REASON_MAJOR_SYSTEM

	* setup/src/dialogs.cpp:
	- removed obsolete userinfo.exe
	- misc fixes

	* ima/src/italc_side_bar.cpp:
	improved painting

	* setup/src/dialogs.cpp:
	* setup/src/dialogs.h:
	fixed confirmation-dialog when closing setup-window via Alt+F4 or
	close-button (closes #1912695)

2008-04-02	Andrei Krueger	<anc/at/iki/dot/fi>

	* ima/src/classroom_manager.h:
	* ima/src/classroom_manager.cpp:
	drag and drop support for classroom manager (closes #1886602)

	* ica/resources/fi.ts:
	* lib/resources/fi.ts:
	* ima/resources/fi.ts:
	* ima/resources/fi.qm:
	updated Finnish localization-files

2008-03-31	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/include/vncview.h:
	* lib/src/vncview.cpp:
	fixed wrong mapping to framebuffer-coordinates

	* lib/include/local_system.h:
	* lib/src/local_system.cpp:
	* ima/src/main_window.cpp:
	always try to run demo-server on default-port 5858 - allows better
	firewall-configuration in many places

2008-03-30	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* italc.spec.in:
	applied patch to build properly/better on recent openSUSE releases by  
	Lars Vogdt <lars/at/linux-schulserve/dot/.de>

2008-03-27	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/ica.qrc:
	* ica/resources/pt_br.qm:
	* ica/resources/pt_br.ts:
	* setup/setup.qrc:
	* setup/resources/pt_br.ts:
	* setup/resources/pt_br.qm:
	* ima/italc.qrc:
	* ima/resources/pt_br.ts:
	* ima/resources/pt_br.qm:
	* lib/italc_core.qrc:
	* lib/resources/pt_br.ts:
	* lib/resources/pt_br.qm:
	integrated localization-files for Brazilian Portuguese by
	Thomas Marques <thomasmarques/at/gmx/dot/net>

	* ima/src/side_bar_widget.cpp:
	* ima/src/tool_button.cpp:
	some color-fine-tunings

	* ima/src/client.cpp:
	improved painting of title-bar

2008-03-28	Andrei Krueger	<anc/at/iki/dot/fi>

	* client.cpp:
	client window if highlighted when selected

	* classroom_manager.cpp:
	* classroom_manager.h:
	client window is zoomed when pressed on manager list

2008-03-28	Andrei Krueger	<anc/at/iki/dot/fi>

	* ima/src/classroom_manager.cpp:
	arrange order is based on classroom manager list

2008-03-28	Andrei Krueger	<anc/at/iki/dot/fi>

	* ima/src/kmultitabbar.cpp:
	support for Qt 4.2
	
2008-03-27	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/src/vncview.cpp:
	fixed wrong calculation in mapToFramebuffer in case screen is scaled

2007-03-27	Andriano Rino <rino-andr/at/users/dot/sourceforge/dot/net>

	* ica/resources/it.ts:
	* ima/resources/it.ts:
	* lib/resources/it.ts:
	updated Italian localization

2008-03-26	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* setup/resources/pl.qm:
	* setup/resources/pl.ts:
	* ima/resources/pl.qm:
	* ima/resources/pl.ts:
	updated Polish localization-files by
	Robert Radko <robert/at/radko/dot/pl>

2008-03-21	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/remote_control_widget.cpp:
	* ima/src/tool_bar.h:
	* ima/src/italc_side_bar.cpp:
	* ima/src/tool_bar.cpp:
	* ima/src/tool_button.cpp:
	* ima/src/main_window.cpp:
	improved appearence of toolbar and tool-buttons

	* lib/include/vncview.h:
	* lib/src/vncview.cpp:
	in scaled view keep aspect ratio of screen and also do not expand
	image if vncView-size > framebuffer-size

2008-03-20	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/client.cpp:
	set user-name as tooltip if hostname is displayed in titlebar

	* ima/resources/sidebar.png:
	* ima/italc.qrc:
	* ima/src/italc_side_bar.h:
	* ima/src/side_bar_widget.cpp:
	* ima/src/italc_side_bar.cpp:
	improved appearence of left toolbar

	* ima/src/main_window.h:
	* ima/src/classroom_manager.h:
	* ima/src/main_window.cpp:
	* ima/src/classroom_manager.cpp:
	- moved auto-rearrange and adjust-buttons from toolbar into
	  classroom-menu
	- show classroom-menu as context-menu of workspace-area
	- removed support-workspace and added Direct-Support-button in toolbar
	  instead
	- use spacing=0 for main-layout which removes odd vertical bar between
	  left toolbar and working-space

	* ima/src/kmultitabbar.cpp:
	* ima/src/kmultitabbar.h:
	updated KMultiTabBar from KDE-SVN

	* ima/src/support_widget.cpp:
	* ima/src/support_widget.h:
	* ima/Makefile.am:
	removed support_widget.*

	* ima/src/classroom_manager.h:
	* ima/src/client.cpp:
	* ima/src/classroom_manager.cpp:
	applied patches by Andrei Krueger <anc/at/iki/dot/fi> which displays
	host-name in client-windows if "show user"-name checkbox in
	classroom-manager is not activated

	* lib/src/lock_widget.cpp:
	disable screen-saver while screen is locked (e.g. while fullscreen-demo)

2008-03-19	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/ica.qrc:
	* ica/resources/fi.ts:
	* ica/resources/fi.qm:
	* setup/setup.qrc:
	* setup/resources/fi.ts:
	* setup/resources/fi.qm:
	* ima/italc.qrc:
	* ima/resources/fi.ts:
	* ima/resources/fi.qm:
	* lib/italc_core.qrc:
	* lib/resources/fi.ts:
	* lib/resources/fi.qm:
	added Finnish localization-files by Andrei Krueger <anc/at/iki/dot/fi>

2008-03-17	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/src/fast_qimage.cpp:
	disabled MMX-optimized code on x86_64 for the time being as it crashes
	sometimes - needs to be reviewed somewhen later

	applied patches by Andrei Krueger <anc/at/iki/dot/fi>:

	* configure.in:
	* lib/src/vncview.cpp:
	* ica/src/system_service.cpp:
	* ima/src/client.cpp:
	fixed compiler-warnings

	* ima/src/client.h:
	* ima/src/client.cpp:
	added zoom-feature

2008-03-10	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/src/fast_qimage.cpp:
	fixed (superfluous) MMX detection on 64-bit-platforms

2008-03-09	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* README:
	* configure.in:
	made 1.0.7 release

2008-03-06	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/resources/de.ts:
	updated

	* ima/dialogs/support.ui:
	* ima/resources/remote_control_16.png:
	* ima/resources/remote_control.png:
	new icon and other UI-fixes

	* ica/src/local_system_ica.cpp:
	* ima/dialogs/overview.ui:
	* ima/src/user_list.cpp:
	* ima/src/classroom_manager.h:
	* ima/src/main_window.cpp:
	* ima/src/client.cpp:
	* ima/src/user_list.h:
	* ima/src/classroom_manager.cpp:
	* ima/Makefile.am:
	applied patch by Andrei Krueger <anc/at/iki/dot/fi>:
	- Merged userlist-view into classManager-view. Second column can show
	  IP-address or username (selected by checkbox).  The computer name and
	  IP are added to exported file.
	- Moved actions submenus to the top of popup-menus

2008-03-03	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/dialogs/client_settings.ui:
	* ima/src/dialogs.cpp:
	* ima/src/client.h:
	* ima/src/main_window.cpp:
	* ima/src/classroom_manager.cpp:
	removed remoteIP-property as it's useless in current implementation

	* ima/src/client.cpp:
	use opaque painting again in order to perform well on older machines
	too

2008-03-03	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/classroom_manager.cpp:
	fixed logon-feature from classroom-action-menu

	* ima/src/main_window.cpp:
	* lib/src/isd_connection.cpp:
	in case user accidently changed role but no keys exist for this role
	try teacher-role as fallback in order to make iTALC still usable in
	such cases (Closes #1866440)

	* italc.spec.in:
	added missing library

	* setup/resources/pl.qm:
	* setup/resources/qt_pl.qm:
	* setup/resources/pl.ts:
	* ima/resources/pl.qm:
	* ima/resources/qt_pl.qm:
	* ima/resources/pl.ts:
	fixes in Polish localization-files by
	Robert Radko <robert/at/radko/dot/pl>

2008-02-26	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/local_system_ica.cpp:
	* lib/include/local_system.h:
	* lib/src/local_system.cpp:
	moved powerDown(), reboot() and logoffUser() to local_system_ica.cpp
	and made those functions work when no user is logged on under Linux

	* lib/src/vncview.cpp:
	- fixed mapFromFramebuffer()-method
	- fixed draw-position for cursor in scaled mode

	* ica/src/demo_client.cpp:
	* ima/src/remote_control_widget.cpp:
	* lib/include/vncview.h:
	* lib/src/vncview.cpp:
	made progress-widget optional - do not use when remote-controlling to
	speed things up

	* ima/src/remote_control_widget.cpp:
	scale logo (which is now rendered larger) to fit into toolbar

	* lib/src/ivs_connection.cpp:
	directly use fastQImage::scaleTo(...) rather than
	fastQImage::scaled(...) to avoid creating temporary images

	* lib/src/fast_qimage.cpp:
	check for format() == Format_Invalid and handle properly

	* lib/include/fast_qimage.h:
	* lib/src/fast_qimage.cpp:
	in fastQImage::scaleTo(...) return reference to destination image for
	convenience

2008-02-25	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/ica.qrc:
	* ica/resources/pl.qm:
	* ica/resources/pl.ts:
	* setup/setup.qrc:
	* setup/resources/pl.qm:
	* setup/resources/pl.ts:
	* ima/italc.qrc:
	* ima/resources/pl.qm:
	* ima/resources/pl.ts:
	* lib/italc_core.qrc:
	* lib/resources/pl.qm:
	* lib/resources/pl.ts:
	added Polish localization-files by Robert Radko <robert/at/radko/dot/pl>

	* ima/src/client.cpp:
	less transparency

2008-02-25	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* setup/resources/page_artwork_welcome.png:
	* ima/italc.qrc:
	* ima/dialogs/client_settings.ui:
	* ima/src/cmd_input_dialog.cpp:
	* ima/data/italc.png:
	* ima/data/italc.xpm:
	* ima/data/italc.ico:
	* ima/resources/demoquality.png:
	* ima/resources/client_settings.png:
	* ima/resources/info_22.png:
	* ima/resources/viewmag.png:
	* ima/resources/no_user.png:
	* ima/resources/adjust_size.png:
	* ima/resources/apply.png:
	* ima/resources/client_add.png:
	* ima/resources/reboot.png:
	* ima/resources/client_remove.png:
	* ima/resources/client_visible.png:
	* ima/resources/clock.png:
	* ima/resources/config.png:
	* ima/resources/host_unreachable.png:
	* ima/resources/classroom_manager_48.png:
	* ima/resources/client-properties.png:
	* ima/resources/ok.png:
	* ima/resources/classroom_add.png:
	* ima/resources/client.png:
	* ima/resources/client_show.png:
	* ima/resources/whatsthis.png:
	* ima/resources/classroom_remove.png:
	* ima/resources/tutorials.png:
	* ima/resources/error.png:
	* ima/resources/info.png:
	* ima/resources/classroom_manager.png:
	* ima/resources/logo.png:
	* ima/resources/classroom_show.png:
	* ima/resources/overview_mode.png:
	* ima/resources/cancel.png:
	* ima/resources/power_off.png:
	* ima/resources/help.png:
	* ima/resources/back.png:
	* ima/resources/locked.png:
	* ima/resources/fullscreen.png:
	* ima/resources/toolbar.png:
	* ima/resources/run.png:
	* ima/resources/config_48.png:
	* ima/resources/quit.png:
	* ima/resources/client_hidden.png:
	* ima/resources/splash.png:
	* lib/src/lock_widget.cpp:
	* lib/resources/icon22.png:
	* lib/resources/locked_bg.png:
	* lib/resources/icon32.png:
	* lib/resources/icon16.png:
	* lib/resources/ok.png:
	* lib/resources/info.png:
	- improved graphics to have one consistent theme and fixed wrong
	  resource-references
	- updated logo

	* lib/src/fast_qimage.cpp:
	added check for valid destination-size

	* ima/src/main_window.h:
	* ima/src/client.h:
	* ima/src/main_window.cpp:
	* ima/src/client.cpp:
	* ima/src/classroom_manager.cpp:
	- wrote own workspace- and workspace-window-concept which looks much
	  cooler, provides a simpler UI and allows to have bigger
	  preview-windows
	- rewrote painting-code for client-windows
	- improved auto-rearranger

2008-02-23	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/client.cpp:
	instantly rescale screen after change of window-size

	* lib/include/ivs_connection.h:
	return shallow QImage-copy instead of reference to image which isn't
	protected by read-lock after leaving scaledScreen()-method - fixes
	crashes under rare circumstances where image has been drawn while
	being rescaled

	* lib/include/ivs_connection.h:
	* lib/src/ivs_connection.cpp:
	* lib/include/vncview.h:
	* lib/src/vncview.cpp:
	added support for scaled view to vncView-class

	* lib/src/fast_qimage.cpp:
	replaced old slow image-scaling code with fast new one - if available,
	MMX-optimized version is being used which makes things even faster -
	fixes unresponsive master-workstations when overviewing a lot of
	clients

2008-02-10	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	made 1.0.6 release

	* lib/Makefile.am:
	* ica/Makefile.am:
	* ima/Makefile.am:
	install libitalc_core.so to /usr/lib/italc/ instead of /usr/lib/

	* lib/src/vncview.cpp:
	make Backtab (i.e. Shift+Tab) work properly in remote-control (closes
	#1889307)

	* README.LZO:
	* lib/include/lzodefs.h:
	* lib/include/lzoconf.h:
	* lib/include/minilzo.h:
	* lib/src/minilzo.c:
	* lib/Makefile.am:
	updated from version 1.08 to 2.02 which fixes random crashes on
	64-bit-platforms

	* ica/src/demo_server.cpp:
	use correct type (lzo_uint) for bytes-lzo-parameter when calling
	lzo1x_1_compress - fixes possible problems on 64-bit-platforms

	* lib/src/local_system.cpp:
	* ica/src/ica_main.cpp:
	* ica/src/ivs.cpp:
	* ica/src/system_service.cpp:
	* ica/src/isd_server.cpp:
	* ima/src/classroom_manager.cpp:
	* ima/src/main_window.cpp:
	* ima/src/user_list.cpp:
	replaced QString::toAscii() with QString::toUtf8()

	* lib/src/messagebox.cpp:
	check for GUI-thread-affinity and only show message in logfile/console
	in case we're not in GUI-thread - fixes various crashes

	* ica/src/isd_server.cpp:
	fixed host-based authentication in such a way that it works for
	ThinClient-environments as well as when ports other than 5900 are used
	for IVS (i.e. -ivsport has been used) - fixes non-working-demo in
	these scenarios

	* lib/src/ivs_connection.cpp:
	when deflating compressed data, handle num_rows = 0, i.e. do not call
	m_screen.copyRect()

	* lib/include/fast_qimage.h:
	in fastQImage::copyRect() handle case when height of rect is zero
	instead of calling QImage::scanLine() with invalid parameter - fixes
	frequent crashes of IMA!

	* ica/src/isd_server.cpp:
	moved initialization of IVS-server to end of isdServer-constructor so
	that correct isdport-parameter is passed to IVS-sub-processes

2008-02-09	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/include/rect_list.h:
	* lib/src/rect_list.cpp:
	removed

	* lib/include/isd_base.h:
	* lib/include/qt_user_events.h:
	* ica/src/demo_server.h:
	* ica/src/demo_server.cpp:
	- replaced own rectList-implementation by QRegion
	- fixed endianess-problems of demo-mode

	* ima/src/classroom_manager.cpp:
	hide item before pushing client into remove-list

	* lib/include/ivs_connection.h:
	* lib/src/ivs_connection.cpp:
	- moved ivsConnection::s_localDisplayFormat to static
	  __localDisplayFormat-struct
	- fixed broken gradient-filter of tight-encoding
	- fixed missing parentheses in pixel-calculation in tight-encoding
	- when handling jpeg-data, dynamically allocate memory instead of
	  using the stack in a non-standard way
	- fixed color-conversion when handling X-cursor
	- fixed frequent crash of demo-mode by adding additional check in
	  ivsConnection::handleItalc(...) which avoids calling
	  QImage::scanLine() with an invalid parameter and thus raising a
	  Qt-internal assertion (closes #1849671)

	* lib/resources/*.ts:
	* lib/resources/*.qm:
	* ica/resources/*.ts:
	* ica/resources/*.qm:
	* ima/resources/*.ts:
	* ima/resources/*.qm:
	refreshed localization files, included updates of Spanish localization
	by <schoolboy/at/ole/dot/com>

2008-02-01	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	made 1.0.6-rc1 release

	* ica/x11/x11vnc/xrandr.c:
	* ica/x11/x11vnc/userinput.c:
	* ica/x11/x11vnc/macosx.h:
	* ica/x11/x11vnc/xwrappers.h:
	* ica/x11/x11vnc/keyboard.c:
	* ica/x11/x11vnc/options.h:
	* ica/x11/x11vnc/xrandr.h:
	* ica/x11/x11vnc/userinput.h:
	* ica/x11/x11vnc/xinerama.c:
	* ica/x11/x11vnc/keyboard.h:
	* ica/x11/x11vnc/util.c:
	* ica/x11/x11vnc/user.c:
	* ica/x11/x11vnc/8to24.c:
	* ica/x11/x11vnc/winattr_t.h:
	* ica/x11/x11vnc/connections.c:
	* ica/x11/x11vnc/user.h:
	* ica/x11/x11vnc/macosxCGP.c:
	* ica/x11/x11vnc/avahi.c:
	* ica/x11/x11vnc/xevents.c:
	* ica/x11/x11vnc/avahi.h:
	* ica/x11/x11vnc/xevents.h:
	* ica/x11/x11vnc/macosxCG.c:
	* ica/x11/x11vnc/macosxCG.h:
	* ica/x11/x11vnc/win_utils.c:
	* ica/x11/x11vnc/cursor.c:
	* ica/x11/x11vnc/rates.c:
	* ica/x11/x11vnc/x11vnc_defs.c:
	* ica/x11/x11vnc/cursor.h:
	* ica/x11/x11vnc/gui.c:
	* ica/x11/x11vnc/scan.c:
	* ica/x11/x11vnc/tkx11vnc.h:
	* ica/x11/x11vnc/uinput.c:
	* ica/x11/x11vnc/selection.c:
	* ica/x11/x11vnc/scan.h:
	* ica/x11/x11vnc/unixpw.c:
	* ica/x11/x11vnc/remote.c:
	* ica/x11/x11vnc/allowed_input_t.h:
	* ica/x11/x11vnc/unixpw.h:
	* ica/x11/x11vnc/screen.c:
	* ica/x11/x11vnc/x11vnc.c:
	* ica/x11/x11vnc/pointer.c:
	* ica/x11/x11vnc/screen.h:
	* ica/x11/x11vnc/x11vnc.h:
	* ica/x11/x11vnc/pointer.h:
	* ica/x11/x11vnc/ssltools.h:
	* ica/x11/x11vnc/macosxCGS.c:
	* ica/x11/x11vnc/macosxCGS.h:
	* ica/x11/x11vnc/sslhelper.c:
	* ica/x11/x11vnc/v4l.c:
	* ica/x11/x11vnc/sslhelper.h:
	* ica/x11/x11vnc/xdamage.c:
	* ica/x11/x11vnc/xrecord.c:
	* ica/x11/x11vnc/nox11_funcs.h:
	* ica/x11/x11vnc/solid.c:
	* ica/x11/x11vnc/xdamage.h:
	* ica/x11/x11vnc/pm.c:
	* ica/x11/x11vnc/solid.h:
	* ica/x11/x11vnc/pm.h:
	* ica/x11/x11vnc/cleanup.c:
	* ica/x11/x11vnc/params.h:
	* ica/x11/x11vnc/help.c:
	* ica/x11/x11vnc/macosx.c:
	* ica/x11/x11vnc/options.c:
	* ica/x11/x11vnc/xwrappers.c:
	* ica/x11/x11vnc.c:
	* ica/x11/libvncserver/stats.c:
	* ica/x11/libvncserver/zrle.c:
	* ica/x11/libvncserver/rfbserver.c:
	* ica/x11/libvncserver/cursor.c:
	* ica/x11/libvncserver/httpd.c:
	* ica/x11/libvncserver/main.c:
	* ica/x11/libvncserver/zrleencodetemplate.c:
	* ica/x11/libvncserver/scale.c:
	* ica/Makefile.am:
	* lib/include/rfb/rfb.h:
	* lib/include/rfb/rfbproto.h:
	* lib/include/rfb/rfbclient.h:
	* lib/Makefile.am:
	integrated latest release of x11vnc (0.9.4)

	* ima/italc.1:
	updated manpage

	* ima/src/main.cpp:
	* ima/src/main_window.cpp:
	added -isdport-option in order to connect to a different local ISD
	(e.g. for LTSP-environments)

	* ica/src/local_system_ica.cpp:
	when retrieving user-name, construct QString using QString::fromUtf8()
	which fixes encoding problems in user-names

	* lib/src/local_system.cpp:
	fixed shutdown, reboot and logoff methods for KDE and GNOME

	* lib/src/isd_connection.cpp:
	- fixed broken authentication-type rfbNoAuth
	- include port-number in warning

	* lib/include/types.h:
	made typedefs for 32-bit-integers more specific

	* configure.in:
	cleanups

	* ica/src/ivs.cpp:
	fixed missing pe.pseudoEncoding-NULL-initialization which lead to
	crash on several platforms

	* ica/src/isd_server.cpp:
	fixed too small array-sizes

	* configure.in:
	added -fPIC-flag to make everything compile well on x86_64

2008-01-30	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/main_window.cpp:
	* ima/src/main.cpp:
	fixed "-screen"-parameter for virtual desktops

2008-01-29	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	made 1.0.5 release

	* README:
	* ima/dialogs/about.ui:
	* ima/resources/splash.png:
	extended copyright-notice from 2007 to 2008

	* lib/include/local_system.h:
	* lib/src/local_system.cpp:
	* setup/src/dialogs.cpp:
	- use Win32-API for determining program-files folder (closes #1846814)
	- use %temp% and %tmp% environment-variables instead of C:\temp if
	  possible (closes #1879580)

	* ima/src/main_window.h:
	* ima/src/main_window.cpp:
	* ima/src/main.cpp:
	added "-screen"-argument which makes it possible to specify which
	screen the remote-control-window should be displayed on

	* ica/ica.rc.in:
	* ima/italc.rc.in:
	fixed FILEVERSION-info-tag

	* ica/Makefile.am:
	made ICA a non-console-application in order to make it usable when
	running as normal application instead of service

	* COPYING:
	* lib/include/dsa_key.h:
	* lib/src/dsa_key.cpp:
	added permission to link iTALC against OpenSSL library

	* ima/resources/uk.qm:
	* ima/resources/uk.qm:
	updated Ukrainian localization

2008-01-14	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/ica.qrc:
	* ica/resources/uk.qm:
	* ica/resources/uk.ts:
	* setup/setup.qrc:
	* setup/resources/uk.qm:
	* setup/resources/uk.ts:
	* ima/italc.qrc:
	* ima/resources/uk.qm:
	* ima/resources/uk.qm:
	* lib/italc_core.qrc:
	* lib/resources/uk.qm:
	* lib/resources/uk.ts:
	added Ukrainian localization-files by Yuri Chornoivan
	<yurchor/at/ukr/dot/net>

2008-01-14	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/classroom_manager.cpp:
	fixed typo

2007-12-23	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/ica.qrc:
	* ica/resources/cs.qm:
	* ica/resources/cs.ts:
	* setup/setup.qrc:
	* setup/resources/cs.qm:
	* setup/resources/cs.ts:
	* ima/italc.qrc:
	* ima/resources/cs.qm:
	* ima/resources/cs.qm:
	* lib/italc_core.qrc:
	* lib/resources/zh.qm:
	* lib/resources/zh.ts:
	added Czech localization-files by Martin Sin
	<martin/dot/sin/at/zshk/dot/cz>

2007-11-24	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	made 1.0.4 release

	* ima/src/client.cpp:
	- change to overview-mode before quitting update-thread
	- at exit properly close connection inside update-thread and flush
	  the event-queue before

	* ima/src/main_window.h:
	* ima/src/main_window.cpp:
	stripped out mainWindow-update-thread into separate class (instead of
	nested class) - now the update-thread is event-loop/timer-based which
	allows further fixes of lockups and other optimizations

	* ica/src/demo_client.cpp:
	fixed non-working window-demo under win32 (a certain size has to be
	set for a window before it is shown)

	* lib/src/lock_widget.cpp:
	use QApplication's desktop-widget instead of creating a new one

	* ica/src/ivs.cpp:
	run IVS in separate process again

	* setup/src/dialogs.cpp:
	- add ICA as an exception-application for windows-firewall
	- when user chose to keep keys do not show key-directory-page

	* Makfile.am:
	improved win32-packaging

	* acinclude.m4:
	added more Qt4-search-paths

	* lib/src/vncview.cpp:
	- do not set Qt::WA_PaintOnScreen-attribute on win32 as it causes
	  painting errors (although Qt-docs say that this flag has no effect on
	  win32!) in VNC-views
	- increased framebuffer-update-interval from 20 to 25 ms
	- use QTimer-timeout-signals instead of recursive QTimer-singleshots
	  (fixes lockups on unreachable hosts etc.)

	* lib/src/ivs_connection.cpp:
	re-enabled CopyRect-encoding

	* lib/include/ivs_connection.h:
	re-enabled read-locker for screen-image

	* ima/src/3rdparty/qnetworkinterface_win.cpp:
	* ima/src/3rdparty/qnetworkinterface.h:
	* ima/src/3rdparty/qnetworkinterface_p.h:
	* ima/src/3rdparty/qnetworkinterface.cpp:
	* ima/src/3rdparty/qnetworkinterface_win_p.h
	* ima/src/3rdparty/qnetworkinterface_unix.cpp:
	* ima/src/qnetworkinterface.cpp:
	* ima/src/qnetworkinterface.h:
	removed as not needed anymore

	* lib/include/qt_features.h:
	* ica/src/isd_server.cpp:
	* ima/src/config_widget.cpp:
	* ima/src/client.cpp:
	* setup/src/dialogs.cpp:
	removed support for Qt < 4.2.0

	* build_mingw32:
	added generic-tune parameter (new in GCC 4.2.x)

	* README:
	updated

2007-10-11	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/ica.qrc:
	* ica/resources/zh.qm:
	* ica/resources/zh.ts:
	* setup/setup.qrc:
	* setup/resources/qt_zh.qm:
	* setup/resources/zh.qm:
	* setup/resources/zh.ts:
	* ima/italc.qrc:
	* ima/resources/qt_zh.qm:
	* ima/resources/zh.qm:
	* ima/resources/zh.ts:
	* lib/italc_core.qrc:
	added Chinese localization-files

	* ima/src/classroom_manager.cpp:
	when saving XML-file use toUtf8() instead of toAscii() for solving
	problems with different locales

2007-09-16	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* setup/src/main.cpp:
	when running auto-setup from UNC-path and specifying relative path to
	XML-file do not fail (because of bug or so in QFile) by making path to
	XML-file absolute

	* setup/src/dialogs.cpp:
	- only run net-command in win32-version
	- when upgrading, only sleep 3 seconds since the systray-bug has been
	  fixed a while ago

	* ica/src/system_service.cpp:
	do not show message about already registered service when running in
	quiet-mode

	* ima/data/italc.in:
	changed from section "Apps" to "Applications"

	* configure.in:
	removed orphaned reference to utils-win32/Makefile.in

2007-09-15	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/src/local_system.cpp:
	fixed code which replaced duplicate dir-separators - made things not
	work on network-shares ("\\...") under win32

2007-09-02	Iztok <Iztok/dot/osredkar/at/guest/dot/arnes/dot/si>

	* ica/resources/sl.qm:
	* ica/resources/sl.ts:
	* ima/resources/sl.qm:
	* ima/resources/sl.ts:
	* lib/resources/sl.qm:
	* lib/resources/sl.ts:
	* setup/resources/sl.qm:
	* setup/resources/sl.ts:
	added Slovenian localization-files

2007-08-02	Andriano Rino <rino-andr/at/users/dot/sourceforge/dot/net>
	* ica/resources/it.ts:
	* lib/resources/it.ts:
	updated Italian localization

2007-07-30	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/win32/src/VNCHooks/SharedData.cpp:
	* ica/src/local_system_ica.cpp:
	* ica/Makefile.am:
	* lib/include/messagebox.h:
	* lib/include/local_system.h:
	* lib/include/isd_base.h:
	* lib/src/inject.cpp:
	more fixes and improvements for compiling (and working!!) with
	GCC 4.2 - has been a mess to find out that now we need
	--enable-auto-image-base flag when linking vnchooks.dll because
	otherwise ICA won't even start under win32

	* ica/src/ica_main.cpp:
	* ica/src/system_service.cpp:
	* ica/Makefile.am:
	* lib/Makefile.am:
	removed some more LUPUS-references

2007-07-28	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/src/dsa_key.cpp:
	do not use QFile::handle() with Qt >= 4.3.0 under win32 as it always
	returns -1, use fopen() instead

	* lib/src/local_system.cpp:
	fixed wrong code for line-endings in log files

	* ica/win32/win32vnc.cpp:
	* lib/src/system_key_trapper.cpp:
	* lib/src/isd_connection.cpp:
	re-ordered win32-header-inclusion to fix some compile errors with
	recent GCC versions

	* lib/src/ivs_connection.cpp:
	* lib/include/ivs_connection.h:
	post regionChangedEvent in separate method (i.e. use postEvent instead
	of sendEvent as sendEvent is not thread-safe and produces
	Qt-assertions)

	* lib/src/vncview.cpp:
	* lib/include/vncview.h:
	close connection in destructor vncWorker-class - fixes assertions with
	Qt >= 4.3.0

	* Makefile.am:
	* ica/Makefile.am:
	* ica/src/local_system_ica.cpp:
	moved code from userinfo.cpp here

	* ica/src/ivs.cpp:
	do not run IVS in separate process anymore (to be tested)

	* ica/win32/src/VideoDriver.cpp:
	fixed compiler warning

	* utils-win32/userinfo.cpp:
	fixed uninitialized pointer and improved some casts - fixes
	non-working code when compiling with GCC 4.x

	* configure.in:
	use -fPIC as compiler flag per default

	* lib/Makefile.am:
	added -soname-flag to linker flags for not having shared library
	without SONAME-entry

	* ica/Makefile.am:
	* ima/Makefile.am:
	* setup/Makefile.am:
	* lib/Makefile.am:
	use $(RCC)-variable instead of rcc - fixes some compilation errors on
	several platforms/distributions

	* acinclude.m4:
	- added some more Qt4-search-paths and removed deprecated ones
	- cleaned up a lot all the Qt4-detection code and made ready for
	  64 bit platforms
	- also check for Qt's rcc-utility
	- fixed typos in lrelease and lupdate-detection

2007-07-18	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/ica_main.cpp:
	include version-info in tooltip of system-tray-icon

	* lib/include/system_key_trapper.h:
	* lib/src/system_key_trapper.cpp:
	* lib/src/lock_widget.cpp:
	win32: disable *all* keys while screen is being locked

2007-07-04	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* Makefile.svn:
	removed LUPUS-references

	* utils-win32/userinfo.cpp:
	more error-handling

	* lib/src/dsa_key.cpp:
	applied patch from Diego J. Brengi <brengi/at/inti/dot/gov/dot/ar> for
	also accepting keys that were generated using ssh-keygen

2007-06-09	Andriano Rino <rino-andr/at/users/dot/sourceforge/dot/net>

	* ima/resources/it.ts:
	* ima/resources/it.qm:
	* lib/resources/it.ts:
	* lib/resources/it.qm:
	updated Italian localization and removed obsolete
	translations

2007-06-04	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	made 1.0.3 release

	* lib/Makefile.am:
	fixed missing SOURCE-entry for italc_core.dll

	* ica/win32/src/Log.h:
	* ica/win32/src/Log.cpp:
	* lib/include/local_system.h:
	* lib/src/local_system.cpp:
	made log-level of WinVNC being equal to iTALC log-level

	* ica/src/isd_server.cpp:
	use QProcess::startDetached() instead of QProcess::start() for
	launching commands

	* ima/src/classroom_manager.h:
	* ima/src/classroom_manager.cpp:
	* ima/src/client.cpp:
	* ima/src/dialogs.cpp:
	* ima/src/dialogs.h:
	renamed class multiLogonDialog to remoteLogonDialog

	* ima/dialogs/multi_logon.ui:
	* ima/artwork/multilogon*png:
	renamed to "remotelogon*"

2007-06-01	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/main_window.h:
	* ima/src/main_window.cpp:
	* ima/src/client.cpp:
	stop demo on clients after student showed demo

	* ica/src/ica_main.cpp:
	create QSystemTrayIcon-object on stack rather than heap for being
	destroyed properly at exit - fixes problem with non-disappearing icon
	after exit on win32

2007-05-30	Dirk Zoellner <dirkzoellner/at/users/dot/sourceforge/dot/net>

	* ima/src/main_window.cpp:
	* ima/src/main_window.h:
	added fullscreen-functionality via F11

	* ima/src/classroom_manager.cpp:
	- save window-position in personal-config, move to (0,0) if no items
	  in configuration exist
	- set sane default-size for main-window if no according configuration
	  exists
	- in client-treeview display remote IP of client rather local IP

	* ima/src/remote_control_widget.cpp:
	* ima/src/main_window.cpp:
	apply API-changes of toolButton-class

	* ima/src/tool_button.cpp:
	* ima/src/tool_button.h:
	added alternative label functionality

2007-05-26	Dirk Zoellner <dirkzoellner/at/users/dot/sourceforge/dot/net>

	* ima/src/dialog.cpp:
	changed clientsettings-dialog, always focus on name, only for
	convenience purposes

2007-05-26	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/src/isd_connection.cpp:
	re-activated old connectToHost-method and added support for
	non-blocking connect etc.

2007-05-25	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/ica.qrc:
	* italc/ica.qrc:
	* lib/italc_core.qrc:
	* setup/ica.qrc:
	added Norwegian localization-files

2007-05-24	Asbj�rn Stokka <asbjorn/dot/stokka/at/lyse/dot/net>

	* ica/resources/nn.ts:
	* ica/resources/nn.qm:
	* ima/resources/nn.ts:
	* ima/resources/nn.qm:
	* lib/resources/nn.ts:
	* lib/resources/nn.qm:
	* setup/resources/nn.ts:
	* setup/resources/nn.qm:
	added Norwegian localization

2007-05-21	Andriano Rino <rino-andr/at/users/dot/sourceforge/dot/net>

	* ica/resources/it.ts:
	* ima/resources/it.ts:
	* ima/resources/it.qm:
	* lib/resources/it.ts:
	* lib/resources/it.qm:
	* setup/resources/it.ts:
	* setup/resources/it.qm:
	updated Italian localization to svn 180 and removed obsolete
	translations

2007-05-20	Dirk Zoellner <dirkzoellner/at/users/dot/sourceforge/dot/net>
	
	* lib/src/local_system.cpp:
	- modified log-system to work with loglevels
	- changed log-directory to /tmp resp. C:\temp

	* setup/src/dialogs.cpp:
	- added key for loglevel: 0 silent, 2 fatal, 4 critical, 6 warning,
	  9 debug, default is 6 
	
2007-05-20	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/Makefile.am:
	mention DLL as library so that it gets removed on "make clean"

2007-05-18	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/dialogs/client_settings.ui:
	* ima/src/client.cpp:
	* ima/src/classroom_manager.cpp:
	- fixed/improved some texts/descriptions ("client" -> "computer")
	- added "hide-teacher-computers"-function to context-menu of classrooms
	
	* ima/resources/de.ts:
	* ima/resources/de.qm:
	updated German localization

2007-05-17	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/resources/fr.ts:
	* ica/resources/fr.qm:
	* ima/resources/fr.ts:
	* ima/resources/fr.qm:
	* lib/resources/fr.ts:
	* lib/resources/fr.qm:
	* setup/resources/fr.ts:
	* setup/resources/fr.qm:
	updated French localization from Guillaume Allegre
	(guillaume/dot/allegre/at/silecs/dot/info)

	* ima/src/remote_control_widget.h:
	* ima/src/remote_control_widget.cpp:
	* ima/src/main_window.h:
	* ima/src/main_window.cpp:
	reload snapshot-list after taking snapshot in remote-control-/
	view-live-mode

	* lib/src/dsa_key.cpp:
	fixed case where ICA would quit on authentication with bad signed data

	* ima/resources/de.ts:
	* ima/resources/de.qm:
	updated German localization

	* ima/src/classroom_manager.cpp:
	* ima/src/classroom_manager.h:
	added "hide teacher-clients"-feature in classroom-menu

	* ima/resources/greenled.png:
	* ima/italc.qrc:
	* ima/src/classroom_manager.cpp:
	highlight current classroom in classroom-menu

	* ima/dialogs/client_settings.ui:
	* ima/src/dialogs.cpp:
	* ima/src/classroom_manager.cpp:
	* ima/src/client.h:
	* ima/src/client.cpp:
	added "type"-property to clients to have another distinction between
	different clients

	* ima/src/classroom_manager.cpp:
	* ima/src/client.cpp:
	* ima/src/client.h:
	more clear identifiers in enums

	* ima/src/classroom_manager.cpp:
	* ica/src/ica_main.cpp:
	cleanups

	* ica/src/local_system_ica.cpp:
	fixed compiling error

2007-05-14	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/resources/mouse.png:
	removed

	* ima/italc.qrc:
	* ima/resources/no_mouse.png:
	* ima/src/remote_control_widget.cpp:
	better icon for blocked input

	* lib/include/isd_base.h:
	cleanups

	* ica/win32/src/VNCHooks/SharedData.h:
	* ica/win32/src/VNCHooks/SharedData.cpp:
	* ica/win32/src/VNCHooks/VNCHooks.cpp:
	* ica/win32/src/vncServer.cpp:
	* ica/src/local_system_ica.h:
	* ica/src/local_system_ica.cpp:
	* ica/src/isd_server.cpp:
	* ima/src/remote_control_widget.h:
	* ima/src/remote_control_widget.cpp:
	* lib/include/isd_base.h:
	* lib/include/isd_connection.h:
	* lib/src/isd_connection.cpp:
	implemented "lock student"-functionality in remote-control

	* ima/src/main_window.h:
	* ima/src/main_window.cpp:
	* ima/src/client.cpp:
	do not freeze client-update-threads while remote-control is running
	and do nothing instead - fixes several bugs such as non-working
	student-demo etc.

	* ica/src/isd_server.cpp:
	when doing ItalcAuthChallengeViaAuthFile-authentication, flush
	temporary file before requesting response

2007-05-11	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* Makefile.svn:
	fixed automake-call to ignore warnings

	* setup/Makefile.am:
	link Linux-version against static version of library

	* lib/Makefile.am:
	fixed missing resource-file-object in shared library

	* lib/resources/de.ts:
	* lib/resources/de.qm:
	updated German localization

2007-05-10	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* Makefile.svn:
	ignore errors (which are not real errors) from automake

	* lib/src/ivs_connection.cpp:
	* ima/src/remote_control_widget.cpp:
	* ima/src/remote_control_widget.h:
	display user-name in toolbar - closes #1711333

	* ima/src/remote_control_widget.cpp:
	* ima/src/remote_control_widget.h:
	added snapshot-functionality in remote-control/view-live mode

	* lib/include/ivs_connection.h:
	* lib/src/ivs_connection.cpp:
	* ima/src/client.cpp:
	moved snapshot-functionality into ivsConnection-class

	* ica/win32/src/vncDesktop.cpp:
	* ica/win32/win32vnc.cpp:
	disabled TightVNC's new terminal-session-support

	* setup/src/dialogs.cpp:
	when copying file add absolute paths to source-file-names
	closes #1704173

2007-05-07	Andriano Rino <rino-andr/at/users/dot/sourceforge/dot/net>

	* ima/resources/it.ts:
	* ima/resources/it.qm:
	better Italian translation of supporter-role

2007-05-06	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/Makefile.am:
	make library being installed at proper place under Linux

2007-05-02	Dirk Zoellner <dirkzoellner/at/users/dot/sourceforge/dot/net>

	* build_mingw32:
	works now without modifying PATH-variable
	
2007-05-02	Andriano Rino <rino-andr/at/users/dot/sourceforge/dot/net>

	* ica/resources/it.ts:
	* ica/resources/it.qm:
	* ima/resources/it.ts:
	* ima/resources/it.qm:
	* lib/resources/it.ts:
	* lib/resources/it.qm:
	* setup/resources/it.ts:
	* setup/resources/it.qm:
	updated Italian localization and removed obsolete translations

2007-05-01	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/src/local_system.cpp:
	use "halt" rather than "poweroff" for halting Linux-systems

	* ima/src/classroom_manager.cpp:
	sort items in ascending order per default

	* ica/win32/src/vncEncodeRRE.cpp:
	* ica/win32/src/VSocket.cpp:
	* ica/win32/src/vncDesktop.cpp:
	* ica/win32/src/VideoDriver.cpp:
	* ica/win32/src/vncEncoder.cpp:
	* ica/win32/src/vncRegion.cpp:
	* ica/win32/src/vncService.cpp:
	* ica/win32/src/vncKeymap.cpp:
	* ica/win32/src/vncEncodeHexT.cpp:
	* ica/win32/src/vncClient.cpp:
	fixes & cleanups to compile without any warnings at all

	* ica/win32/src/vncServer.h:
	* ica/win32/src/vncServer.cpp:
	* ica/win32/src/vncDesktop.cpp:
	* ica/win32/src/TsSessions.h:
	* ica/win32/src/TsSessions.cpp:
	* ica/win32/src/DynamicFn.cpp:
	* ica/win32/src/DynamicFn.h:
	* ica/win32/src/resource.cpp:
	* ica/win32/win32vnc.cpp:
	* ica/Makefile.am:
	merged changes from TightVNC-upstream

2007-04-30	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/Makefile.am:
	fixed variable-name

	* ica/ica.1:
	* ima/italc.1:
	updated manpages

2007-04-29	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/Makefile.am:
	fixed variable-name

	* lib/src/vncview.cpp:
	show local cursor when only viewing

	* ica/src/demo_client.cpp:
	* ima/src/remote_control_widget.cpp:
	* ima/src/remote_control_widget.h:
	* lib/include/system_key_trapper.h:
	* lib/include/vncview.h:
	* lib/src/system_key_trapper.cpp:
	* lib/src/vncview.cpp:
	made view-only-property of vncView-class switchable and added button
	in remote-control-view to be able to switch between "remote control"
	and "view only"

	* ima/src/client.cpp:
	* ima/src/main_window.cpp:
	* ima/src/main_window.h:
	introduced mechanisms for blocking all client-update-threads via a
	wait-condition while remote-control is active for not wasting
	CPU-time - should speed up remote-control a bit

	* ima/src/classroom_manager.cpp:
	* ima/dialogs/config.ui:
	defaulted update-interval from 1 to 2 for not causing too high
	CPU-load

	* ima/src/client.cpp:
	in paintEvent() only redraw requested rect of state-pixmap - possible
	speed-up

	* ima/src/main_window.cpp:
	* ima/src/classroom_manager.h:
	* ima/src/client.cpp:
	* ima/src/client.h:
	cleanups

	* lib/src/system_key_trapper.cpp:
	- set m_enabled in setEnabled()-method
	- decrement s_refCnt before accessing it

	* lib/Makefile.am:
	fixed entry for inject.h

2007-04-26	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* lib/include/vncview.h:
	* lib/src/vncview.cpp:
	on focus-out-event release keyboard-grab and system-key-trapping and
	get them back at focus-in-event

	* lib/include/system_key_trapper.h:
	* lib/src/system_key_trapper.cpp:
	added possibility to dynamically enable or disable trapping of
	system-keys

	* ima/src/tool_button.cpp:
	draw button more dark if checked/pressed

	* ima/src/remote_control_widget.cpp:
	* ima/src/remote_control_widget.h:
	- reworked texts in toolbar
	- when in window mode, show maximized per default
	- lot of cleanups

	* setup/src/dialogs.cpp:
	fixed installation of italc_core.dll under win32

	* ima/src/remote_control_widget.cpp:
	do not resize to desktop-geometry in window-mode

2007-04-22	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/main_window.cpp:
	* ima/src/main_window.h:
	* ima/src/client.cpp:
	do not reload clients if remote-control is active

	* common/:
	renamed to "lib"

	* common/include/local_system.h:
	* common/include/isd_connection.h:
	* common/include/isd_base.h:
	* common/src/isd_connection.cpp:
	* common/src/local_system.cpp:
	* common/italc_core.qrc:
	* common/resources/es.ts:
	* common/resources/fr.ts:
	* common/resources/it.ts:
	* common/resources/de.ts:
	* ica/src/ica_main.cpp:
	* ica/src/isd_server.cpp:
	* ica/src/isd_server.h:
	changes for new library-infrastructure

	* ica/src/progress_widget.cpp:
	* ica/src/progress_widget.h:
	* ica/src/lzoconf.h:
	* ica/src/vncview.cpp:
	* ica/src/vncview.h:
	* ica/src/minilzo.c:
	* ica/src/minilzo.h:
	* ica/src/system_key_trapper.cpp:
	* ica/src/system_key_trapper.h:
	* ica/src/lock_widget.cpp:
	* ica/src/lock_widget.h:
	moved to common

	* ica/Makefile.am:
	* ima/Makefile.am:
	* setup/Makefile.am:
	* common/Makefile.am:
	* setup/src/main.cpp:
	made all code in common-dir a shared library which all components are
	linked against

	* ima/italc.qrc:
	* ima/src/main.cpp:
	* ima/src/tool_button.h:
	* ima/src/main_window.h:
	* ima/src/tool_button.cpp:
	adapted toolbar from remote-control

	* ima/src/main.cpp:
	* ima/src/main_window.cpp:
	* ima/src/client.cpp:
	* ima/src/support_widget.cpp:
	* ima/src/remote_control_widget.cpp:
	* ima/src/remote_control_widget.h:
	* ima/Makefile.am:
	moved remote-control-feature from ICA to IMA

2007-04-21	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/ica.qrc:
	* ica/resources/mouse.png:
	* ica/resources/up.png:
	* ica/src/remote_control_widget.cpp:
	* ica/src/remote_control_widget.h:
	* ica/src/vncview.cpp:
	* ica/src/vncview.h:
	complete redesign of toolbar and buttons

	* common/src/ivs_connection.cpp:
	enqueue cursor-encodings in an earlier stage

	* build_mingw32:
	* ica/Makefile.am:
	* ica/win32/win32vnc.cpp:
	* ica/win32/src/vncDesktop.cpp:
	* ica/win32/src/VNCHooks/VNCHooks.cpp:
	put vnc-hook-stuff into separate DLL-file to make hooks work as
	expected - closes #1698534 and probably fixes some other problems

	* ica/src/vncview.cpp:
	set widget-cursor for vncView to according remote-cursor instead of
	drawing it - speeds thing a bit up

	* ica/src/vncview.h:
	* ica/src/remote_control_widget.cpp:
	correct titlebar caption - closes #1700553

	* ica/win32/src/vncServer.cpp:
	tweaked default-settings a bit

	* ica/win32/src/VideoDriver.h:
	fixed non-ANSI-conform code

	* ica/win32/src/VNCHooks/SharedData.cpp:
	added SHARED-attribute to make all variables reside in a different
	shared segment

2007-04-20	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/src/local_system.cpp:
	also print log-messages to stdout

	* ica/src/system_key_trapper.h:
	* ica/src/system_key_trapper.cpp:
	added support for trapping Alt+Space - closes #1704091

	* common/src/local_system.cpp:
	* common/include/local_system.h:
	* ica/src/ica_main.cpp:
	renamed "localSystem::parameterSetting" to "localSystem::parameter"

	* ica/src/ica_main.cpp:
	added "-v" and "--version"-parameter

2007-04-13	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/dialogs/config.ui:
	* ima/src/config_widget.cpp:
	* ima/src/classroom_manager.h:
	* ima/src/classroom_manager.cpp:
	* ima/src/client.cpp:
	added setting for client-double-click-action

2007-04-12	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/include/local_system.h:
	* common/src/local_system.cpp:
	* ica/src/ica_main.cpp:
	added possibility to set parameters such as -ivsport and -isdport
	using settings in either /etc/qt4/iTALC Solutions/iTALC.conf (Linux)
	or registry (win32)

	* ima/Makefile.am:
	* ima/data/italc.desktop.in:
	* ima/data/italc.in:
	change paths inside these menu-files accordingly to prefix

	* ima/data/italc.xpm:
	* ima/Makefile.am:
	added XPM-file for being installed into $prefix/share/pixmaps -
	replaces PNG-file which is now installed into $prefix/share/icons

	* italc.spec.in:
	updated everything for being usable with re-developed iTALC

2007-04-04	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	made 1.0.2 release

	* build_mingw32:
	build with MMX-support per default

	* setup/src/dialogs.h:
	* setup/src/dialogs.cpp:
	* setup/src/main.cpp:
	when doing auto-install do not display information-messages concerning
	service-(un)registration

	* common/src/system_service.cpp:
	* common/include/system_service.h:
	added quiet-option for being able to supress information-messages

2007-04-04	Andriano Rino <rino-andr/at/users/dot/sourceforge/dot/net>

	* ica/resources/it.ts:
	* ica/resources/it.qm:
	* ima/resources/it.ts:
	* ima/resources/it.qm:
	* setup/resources/it.ts:
	* setup/resources/it.qm:
	updated Italian localization and removed obsolete translations

2007-04-03	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/resources/de.ts:
	* ica/resources/de.qm:
	updated German localization

	* setup/src/dialogs.cpp:
	- fixed typo which made key-import not working - closes #1686845
	- added "net stop icas"-call which might be necessary when updating
	  old installations

	* ica/src/isd_server.h:
	* ica/src/isd_server.cpp:
	show messages about failed authentication via system-tray-icon

	* ica/src/ica_main.h:
	* ica/src/ica_main.cpp:
	changed several stuff concerning QSystemTray-instantiation

	* ica/src/ica_main.cpp:
	install event-filter in QCoreApplication and handle
	WM_ENDSESSION-messages for not terminating on user-logoff (which is
	the case if there was some desktop-interaction) - closes #1686921

	* common/include/messagebox.h:
	* common/src/messagebox.cpp:
	added static trySysTrayMessage(...)-method for being able to display
	several stuff in system-tray-icon (if available) in an easy way

2007-03-31	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	fixed small bug which made --with-linux not working

2007-03-29	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/win32/src/WinVNC.cpp:
	* ica/win32/win32vnc.cpp:
	made "-ivsport"-parameter functional under win32, closes #1688198

	* ica/win32/src/vncDesktop.h:
	* ica/win32/src/vncDesktop.cpp:
	* ica/win32/src/vncInstHandler.cpp:
	merged changes from TightVNC-SVN

2007-03-29	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	made 1.0.1 release

	* ica/resources/de.ts:
	* ica/resources/es.ts:
	* ica/resources/it.ts:
	* ica/resources/fr.ts:
	fixed translation of logon-dialog-accellerators

	* common/include/isd_connection.h:
	* common/src/isd_connection.cpp:
	* ima/src/client.h:
	* ima/src/client.cpp:
	reload username-tooltip regularly

	* common/src/local_system.cpp:
	win32: - create C:\WINDOWS if it does not exist as otherwise there are
	         strange errors with iTALC Master
	       - partly rewrote logon-code

	* ica/win32/src/stdhdrs.cpp:
	only log warnings and more severe messages - fixes security issue
	where faked keysyms were logged, e.g. key-presses of logon-function
	were logged!

2007-03-22	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	made 1.0.0 release

	* common/src/system_service.cpp:
	- win32: use ChangeServiceConfig2( ... ) instead of calling "sc" which
	  might not exist on target system
	- start service using "net"-command
	- several small fixes

	* common/src/dsa_key.cpp:
	remove existing key-files before saving them

	* common/src/local_system.cpp:
	- disable caps-lock when logging on user under win32
	- use ExitWindowsEx instead of InitiateSystemShutdown - hopefully also
	  shutsdown W2K properly

	* ima/src/client.cpp:
	decreased font-size for messages like "Host not reachable"

	* ima/src/main_window.cpp:
	* common/src/isd_connection.cpp:
	do not create new key-pair if private key could not be loaded and show
	message instead

	* ica/src/ica_main.cpp:
	- run "man ica" if ica is launched with option "-h"
	- fixed bug in argument-processing

	* ima/src/tool_button.cpp:
	always draw button-label with black color

	* ima/resources/de.ts:
	* ima/resources/de.qm:
	* setup/resources/de.ts:
	* setup/resources/de.qm:
	updated German localization and removed obsolete translations

	* setup/dialogs/page_setup_finished.ui:
	* setup/src/dialogs.cpp:
	start service after registering it

	* setup/dialogs/page_security_options.ui:
	* setup/src/dialogs.h:
	* setup/src/dialogs.cpp:
	added possibility to keep all keys during installation

2007-03-20	Andriano Rino <rino-andr/at/users/dot/sourceforge/dot/net>

	* ica/resources/it.ts:
	* ica/resources/it.qm:
	* ima/resources/it.ts:
	* ima/resources/it.qm:
	* setup/resources/it.ts:
	* setup/resources/it.qm:
	updated Italian localization and removed obsolete translations

2007-03-13	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/resources/de.ts:
	* ica/resources/de.qm:
	* ima/resources/de.ts:
	* ima/resources/de.qm:
	updated German localization

	* ima/dialogs/overview.ui:
	* ima/src/user_list.h:
	* ima/src/main_window.h:
	* ima/src/classroom_manager.h:
	* ima/src/config_widget.cpp:
	* ima/src/user_list.cpp:
	* ima/src/dialogs.cpp:
	* ima/src/snapshot_list.cpp:
	* ima/src/main_window.cpp:
	* ima/src/client.cpp:
	* ima/src/classroom_manager.cpp:
	- renamed "client-manager" to "classroom-manager"
	- renamed all occurences of "client" to "computer"
	- made tree-widget in classroom-manager sortable
	- simplified/improved/corrected help-texts

	* ima/Makefile.am:
	only include files from common/src/ in lupdate-run which are actually
	used by IMA

	* ima/src/client_manager.h:
	* ima/src/client_manager.cpp:
	* ima/resources/client_manager.png:
	* ima/resources/client_manager_48.png:
	* ima/italc.qrc.am:
	* ima/Makefile.am:
	moved to classroom_manager*.*

	* ima/src/main_window.cpp:
	added short-titles for all buttons in action-toolbar

	* ima/resources/logo.png:
	* ima/italc.qrc:
	* ima/dialogs/about.ui:
	added and integrated iTALC-logo

	* ima/src/tool_button.h:
	* ima/src/tool_button.cpp:
	- removed annoying dissolve-effect
	- improved design of tooltips
	- added "short-title" which is displayed on tool-buttons
	- decreased "roundness-factor" of tooltips from 3000 to 2000

	* TODO:
	- cleaned up
	- added roadmap

	* ima/Makefile.am:
	* ima/src/client_manager.cpp:
	removed references to progressInformation-dialog

	* ima/src/progress_information.h:
	* ima/src/progress_information.cpp:
	removed

	* setup/src/dialogs.cpp:
	- removed "wake.exe" from file-list
	- set "back" and "cancel"-button disabled when on last page

	* ima/dialogs/client_settings.ui:
	disabled widgets which are currently unused

	* ica/src/lock_widget.cpp:
	added widget-flag Qt::X11BypassWindowManagerHint again together with
	several fixes making it work flawless

	* ica/src/remote_control_widget.h:
	* ica/src/remote_control_widget.cpp:
	- removed non-fullscreen-view
	- use widget-flag Qt::X11BypassWindowManagerHint to make window always
	  being at top

	* common/src/local_system.cpp:
	more clean (but maybe less compatible) way to logout user under Linux

	* ica/src/ica_main.cpp:
	- more helpfull output on key-creation
	- allow key-creation without creating a QApplication in systemService-
	  class

	* common/src/dsa_key.cpp:
	- when saving private key, make it only readable by user and group
	- when saving public key, make it only read- but not writeable by
	  user, group and others

	* configure.in:
	* ica/Makefile.am:
	* ima/Makefile.am:
	* setup/Makefile.am:
	do complete linking against OpenSSL-libraries

2007-03-12	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/client_manager.cpp:
	* ima/src/config_widget.cpp:
	save correct demo-network-interface even if selected interface has
	more than one addresses

	* ima/src/client_manager.cpp:
	do not provide client-demo in context-menu of classrooms

	* common/include/isd_connection.h:
	cleanups

	* common/src/local_system.cpp:
	new organization-domain

	* ica/Makefile.am:
	* ica/src/system_service.cpp:
	* ica/src/system_service.h:
	moved to common/src/system_service.cpp and
	common/include/system_service.h

	* utils-win32/userinfo.cpp:
	small fixes

2007-03-12	Andriano Rino <rino-andr/at/users/dot/sourceforge/dot/net>

	* ica/resources/it.ts:
	* ica/resources/it.qm:
	* ima/resources/it.ts:
	* ima/resources/it.qm:
	* setup/resources/it.ts:
	* setup/resources/it.qm:
	updated Italian localization

2007-03-08	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/ica.qrc:
	* ima/italc.qrc:
	* setup/setup.qrc:
	added French localization-files

	* configure.in:
	added switch for debugging

2007-03-07	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/ica.qrc:
	* ima/italc.qrc:
	* setup/setup.qrc:
	added Italian localization-files

	* ima/Makefile.am:
	* ima/data/italc.ico
	* ima/data/italc.png
	* ima/data/italc.desktop
	* ima/data/italc:
	added several files for better desktop-integration under Linux

	* ima/Makefile.am:
	* ima/italc.ico:
	moved ima/italc.ico to ima/data/italc.ico

	* INSTALL:
	updated

	* acinclude.m4:
	evaluate $host instead of $build

	* build_mingw32:
	do not pass --build for allowing cross-compile without WINE being
	installed

2007-03-05	Andriano Rino <rino-andr/at/users/dot/sourceforge/dot/net>

	* ica/resources/it.ts:
	* ica/resources/it.qm:
	* ima/resources/it.ts:
	* ima/resources/it.qm:
	* setup/resources/it.ts:
	* setup/resources/it.qm:
	added Italian localization

2007-03-02	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/lock_widget.cpp:
	removed widget-flag Qt::X11BypassWindowManagerHint as it caused
	problems on some test systems

2007-03-01	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	made RC4 release

	* configure.in:
	- added several stuff from x11vnc-0.8.4/configure.ac
	- print out error if XTEST-extension could not be found under Linux
	- removed "-ansi"-flag
	- added v4l-check again

	* ica/x11/README:
	* ica/win32/README:
	added README's with copyright-notices

	* ica/x11/x11vnc/*
	* ica/x11/x11vnc.c:
	integrated x11vnc 0.8.4

	* acinclude.m4:
	several fixes for less problems with cross-compiling iTALC (thanks to
	Timshell Knoll-Miller)

	* ima/Makefile.am:
	added italc.ico to EXTRA_DIST (thanks to Timshell Knoll-Miller)

	* ima/src/client.cpp:
	close connection to invisible clients (thanks to Timshell Knoll-Miller)

	* ima/src/client_manager.cpp:
	do not show all clients if no personal-config exists (thanks to Timshell
	Knoll-Miller)

	* setup/Makefile.am:
	added setup.ico to EXTRA_DIST (thanks to Timshell Knoll-Miller)

	* setup/src/dialogs.cpp:
	- include <QtXml/QtXml> instead of <Qt/QtXml> - fixes build-problem
	  reported by an user
	- correctly create installation-path in auto-setup-mode
	- export public key properly if it does not exist

	* ica/Makefile.am:
	- several small fixes in build-system
	- added missing entry for a header-file to sources-list
	- removed obsolete files from sources-list

	* ica/x11/rfb/default8x16.h:
	prevent from being included more than once

	* ica/src/local_system.cpp:
	after registering service under win32, change failure-config of it to
	make it being restart each time, it is stopped, e.g. at user-logoff
	(the problem had been reported by some users)

	* ica/win32/src/vncClient.cpp:
	* ica/win32/src/vncServer.h:
	corrected #include-statements

	* ica/win32/vncCORBAConnect.h:
	* ica/win32/Windows.h:
	removed as caused troubles under operating systems that do not have
	case-sensitive filename-handling

	* common/src/local_system.cpp:
	handle additional state of logon-dialog under win32 (thanks to
	Timshell Knoll-Miller)

2007-02-28	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/resources/fr.ts:
	* ica/resources/fr.qm:
	* ima/resources/fr.ts:
	* ima/resources/fr.qm:
	* setup/resources/fr.ts:
	* setup/resources/fr.qm:
	added French localization from Guillaume Allegre
	(guillaume/dot/allegre/at/silecs/dot/info)

2007-02-22	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/src/isd_connection.cpp:
	fixed typo

	* common/src/local_system.cpp:
	* utils-win32/userinfo.cpp:
	rewrote userinfo for being invoked once and continuously printing
	user-name - solves problem with high CPU-load

	* setup/src/dialogs.cpp:
	when invoking installed "ica.exe", pass arguments in separate
	QStringList for not running into problems if installation-path
	contains spaces - fixes several bugs concerning key-creation and
	service-registration

	* ima/src/client_manager.cpp:
	remember state of main-window (maximized/normal)

	* ima/resources/de.ts:
	* ima/resources/de.qm:
	updated German localization

2007-02-19	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	made RC3 release

	* ima/src/main_window.h:
	* ima/src/main_window.cpp:
	- added flag which is set upon exit
	- proper destruction of whole application on window-close
	- do not change global client mode as it's done by clients individually

	* ima/src/client.h:
	* ima/src/client.cpp:
	- made update-thread eventloop-based for better scheduling and less
	  potential problems
	- do not set m_mode to Mode_FullscreenDemo in all demo-modes - fixes
	  bug which made it impossible to change from window- to fullscreen-demo
	  directly
	- everywhere pass m_mainWindow->localISD() as parameter for
	  changeMode(...) to fix potential crashes

	* ica/src/isd_server.cpp:
	do not explicitely delete m_demoServer as this should be done per
	connection - fixes bug which crashed ICA in several cases

	* common/src/local_system.cpp:
	completely rewritten code for running userinfo.exe under win32 as
	QProcess-class is buggy and caused several Windows-processes to hang
	when being used the way done in iTALC - should fix explorer-freezes
	and many more

	* common/src/isd_connection.cpp:
	use QTcpSocket::connect() rather than own methods as they do not time
	out

2007-02-10	Mario Izquierdo <mariodebian/at/gmail/dot/com>

	* ica/resources/es.ts:
	* ica/resources/es.qm:
	* ima/resources/es.ts:
	* ima/resources/es.qm:
	added/updated Spanish localization

2007-02-03	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/system_key_trapper.cpp:
	disable sticky-keys and according confirmation-dialog while
	system-keys are trapped - fixes issue where users could cheat while
	screen is locked by pressing shift 5 times

2007-02-01	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/client.cpp:
	* ima/src/client.h:
	changed title of client-window, now only hostname + classroom are
	displayed - user-name is as usual displayed as tooltip

	* setup/resources/de.qm:
	* setup/resources/de.ts:
	updated German localization

	* setup/src/dialogs.cpp:
	* setup/src/dialogs.h:
	if exported-key already exists, ask whether to overwrite and if so do
	so instead of failure silently

2007-01-20	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/x11/x11vnc/x11vnc.1:
	removed as accidently added to repo somewhen

	* ima/src/client_manager.cpp:
	when auto-arranging windows, include decoration-width and -height in
	calculation - fixes bug described in
	http://sourceforge.net/forum/message.php?msg_id=4110695

	* ima/src/tool_button.cpp:
	set button-title as text - if toolbar is not completely visible, a
	button on the right opens a menu with actions which did not fit into
	available space - each menu-item is labeled with button-title and if
	it is not set, there're only empty items...

2007-01-18	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/main_window.cpp:
	disable action for showing/hiding toolbar

2007-01-15	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* setup/src/dialogs.h:
	* setup/src/dialogs.cpp:
	fixed bug which made auto-setup not work if
	iTALC-installation-directory was not existing

2007-01-09	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* setup/dialogs/page_setup_finished.ui:
	* setup/src/dialogs.h:
	* setup/src/main.cpp:
	* setup/src/dialogs.cpp:
	first initial (incomplete) support for auto-setup

2007-01-07	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	made 1.0.0.0-rc2 release

	* INSTALL:
	added missing build-requirement

	* Makefile.am:
	added some "rm -f"-calls to clean-target for not leaving files created
	during build-process

	* setup/Makefile.am:
	marked setup as not-installable target

	* ica/Makefile.am:
	* italc/Makefile.am:
	added manpages to EXTRA_DIST-variable

	* common/Makefile.am:
	explicitely list files for EXTRA_DIST instead of using wildcards, thus
	files built by configure are not packaged into distribution anymore

	* Makefile.svn:
	commented out make-call for LUPUS

2007-01-06	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/ica.rc.in:
	* ima/italc.rc.in:
	* setup/setup.rc.in:
	fixes and copyright-enhancements

	* ica/src/ica_main.cpp:
	* ica/src/ivs.cpp:
	let the user pass more options for x11vnc

	* ica/ica.1:
	* ica/Makefile.am:
	* ima/italc.1:
	* ima/Makefile.am:
	added manpages

2007-01-05	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* INSTALL:
	rewritten for new version

2007-01-02	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* README:
	* ima/dialogs/about.ui:
	* ima/resources/splash.png:
	extended copyright-notice from 2006 to 2007

2006-12-26	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/src/dsa_key.cpp:
	* common/src/isd_base.cpp:
	* common/src/isd_server.cpp:
	* common/src/ivs_connection.cpp:
	* common/src/local_system.cpp:
	* ica/win32/src/Log.h:
	* ica/win32/src/Log.cpp:
	* ica/win32/src/stdhdrs.cpp:
	* ica/src/demo_server.cpp:
	* ica/src/ica_main.cpp:
	* ica/src/isd_server.cpp:
	* ica/src/system_service.cpp:
	use Qt-debugging-techniques rather than printf & co

	* common/src/local_system.cpp:
	- under win32, handle logoff-events for not stopping service at logoff
	- added qt-message-handler for logging messages into file
	- do not create user-poll-thread when not building ICA

2006-12-24	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* acinclude.m4:
	added -L$QTDIR/lib/qt4 to linker-flags to make iTALC compile under
	Gentoo

2006-12-18	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/isd_server.cpp:
	show access-confirmation-dialog in foreground

	* ima/src/client_manager.cpp:
	* ima/src/main_window.cpp:
	save and restore state of main-window

	* ima/src/client_manager.cpp:
	always allow switching to overview-mode in changeGlobalClientMode()

2006-12-16	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/dialogs/overview.ui:
	unique names for labels which avoids uic-warnings

	* ica/src/isd_server.cpp:
	do not try to make a reverse-lookup on IPs when doing
	host-based-authentication

	* ica/Makefile.am:
	* ica/win32/win32vnc.cpp:
	* ica/win32/vncMenu.h:
	* ica/win32/src/*:
	integrated new sources from TightVNC 1.3.8

	* common/src/isd_connection.cpp:
	- self-written code for connecting to socket as Qt's
	  QAbstractSocket::connectToHost() does lot of extra stuff (ghost
	  connections etc) which also confuses the different servers sometimes
	- when doint authentication, check whether number of sec-types is
	  greater then zero and return (instead of crash) if so

2006-12-13	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/include/isd_connection.h:
	added NULL-check for m_socket in hasData()-method

2006-12-11	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	made 1.0.0.0-rc1 release

	* utils-win32/userinfo.cpp:
	fixed crash when being called as local administrator

	* ima/src/main_window.cpp:
	bugfixes in mainWindow::changeGlobalClientMode( ... )

	* ima/src/client.cpp:
	decreased font-size for embedded information from 20 to 14

	* ima/src/snapshot_list.h:
	* ima/src/snapshot_list.cpp:
	* ima/dialogs/snapshots.ui:
	- completely revised snapshot-workspace using designer
	- when viewing snapshot, use scroll-area
	- preview etc. is now working again

2006-12-10	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/resources/de.ts:
	* ica/resources/de.qm:
	* ima/resources/de.ts:
	* ima/resources/de.qm:
	* setup/resources/de.ts:
	* setup/resources/de.qm:
	updated German localization

	* ima/src/client.cpp:
	- initialize m_classRoomItem with NULL - makes iTALC work with Qt 4.2.2
	- when constructing snapshot-filename, add directory *after* replacing
	  all occurences of ":" with "-" as this also replaces ":" in "X:\"
	  under win32 which is not really desired...
	- again new implementation of client::clientDemo() - starts
	  fullscreen-demo on all clients except the one showing the demo and
	  also presses fullscreen-mode-button in toolbar using new method in
	  mainWindow

	* ima/src/main_window.cpp:
	- save config-files at exit
	- start update-thread with QThread::LowestPriority as not really
	  important

	* ima/src/client_manager.cpp:
	do not save config-files in doCleanupWork(), instead only do so when
	adding/chaning/removing client(s)

	* ima/src/main_window.h:
	added checkModeButton( ... )

	* utils-win32/userinfo.cpp:
	if retrieval of full user name failed, use account-name instead

	* setup/src/dialogs.cpp:
	create shortcut to iTALC-master in start-menu-root

	* configure.in:
	check for ${prefix} before extending CFLAGS etc. - should fix issue
	with make-problems when using older automake-versions

	* common/src/messagebox.cpp:
	* ica/src/remote_control_widget.cpp:
	* ica/src/demo_client.cpp:
	* ica/src/lock_widget.cpp:
	activate window (bring it to forgeground) using
	localSystem::activateWindow()

	* include/local_system.h:
	* common/src/local_system.cpp:
	- added globalStartmenuDir(), windowsConfigPath(), activateWindow()
	- do not logon user under win32 when explorer.exe-process is found
	- snapshot-dir in "My Documents" under win32
	- personalConfigDir(): query application-data-path using
	  windowsConfigPath()

	* common/src/isd_connection.cpp:
	proper cleanup of sockets in destructor

2006-12-08	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/src/local_system.cpp:
	bigger delays between input of user/password/domain under win32

2006-12-05	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/include/isd_base.h:
	* common/src/isd_connection.cpp:
	* ica/src/isd_server.cpp:
	* ima/src/client.h:
	* ima/src/client.cpp:
	* ima/src/client_manager.cpp:
	compat-fixes for new w32-API

	* setup/src/dialogs.cpp:
	make public-key read-only after installing it

2006-12-02	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/main.cpp:
	- small improvement concerning splash
	- removed inclusion of obsolete header-files

	* ima/dialogs/overview.ui:
	bigger height for about-button

	* common/include/rfb/rfbproto.h:
	* ica/Makefile.am:
	fixes for GCC 4.1 (mingw-x)

2006-12-01	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/client_manager.cpp:
	do not sleep in changeGlobalClientMode( ... ) at all as not necessary
	any longer

	* common/src/local_system.cpp:
	fixes concerning logonUser( ... )-implementation under win32

	* ima/src/client.h:
	* ima/src/client.cpp:
	demo of a client is now done by starting a fullscreen-demo on all
	other clients and remote-control this client

	* ica/x11/x11vnc/*:
	integrated latest x11vnc-code

2006-11-30	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* setup/src/dialogs.cpp:
	small fixes concerning progress-dialog

	* common/src/local_system.cpp:
	when saving path to key, replace multiple dir-separators by one
	separator

	* ima/src/user_list.cpp:
	* ima/src/snapshot_list.cpp:
	* ima/src/config_widget.cpp:
	several code-cleanups

	* ica/src/demo_server.cpp:
	fixed some really bad bugs which caused ICA to freeze if
	initialization of even one demo-client failed (demoServerClient::run()
	returned without unlocking m_dataMutex which caused a deadlock if
	slots called from GUI-thread tried to lock the mutex)

	* common/src/local_system.cpp:
	several fixes concerning paths for keys and config-files

	* common/src/isd_connection.cpp:
	fixed typos concerning auto-logon

	* ima/dialogs/multi_logon.ui:
	fixed tab-order

	* ima/src/client_manager.cpp:
	- before writing global/personal config, copy old file to backup and try
	  to copy backup-file back if according file does not exist at startup
	- except for questions, always use own messageBox-class

	* ima/Makefile.am:
	when updating translation, also include files in common src-dir

	* ima/src/main_window.cpp:
	use localSystem::ensurePathExists() in ensureConfigPathExists()

2006-11-27	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/main.cpp:
	do not set mask on splash as not necessary anymore

	* acinclude.m4:
	* configure.in:
	* ima/Makefile.am:
	* ica/Makefile.am:
	* setup/Makefile.am:
	* ima/setup.rc.in:
	* ica/setup.rc.in:
	* setup/setup.rc.in:
	added standard-resource-files for win32-exe-files which contain an
	icon as well as file-descriptions

	* ima/src/client.cpp:
	do not show context-menu of client-windows at startup

	* setup/src/dialogs.cpp:
	- some bugfixes concerning directory-handling
	- pass window() as parent to dialogs
	- remove file before copying them, otherwise QFile::copy() fails
	- other bugfixes

	* ica/src/system_service.cpp:
	load localization even when only doing some service-stuff

2006-11-26	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/resources/de.ts:
	* ica/resources/de.qm:
	* ima/resources/de.ts:
	* ima/resources/de.qm:
	updated German localization

	* ima/src/client.h:
	* ima/src/client.cpp:
	- rewrote code for client-demo - should work now
	- added note to "watch only"-action

	* ima/src/client_manager.h:
	* ima/src/main_window.h:
	* ima/src/main_window.cpp:
	clicking buttons such as "lock screens" or "start-demo" when already
	activated will switch back to view-only-mode - probably avoids some
	confused users...

	* ima/src/client_manager.cpp:
	only sleep in changeGlobalClientMode( ... ) when starting demo

	* common/include/local_system.h:
	* common/include/isd_connection.h:
	* common/src/isd_connection.cpp:
	* common/src/local_system.cpp:
	* ica/src/isd_server.cpp:
	* ima/dialogs/config.ui:
	* ima/dialogs/multi_logon.ui:
	* ima/src/config_widget.h:
	* ima/src/config_widget.cpp:
	* ima/src/client.cpp:
	* ima/src/client_manager.cpp:
	* ima/src/dialogs.h:
	* ima/src/dialogs.cpp:
	* ima/src/main.cpp:
	* ima/src/main_window.h:
	better support for multi-logon under win32 by using accellerators
	for each input-field and also allowing to enter domain-name

	* ica/src/vncview.cpp:
	also display toolbar when user moves cursor to top of screen while
	connecting to host

2006-11-23	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/client.cpp:
	- replaced toolbar by context-menu
	- before remote-controlling, ensure no demo etc. is running

	* common/src/local_system.cpp:
	fixed size of buffer - fixes segfault when broadcasting WOL-packets

	* ima/src/client_manager.cpp:
	increased sleep between mode-changes of clients from 200ms to 400ms

	* ica/src/vncview.cpp:
	- do not change view-port while not connected
	- completely re-worked threading - makes remote-control etc. more
	  stable

	* common/src/local_system.cpp:
	win32: press Escape before sending Alt+Ctrl+Del to make sure an
	already opened login-dialog is closed

	* common/include/local_system.h:
	* common/src/local_system.cpp:
	save paths to keys in setup

	* setup/dialogs/page_key_dirs.ui:
	improved usability in several ways

	* setup/dialogs/page_security_options.ui:
	disable field for input of key-export-dir etc. when selecting "create
	new keys"

	* setup/dialogs/page_select_components.ui:
	for the time being disable checkboxes for components "LUPUS" and
	"docs"

	* setup/Makefile.am:
	pass -mwindows to linker when creating win32-executable

	* setup/resources/qt*qm:
	added Qt-localizations to setup

	* setup/src/main.cpp:
	call localSystem::initialize() at startup

	* setup/dialogs/page_setup_finished.ui:
	* setup/resources/page_setup_finished.png:
	* setup/src/dialogs.cpp:
	added page at the end of setup to inform user about finished
	installation and so on

2006-11-20	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/system_key_trapper.cpp:
	under win32 do not disable taskbar as sometimes remote-control-widget
	does not come to front and as all system-keys are trapped there would
	be no possibility to switch to it or even just quit it

	* ica/src/remote_control_widget.cpp:
	close remoteControlWidget when pressing escape while establishing
	connection

	* ima/dialogs/overview.ui:
	* ima/resources/client_manager_48.png:
	* ima/resources/config_48.png:
	* ima/resources/snapshot_48.png:
	* ima/resources/users_48.png:
	* ima/src/overview.h:
	* ima/src/overview.cpp:
	re-made overview-widget using Qt-designer and added some nice icons

	* ima/dialogs/about.ui:
	* ima/dialogs/client_settings.ui:
	* ima/dialogs/config.ui:
	* ima/dialogs/multi_logon.ui:
	* ima/dialogs/support.ui:
	* ima/dialogs/text_message.ui:
	higher value for spacing and margin of several layouts for better
	design and other small fixes

	* ima/resources/ok.png:
	added ok-icon for messagebox

	* common/src/messagebox.cpp:
	better layout-handling better looking message-boxes

	* ima/resources/de.ts:
	* ima/resources/de.qm:
	updated German localization

	* ima/src/main_window.cpp:
	- more clear message if ICA is not running
	- more descriptive balloon-message for overview-button

	* ima/italc.qrc:
	* ima/resources/auto_arrange.png:
	* ima/src/client_manager.cpp:
	* ima/src/main_window.cpp:
	new auto-arrange-feature for client-windows

	* ima/src/client_manager.cpp:
	pass window() as parent for dialogs - fixes bug which made dialogs
	inaccessible under win32

	* ima/resources/qt_*qm:
	updated Qt-localizations

	* ica/src/ica_main.cpp:
	when using default-paths, do not save private key in public-key-file
	and vice versa...

	* ica/src/demo_client.cpp:
	do not call showMaximized() on top-level-widget if in fullscreen-mode

2006-11-16	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* setup/src/dialogs.h:
	* setup/src/dialogs.cpp:
	- now keys are created/imported/exported
	- show confirm-dialog before cancel setup

	* setup/resources/de.ts:
	* setup/resources/de.qm:
	* setup/setup.qrc:
	added German localization

	* setup/dialogs/page_security_options.ui:
	* setup/dialogs/wizard.ui:
	small fixes

	* common/src/dsa_key.cpp:
	if filename does not contain dir-separators, do not call
	localSystem::ensurePathExists()

	* common/include/local_system.h:
	* common/src/local_system.cpp:
	added option to privateKeyPath() and publicKeyPath() for only
	returning path without filename

	* ica/src/ica_main.cpp:
	* common/src/dsa_key.cpp:
	* common/src/local_system.cpp:
	added "-createkeypair"-option to ICA

2006-11-14	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	added some more checks for better configuration of miniLZO

2006-11-13	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/main.cpp:
	per default set __role to RoleTeacher

	* ima/dialogs/multi_logon.ui:
	use password-echo-mode for password-input-field

2006-11-12	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/resources/de.ts:
	updated German localization

	* ica/src/vncview.cpp:
	use Qt::DirectConnection's to make framebufferUpdate()-method being
	executed with vncViewThread-affinity -> GUI of remote-control etc. does
	not hang anymore if host is not reachable or connected via slow link
	for now the last kno wn critical bug is fixed!

	* ica/src/demo_server.cpp:
	- use QTimer-objects with Qt::DirectConnection instead of
	  QTime::singleShot for running connected methods within desired
	  thread - fixes warnings about QSocketNotifier etc.
	- use m_lastCursorPos instead of QCursor::pos() for reading current
	  cursor-position -> no more Xlib-errors

2006-11-11	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/client.cpp:
	* ima/src/dialogs.h:
	* ima/src/dialogs.cpp:
	* ima/src/main_window.cpp:
	* ima/src/support_widget.cpp:
	always try to set parent-window for dialogs for not having separate
	taskbar-entries for dialogs

	* common/include/isd_connection.h:
	* common/include/local_system.h:
	* common/src/isd_connection.cpp:
	* common/src/local_system.cpp:
	* ica/src/isd_server.cpp:
	* ima/src/client.cpp:
	* Makefile.am:
	new (built-in) WakeOnLAN-technology

	* common/include/isd_base.h:
	* common/include/isd_connection.h:
	* common/include/local_system.h:
	* common/src/isd_connection.cpp:
	* common/src/local_system.cpp:
	* ica/win32/src/WinVNC.cpp:
	* ica/src/ivs.cpp:
	* ica/src/isd_server.cpp:
	* ica/x11/x11vnc/keyboard.h:
	* ima/Makefile.am:
	* ima/italc.qrc:
	* ima/dialogs/multi_logon.ui:
	* ima/resources/multilogon.png:
	* ima/resources/multilogon_48.png:
	* ima/src/client.h:
	* ima/src/client.cpp:
	* ima/src/client_manager.h:
	* ima/src/client_manager.cpp:
	* ima/src/dialogs.h:
	* ima/src/dialogs.cpp:
	* ima/src/main_window.cpp:
	added multi-user-logon-feature, i.e. the teacher enters the username
	and password which will be used for logging on the according users on
	selected computers by faking necessary key-events

2006-11-06	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/resources/de.ts:
	* ima/resources/de.s:
	updated German localization

	* ica/src/vncview.cpp:
	initialize m_viewOffset

	* ica/src/demo_server.cpp:
	do not flush socket-write-buf inside processing loop - fixes critical
	bug in demo-mode

	* common/src/ivs_connection.cpp:
	added write-lock for scaled-image-lock

	* common/src/local_system.cpp:
	changed organization-name and -domain to "iTALC Solutions" and
	"is.org"

2006-11-04	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/include/ivs_connection.h:
	* common/src/ivs_connection.cpp:
	added read-write-lock for cursor-shape, should eliminate some problems
	with demo-mode etc.

	* ima/src/client.cpp:
	start client-update-threads only with low priority for not withdrawing
	the GUI-thread all CPU-time

	* ica/src/vncview.h:
	* ica/src/vncview.cpp:
	deal with ivsConnection in a separate thread for not blocking GUI if
	lot of data is processed

	* ica/src/remote_control_widget.cpp:
	clean ups and some more checks on pointers

	* common/irc/ivs_connection.cpp:
	if size of updated region is zero, return earlier, so senseless
	screen-scaling is not done

	* common/irc/isd_connection.cpp:
	always test m_socket for being NULL as some functions might be called
	before open() initially was called

	* common/include/ivs_connection.h:
	do not lock image when returning a read-only-reference as it's
	absolutely senseless as the reference could be used somewhen later
	when the actual mutex is locked... should speed up accesses by GUI-
	thread

2006-11-01	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/Makefile.am:
	* ica/src/system_service.h:
	* ica/src/system_service.cpp:
	* ica/src/service.h:
	* ica/src/service.cpp:
	* ica/src/ica_main.h:
	* ica/src/ica_main.cpp:
	new generic systemService-class

2006-10-30	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	* Makefile.am:
	* Makefile.svn:
	build-integration of LUPUS which is now an external
	subversion-reference

	* common/src/ivs_connection.cpp:
	fixed several memory-leaks

	* common/include/qt_features.h:
	do not build win32-version with system-tray-support as it causes ICA
	to crash in several cases

	* ica/src/lock_widget.h:
	* ica/src/lock_widget.cpp:
	* ica/src/system_key_trapper.cpp:
	cleanups

2006-10-28	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/resources/de.ts:
	* ica/resources/de.qm:
	updated German localization

	* common/src/local_system.cpp:
	shutdown and reboot under win32 via InitiateSystemShutdown() instead
	of ExitWindowsEx() - makes shutdown and rebooting under win32 possible
	when running as service

	* common/include/local_system.h:
	* common/src/local_system.cpp:
	* ica/src/inject.cpp:
	moved enablePrivilege()-function to local-system

2006-10-22	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/inject.cpp:
	made code follow coding-style-guidelines

	* ica/src/demo_server.cpp:
	do not quit if first attempt to connect to local IVS fails, instead
	retry in loop - should make demo-server more stable in general

	* ica/src/isd_server.cpp:
	if master-app terminated unexspected and did not send
	demo-stop-command, stop the demo-server started over according socket
	(for each socket, the property "demoserver" is set when a demo-start-
	command is received over it - the property contains a pointer to the
	demo-server and therefore can be deleted when socket emits
	destroyed()-signal)

	* ica/src/isd_server.cpp:
	* ica/src/ivs.h:
	* ica/src/ivs.cpp:
	Linux/X11-version: pass role to IVS in separate process and restart it
	as soon as role changes

	* ica/src/ica_main.h:
	* ica/src/ica_main.cpp:
	* ica/src/isd_server.h:
	* ica/src/isd_server.cpp:
	under Linux/X11 we can't display the access-dialog within IVS-process
	as no QApplication is being created - instead launch a sub-process
	whose exit-code corresponds to the choice the user made

	* ica/src/ica_main.h:
	* ica/src/ica_main.cpp:
	- made rx11vs a global variable (__rx11vs)
	- made ivs_port a global variable (__ivs_port)

	* common/src/isd_connection.cpp:
	use RoleOther for __role per default

	* common/include/local_system.h:
	* common/src/local_system.cpp:
	new method userRoleName(...)

2006-10-21	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/src/local_system.cpp:
	- cleanups and small fixes
	- under Linux/X11 first try to evaluate USER-env-var before using
	  getuid()
	
	* setup/dialogs/page_select_components.ui:
	* setup/src/dialogs.cpp:
	- when installing to according to list of components selected by user
	- progress-dialog during actual installation

	* ima/dialogs/config.ui:
	- corrected "what's this"-texts for some elements
	- items for demo-quality-combobox are now inserted by UIC-code instead
	  of in ima/src/config_widget.cpp

	* common/include/isd_base.h:
	* common/include/isd_connection.h:
	* common/include/italc_rfb_ext.h:
	* common/src/isd_connection.cpp:
	* common/src/local_system.cpp:
	* ica/src/ica_main.cpp:
	* ica/src/isd_server.h:
	* ica/src/isd_server.cpp:
	* ima/dialogs/config.ui:
	* ima/src/config_widget.h:
	* ima/src/config_widget.cpp:
	* ima/src/client_manager.cpp:
	* ima/src/main_window.cpp:
	support for several roles, e.g. teachers, admins, supporters and
	others (students etc.) and therefore different keys for each role

	* ica/Makefile.am:
	* ima/Makefile.am:
	* setup/Makefile.am:
	* acinclude.m4:
	- more clean Qt-detection code
	- separated QtGui-lib to extra variable as it isn't needed by all
	  components

	* ima/resources/low.png:
	* ima/resources/medium.png:
	* ima/resources/high.png:
	* ima/italc.qrc:
	added icons for different demo-quality-types

2006-10-19	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/include/qt_features.h:
	* setup/src/dialogs.cpp:
	support static functions of QMessageBox in Qt < 4.2

	* ica/src/ica_main.cpp:
	compat-fix for Qt < 4.2

2006-10-18	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/include/dsa_key.h:
	* common/src/dsa_key.cpp:
	* common/src/isd_connection.cpp:
	renamed "dsaKey::valid()" to "dsaKey::isValid()" for closer match with
	Qt-API-style

	* ica/win32/win32vnc.cpp:
	include assert.h to compile successfully with GCC 4.1

	* ica/src/service.cpp:
	implementation of icaServiceStop() under Linux

	* setup/dialogs/page_key_dirs.ui:
	* setup/dialogs/page_license_agreement.ui:
	* setup/dialogs/page_welcome.ui:
	* setup/dialogs/page_security_options.ui:
	* setup/dialogs/page_install_dir.ui:
	* setup/dialogs/page_select_components.ui:
	* setup/dialogs/wizard.ui:
	* setup/src/dialogs.cpp:
	* setup/src/main.cpp:
	* setup/src/dialogs.h:
	* setup/Makefile.am:
	* setup/setup.qrc::
	* setup/resources/next.png:
	* setup/resources/page_security_options.png:
	* setup/resources/page_artwork_welcome.png:
	* setup/resources/page_license_agreement.png:
	* setup/resources/setup.png:
	* setup/resources/back.png:
	* setup/resources/page_select_components.png:
	* setup/resources/page_install_dir.png:
	* setup/resources/fileopen.png:
	* setup/resources/cancel.png:
	added setup-wizard for easy installation and setup of iTALC in a
	network

	* ica/src/isd_server.cpp:
	do not lock screen if demo-server is running

2006-10-15	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* acinclude.m4:
	some bugfixes concerning Qt-devel-tool-recognition

	* configure.in:
	added template for WIN32-define as new autoheader otherwise refuses to
	work

	* ica/resources/de.ts:
	* ima/resources/de.ts:
	updated German localization

	* ica/src/vncview.cpp:
	* ica/src/demo_server.cpp:
	cleanups etc.

	* ica/src/isd_server.cpp:
	- never start a demo if a demo-server is running within the same
	  process!
	- if supported, show messages using system-tray-message (balloon)
	  instead of messagebox

	* ica/src/service.h:
	* ica/src/service.cpp:
	* ica/src/ica_main.cpp:
	- support for stopping ICA-service via command-line
	- print out error-message when encountering unknown commandline
	  argument

	* ica/src/service.cpp:
	use QMessageBox instead of native MessageBox()-function for displaying
	service-related messages, allows localization as well

	* ica/ica.qrc:
	* ica/src/ica_main.h:
	* ica/src/ica_main.cpp:
	support for system-tray-icon

	* common/include/rect_list.h:
	* common/src/rect_list.cpp:
	improved and optimized nonOverlappingRects()-algorithm

	* common/include/qt_features.h:
	added file which contains definition of several macros depending on
	Qt-version and target platform

2006-10-12	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/vncview.cpp:
	only do complete repaints of we indeed changed viewport if mouse is on
	an edge - fixes flickering cursors in demo-mode if client's cursor was
	on an edge

	* common/include/ivs_connection.h:
	* common/src/ivs_connection.cpp:
	* ica/src/demo_server.h:
	* ica/src/demo_server.cpp:
	* ica/src/isd_server.cpp:
	* ima/dialogs/config.ui:
	* ima/src/client_manager.cpp:
	* ima/src/config_widget.h:
	* ima/src/config_widget.cpp:
	* ima/src/main_window.h:
	* ima/src/main.cpp:
	* ima/src/resources/demoquality.png:
	support for several quality-modes for demo-mode

	* ica/src/demo_server.h:
	* ica/src/demo_server.cpp:
	removed debugging-code

	* common/include/qt_user_events.h:
	* common/include/ivs_connection.h:
	* common/src/ivs_connection.cpp:
	* ica/src/demo_server.cpp:
	* ica/src/demo_server.h:
	use rectList instead of QRegion, should fix some X-errors on
	Linux/X11-version

	* common/include/rectlist.h:
	* common/src/rectlist.cpp:
	added lightweight and non-GUI-dependent class "rectList" as replacement
	for QRegion

2006-10-11	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/main_window.cpp:
	connect power-down-all-button to clientManager::powerDownClients
	instead of clientManager::powerOffClients

	* ica/src/progress_widget.cpp:
	do not use semi-transparent progress-widget as it's horribly slow
	under win32

	* ica/src/service.cpp:
	do not call exit(0) at the end of ServiceStop() - win32-service-manager
	now properly detects if service had been stopped

	* ica/src/ica_main.cpp:
	- do not create QApplication in first invocation of ICAMain() when
	  running as service for not creating two QApplication-objects
	- bugfix: when settings up commandline for ICAMain() in WinMain() make
	  the first item to be the application-path - fixes several problems
	  when building against Qt 4.2.0 and running as service under win32

	* ica/src/remote_control_widget.cpp:
	more usable toolbar and toolbuttons

	* common/src/isd_connection.cpp:
	wait 1000 ms instead of 500 ms for connection to be established

	* ica/win32/src/vncService.cpp:
	in SimulateCtrlAltDelThreadFn(): if switching to winlogon-desktop
	failed, launch taskmgr manually

	* ica/src/system_key_trapper.h:
	* ica/src/system_key_trapper.cpp:
	- trap Alt+F4 under win32
	- detect Alt+Ctrl+Del-presses under win32

	* ica/src/vncview.cpp:
	* ica/src/vncview.h:
	- full support for level3-shift-key (AKA AltGr) and unicode-characters
	  such as euro-sign
	- unpress all modifiers when quitting

	* ima/src/client.cpp:
	- do not lock m_syncMutex when changing client-mode as it isn't
	  necessary anymore and just causes senseless delays
	- only lock m_queueMutex where it is really needed, improves reaction-
	  time when changing client-mode as well

	* ima/src/client_manager.cpp:
	much smaller delay when changing global client mode in the hope this
	doesn't cause problems with demo-mode

	* ima/src/client.cpp:
	* ima/src/client_manager.cpp:
	set mainWindow::m_clientManager in constructor of clientManager, so
	code called out of it does not crash when using
	mainWindow::m_clientManager

2006-10-10	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/system_key_trapper.cpp:
	* ica/src/system_key_trapper.h:
	* ica/src/vncview.cpp:
	* ica/src/vncview.h:
	* ica/src/lock_widget.cpp:
	added systemKeyTrapper, a class for trapping system-keys, especially
	under win32

	* ica/src/isd_server.cpp:
	* ica/src/demo_server.cpp:
	* ica/src/demo_server.h:
	start demo-server on given port - bugfix

	* ica/Makefile.am:
	* ica/src/lock_widget.cpp:
	* ica/src/inject.cpp:
	* ica/src/inject.h:
	inject some code into winlogon.exe for safely disabling Secure Attention
	Sequence (SAS=Alt+Ctrl+Del) - much better than old solution which
	simply disabled task-mgr by security-policy

	* Makefile.am:
	* ica/src/ica_main.cpp:
	* utils-win32/HookNTQSI.dll:
	try to hide ICA-process using HookNTQSI.dll

2006-10-09	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/client.cpp:
	* ima/src/client_manager.cpp:
	made client-windows resizable

2006-10-08	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/vncview.h:
	* ica/src/vncview.cpp:
	revised whole key-event-handling, especially handling of modifiers -
	now things like holding <Alt> while switching apps with <Alt>+<Tab> are
	supported, <Control>+<any key> is now recognized (e.g. Ctrl+C), under
	Linux/X11 native translation of X-keycodes is done when compiling with
	Qt >= 4.2.0

	* ica/src/vncview.cpp:
	- do not pass QX11BypassWindowManagerHint to parent-widget as this
	  causes troubles with Qt 4.2.0 and things work without it as well
	- when viewing remote desktop, update every 70ms instead of 80ms

	* ica/src/demo_server.h:
	* ica/src/demo_server.cpp:
	- sleep less between updates of demo-screen (20ms instead of 25ms)
	- do check for cursor-movements with GUI-thread-affinity and send
	  actual changes within thread in which socket to client was created

	* ica/src/ica_main.cpp:
	renamed parameters "-installservice" and "-removeservice" to
	"-registerservice" and "-unregisterservice"

	* common/include/isd_connection.h:
	* ica/src/isd_server.cpp:
	introduced helper-class "isdForwarder" which is used by VNC-server-
	subprocess under Linux/X11 for forwarding all requests received by
	VNC-server to actual ISD-server in parent-process

	* ica/src/ica_main.cpp:
	* ica/src/ivs.cpp:
	* ica/src/ivs.h:
	* ica/src/demo_server.h:
	* ica/src/demo_server.cpp:
	* ica/src/vncview.cpp:
	under Linux/X11 VNC-server is now run in separate process which
	introduces several changes in the whole client-application

	* ica/src/isd_server.h:
	* ica/src/isd_server.cpp:
	* ica/src/ivs.cpp:
	* ica/win32/src/vncClient.cpp:
	removed global authSecTypeItalc()-method and made according function
	in isdServer static

	* common/include/ivs_connection.h:
	* common/src/ivs_connection.cpp:
	* ica/src/vncview.cpp:
	use QImage instead of QPixmap as image-container for cursor-shape
	which sometimes led to X-errors as dealing with QPixmap's in non-GUI-
	threads isn't safe

	* common/src/isd_connection.cpp:
	do not create QTcpSocket as child of isdConnection as isdConnection
	was created in another thread than the socket - fixes some bugs

	* common/include/italc_rfb_ext.h:
	* common/include/ivs_connection.h:
	* common/src/isd_connection.cpp:
	* common/src/ivs_connection.cpp:
	new authentication-mechanism: authentication via a file which is only
	readable by owner and over which challenge is transmitted

	* common/include/isd_base.h:
	* common/include/isd_connection.h:
	* common/include/local_system.h:
	* common/src/isd_connection.cpp:
	* common/src/local_system.cpp:
	* ica/src/isd_server.cpp:
	* ica/src/isd_server.h:
	* ima/src/main_window.cpp:
	port for demo-server is chosen before it is started - makes
	demoserver-port-info-response-message obsolete

2006-10-07	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/snapshot_list.cpp:
	do not crash when clicking one of the action-buttons while no item is
	selected

2006-10-06	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* configure.in:
	do not check for linux/videodev.h-header as not really needed and
	causes senseless warning

	* Makefile.svn:
	added for auto-creating files just removed from repository (see below)

	* aclocal.m4:
	* config.h.in:
	* config.guess:
	* config.sub:
	* configure:
	* depcomp:
	* install-sh:
	* missing:
	* Makefile.in:
	* common/Makefile.in:
	* ica/Makefile.in:
	* ima/Makefile.in:
	* utils-win32/Makefile.in:
	removed as these files should be generated on target-system

	* ima/src/client.h:
	* ima/src/client.cpp:
	enqueue all actions which need writing to socket and process queue by
	update-thread for using socket indeed only from one thread - supresses
	some warnings and maybe iTALC also runs better

	* ima/src/client_manager.cpp:
	sleep 2 seconds between mode-changes of clients for avoiding troubles
	with demo-server

	* ima/src/main.cpp:
	register quint16 as Qt-metatype at application-startup

	* ica/src/service.cpp:
	misc cleanups

2006-09-27	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/client.cpp:
	in updater-thread: only reload client if it is visible

	* ima/src/main.cpp:
	register meta-type QModelIndex

	* ima/src/support_widget.cpp:
	use dynamic_cast for casting layout, as Qt4-MinGW-X is now built with
	rtti-support and therefore doesn't make problems anymore

	* common/src/local_system.cpp:
	before trying to create path, check whether it already exists! makes
	it possible to make snapshots etc.

2006-09-18	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/client.h:
	* ima/src/client.cpp:
	* ima/src/main_window.cpp:
	create threads for each client for reloading it instead of doing that
	in one loop in main-window-updater-thread - if one client hangs, it
	doesn't block the others anymore

	* common/include/isd_base.h:
	in socketDevice::socketDevice, pass Unbuffered-flag to open() for
	making iTALC work with Qt 4.2

2006-09-07	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/resources/de.ts:
	updated German localization

	* ima/src/client_manager.cpp:
	* ima/src/config_widget.h:
	* ima/src/config_widget.cpp:
	* ima/src/tool_button.h:
	* ima/src/tool_button.cpp:
	added option for disabling balloon-tooltips for toolbar-buttons

	* ima/dialogs/config.ui:
	* ima/resources/userinterface.png:
	* ima/italc.qrc:
	* ima/src/config_widget.h:
	* ima/src/config_widget.cpp:
	- re-made config-workspace using ui-designer
	- warn user when selecting local loopback as net-iface

	* ima/dialogs/client_settings.ui:
	corrected tab-order of input-fields

	* common/include/isd_connection.h:
	* common/include/local_system.h:
	* common/src/isd_connection.cpp:
	* common/src/local_system.cpp:
	* ima/src/client.cpp:
	implemented WOL under win32

2006-09-05	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/src/local_system.cpp:
	re-activated username-code using external userinfo-tool

	* ica/src/ica_main.h:
	* ica/src/ica_main.cpp:
	* ica/src/service.h:
	* ica/src/service.cpp:
	added service-functionality under win32

2006-09-04	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/src/isd_connection.cpp:
	handle ItalcAuthNone

	* ica/src/demo_server.h:
	* ica/src/demo_server.cpp:
	- create client-sockets within according threads (using
	  socket-descriptors) - fixes segfaults and other bugs on SMP-systems
	- do not rely on readyRead()-signal, use QTimer::singleShot instead

	* ica/src/isd_server.cpp:
	when doing host-based auth., pass _user-ptr to socket-dispatcher-call
	for getting peer address - fixes crash of ica when acting as
	demo-master

2006-09-01	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/x11/libvncserver/auth.c:
	* ica/src/isd_server.cpp:
	* ica/src/ivs.cpp:
	- enabled security-mechanisms
	- fixed bugs in authentication via DSA-keys

	* ica/src/isd_server.cpp:
	- bugfixes in support for host-based auth.

	* common/src/ivs_connection.cpp:
	when running for demo-purposes, use app-internal-auth-mechanism

	* ica/src/demo_server.cpp:
	- first attempts to fix similiar bugs as in ivs.cpp (multithreading)
	- do a host-based auth. for demo-clients instead of app-internal

	* ica/src/ivs.cpp:
	- build command-line-stuff within thread in which VNC-server will run
	  later (fixes segfaults on Linux-SMP-machines)

	* common/src/isd_connection.cpp:
	- initialize privDSAKey before using it when still zero within
	  authAgainstServer()
	- made __role a global variable
	- support for host-based auth.

2006-08-30	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* Makefile.am:
	added missing entries for copying win32-utils and mingwm10.dll into
	win32-package

2006-08-28	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/include/main_window.h:
	* ima/src/client.cpp:
	* ima/src/core/client_manager.cpp:
	* ima/src/core/config_widget.cpp:
	* ima/src/core/main.cpp:
	completely revised demo-master-stuff using QNetworkInterface-class

	* ima/src/3rdparty/*:
	* ima/src/qnetworkinterface.cpp:
	* ima/src/qnetworkinterface.h:
	added implementation of QNetworkInterface from recent Qt 4.2-snapshot

	* ima/src/client.cpp:
	- use localSystem::ensurePathExists() before trying to save a snapshot
	- when quitting iTALC, change mode of all clients to overview-mode
	- draw semi-transparent background for toolbar

2006-08-22	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/src/ivs_connection.cpp:
	- update software-cursor when remote-controlling
	- disabled XCursor-support as it's buggy under Win32

	* ima/src/client.cpp:
	when re-entering view-only-mode, check do not crash if passed
	connection-pointer is NULL

	* utils-w32/userinfo.cpp:
	added userinfo-utility

	* configure.in:
	* Makefile.am:
	* utils-w32/:
	added directory for several utils used by win32-version of localSystem

	* common/src/local_system.cpp:
	(Win32)
	as there're problems when using functions from netapi32.dll we can't
	use some functions we need for getUserName(), therefore this code has
	been moved to "userinfo"-utility which is called periodically by
	userPollThread - localSystem::currentUser() now returns what the
	userPollThread received when launching userinfo

2006-08-18	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/client.cpp:
	do not reload user-name each time screen is being updated, instead do
	only if user-name not set so far or is "unknown"

	* common/src/local_system.cpp:
	completely new code for retrieving user-name and his full name of
	logged in user under win

2006-08-17	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/src/local_system.cpp:
	correct system-calls for shutting down, rebooting and logging off user

	* ima/src/client.cpp:
	bugfixes

2006-08-16	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/src/ivs_connection.cpp:
	fixed some bugs in palette-filter/tight-encoding which were
	responsible for grave graphic-errors in some cases (when using
	mono-palette)

	* common/include/ivs_connection.h:
	* common/src/ivs_connection.cpp:
	added Zlib-encoding

	* common/include/rfb/rfbint.h:
	* common/include/rfb/rfbconfig.h:
	removed as generated by configure

	* ima/resources/splash.png:
	new modern splash-screen

2006-08-15	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* common/src/ivs_connection.cpp:
	disabled tight- and zlib-encoding for the moment as it causes
	graphic-errors when connecting to Win32-VNC-server

	* ima/src/client.cpp:
	* ima/src/client_manager.cpp:
	fixes with bool-vars

	* ima/src/config_widget.cpp:
	* ima/src/support_widget.cpp:
	do a static_cast instead of dynamic_cast for getting pointer to layout
	of parent - HACK for make app working on Win32/MinGW which has a problem
	with dynamic_cast

	* ima/src/kmultittabbar.cpp:
	commented out some stuff which is does not work on Win32

	* configure.in:
	* ica/x11/:
	* ica/x11/x11vnc.c:
	upgraded to x11vnc 0.8.3

2006-08-14	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/src/ica_main.cpp:
	* ica/src/isd_server.cpp:
	* common/include/isd_base.cpp:
	* common/src/dsa_key.cpp:
	* common/src/isd_connection.cpp:
	* ima/src/client.cpp:
	* ima/src/client_manager.cpp:
	* ima/src/main.cpp:
	* ima/src/main_window.cpp:
	* ima/src/snapshot_list.cpp:
	* ima/src/snapshot_list.h:
	use new methods from localSystem-namespace for retrieving information
	where to store keys and settings

	* common/include/local_system.h:
	* common/src/local_system.cpp:
	added methods for platform-independent storage of keys and settings:
	  - privateKeyPath()
	  - publicKeyPath()
	  - snapshotDir()
	  - globalConfigPath()
	  - personalConfigDir()
	  - personalConfigPath()
	  - ensurePathExists()

	* ima/src/dialogs.h:
	made derivation from ui-classes private

	* common/include/paths.h:
	removed

	* AUTHORS:
	cleaned up as now the whole code-base is what I worked out

	* ima/src/client_manager.cpp:
	* ima/src/client.cpp:
	- do not include (not existing) dialog-specific header-files, use
	  dialogs.h instead
	- replace msgInputDialog-references with textMessageDialog

	* ima/src/about_dialog.h:
	* ima/src/about_dialog.cpp:
	* ima/src/client_settings_dialog.h:
	* ima/src/client_settings_dialog.cpp:
	* ima/src/msg_input_dialog.h:
	* ima/src/msg_input_dialog.cpp:
	removed

	* ima/src/dialog.cpp:
	* ima/src/dialog.h:
	* ima/dialogs/text_message.ui:
	added text-message-dialog as replacement of msgInputDialog

	* ima/src/support_widget.h:
	* ima/src/support_widget.cpp:
	removed code for dialog

	* ima/src/dialogs.h:
	* ima/src/dialogs.cpp:
	moved code from about_dialog.*, client_settings_dialog.* and
	support_widget.* into these files for having one central include-
	and implementation-file for dialogs

	* Makefile.am:
	added target "win32-pkg" for creating distribution-zip-file of iTALC
	including necessary DLLs

	* configure.in:
	changed some optimization-flags

2006-07-24	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ica/Makefile.am:
	added missing files in EXTRA_DIST-section

	* ica/src/lock_widget.cpp:
	pass 0L instead of NULL as third argument to RegSetValueEx(...)-call
	to avoid compiler-warning

	* ica/src/win32/...:
	added missing files

	* common/src/local_system.cpp:
	corrected shutdown-calls under win32 ("-t 0" instead of "-t0")

2006-07-21	Tobias Doerffel	<tobydox/at/users/dot/sourceforge/dot/net>

	* ima/src/support_widget.h:
	* ima/src/support_widget.cpp:
	* ima/dialogs/support.ui:
	added dialog for supporting on arbitrary clients

	* ima/src/help_widget.cpp:
	* ima/src/help_widget.h:
	moved to support_widget.*