Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CHANGES - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fcb0e55424ee22273465f4642771059df3dac76f (plain)
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
2009-03-21
  Mikkel Krautz <mikkel@krautz.dk>
    4ebaedd  Reduce OSX overlay logspam.
    2b81e4a  Make contextmenu call `mumble-overlay' to launch apps.
    ae2ffcf  Add 'mumble-overlay' app-launcher to OSX overlay.
    0d3dd3b  Add contextmenu.h to HEADERS.
    276938f  Add an overlay context menu for Mac OS X. Allows for launching
	     apps with the overlay enabled by right clicking on them.

  Thorvald Natvig <slicer@users.sourceforge.net>
    e0fe5c7  Update changelog script to credit SVN authors properly
    4eb6d7d  New changelog script
    3732dce  Fix WASAPI device selection

  Bartek <sumowski@users.sourceforge.net>
    b79e2a2  Polish translation quick fix

2009-03-20
  Stefan Hacker <dd0t@users.sourceforge.net>
    5e460af  Fix crash of config dialog when always on top is set

  Mikkel Krautz <mikkel@krautz.dk>
    ba56432  Update to the MIT licensed version of mach_star.

  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    f48f816  Updated Spanish translation for 1.1.8

  Thorvald Natvig <slicer@users.sourceforge.net>
    0bd7c1c  Workaround for alwaysontop bug
    17537bd  Fix broken output from lupdated, and remove empty 'tr'
	     translation
    b4d4b86  Update source strings.
    b246faa  Fix capitalization.
    9a49e4f  Revert "Fix crash of config dialog when always on top is set"

  Bartek <sumowski@users.sourceforge.net>
    0f54d3c  Polish translation - completed for 1.1.8

2009-03-19
  Stefan Hacker <dd0t@users.sourceforge.net>
    845f2d3  Always allow SuperUser in mumble-auth.py + style update

  Kissaki <kissaki@gmx.de>
    0d45cd8  minor German translation update (double spaces)

  Thorvald Natvig <slicer@users.sourceforge.net>
    27b7e15  Example of how to use structs from PHP
    027ae42  Start of new protocol

2009-03-18
  Matthias Vogelgesang <matthias.vogelgesang@gmail.com>
    68ba119  German translation for latest changes

  Thorvald Natvig <slicer@users.sourceforge.net>
    5cb0d27  Update for new intel compiler

2009-03-17
  Thorvald Natvig <slicer@users.sourceforge.net>
    15052fb  Qt 4.5.0 has fixed signal emitting when deleting sockets,
	     remove workaround

2009-03-16
  Thorvald Natvig <slicer@users.sourceforge.net>
    b2029dd  Fix lousy UTF8 handling in most browsers

  Tuck Therebelos <snares@users.sourceforge.net>
    50b3f50  L4D build number update
    97098ab  Fixed typo in installer for DODS plugin

2009-03-15
  Thorvald Natvig <slicer@users.sourceforge.net>
    ab0089c  Fix input/output switch in tooltip and whatsthis in config gui
    3cd95b5  Fix punctuation in ACL editor
    6ff4b14  Fix typo
    bf867ed  Fix message type of join/leave channel

2009-03-14
  Kissaki <kissaki@gmx.de>
    4ca05b9  updated German translation

  Mikkel Krautz <mikkel@krautz.dk>
    5cc524f  Fix osxdist.py optparser.

  Thorvald Natvig <slicer@users.sourceforge.net>
    5a7f04a  Avoid locking mutex unless plugin has lock
    b35fdce  Avoid setting duration on WASAPI
    f2e4aff  Fix duplicate string
    3a85112  Language file resync
    ae2d336  Switch to boost 1.38 for Win32

2009-03-13
  Mikkel Krautz <mikkel@krautz.dk>
    cc9e795  Fix various typos in osxdist.py.
    eb5fc92  Use plain messages for Growl. It doesn't do HTML.
    a977546  Remove old osxdist.sh script.
    8b72150  Update Mac OS X dist script.
    ae1ba55  More OSX header fixes.
    37c854f  Don't try to detect Growl via AppleScript. It doesn't work.
    dbb0eb2  Fix header mess on Mac OS X.

  Thorvald Natvig <slicer@users.sourceforge.net>
    a66cf2d  Add speex as submodule

2009-03-12
  Matthias Vogelgesang <matthias.vogelgesang@gmail.com>
    143589b  Apply patch from mumble-tower

  Mikkel Krautz <mikkel@krautz.dk>
    ac83eb0  Add qt.conf to the source-tree.
    390e291  Use qt.conf in app bundle to set Qt plugin path. Remove dirty
	     hack from main.cpp.
    bbb4f92  Fix osxdist script.

  Thorvald Natvig <slicer@users.sourceforge.net>
    c865f2f  Update OpenGL overlay to recheck hook
    d7e070b  Fix description message so it comes after the welcome message
    1e324f2  Add a few periods to whatsthis
    0558722  Update a few english strings

  Tuck Therebelos <snares@users.sourceforge.net>
    4f35872  Updated Gmod plugin, added better spawn state

2009-03-11
  Stefan Hacker <dd0t@users.sourceforge.net>
    5202447  Detailed WhatIs strings for Log config

  Mikkel Krautz <mikkel@krautz.dk>
    0fddab0  Add additional Murmur scripts to OSX .dmg. Launch mkini.sh in
	     osxdist.py.
    3c38350  Update OSX installer with new license information.
    ae8bcbd  New overlay paths for OSX injector. Load proper bundle when
	     asked for it.
    83c363a  Add LGPLv2.1 license (new for Qt 4.5). Update Speex license.
	     Add PortAudio license.
    ab63d65  Make GlobalShortuctMac build with 10.4 SDK once again.
    95de017  Fix up permissions in OSX installer.

2009-03-10
  Stefan Hacker <dd0t@users.sourceforge.net>
    e7dd7ed  Updated strings for log configuration

  Tuck Therebelos <snares@users.sourceforge.net>
    844af75  Added Dystopia plugin
    8034ec1  Fixed v,h addresses
    8c91027  Update for 1.3 patch
    c9ea6a0  Added Dystopia plugin

2009-03-09
  Stefan Hacker <dd0t@users.sourceforge.net>
    383e025  Removed secondary option for eventsound configuration
    b6a6e31  Correct invalid if in eventsound fallback code
    c92a410  TTS fallback and filecheck for eventsound

  Kissaki <kissaki@gmx.de>
    cb67fc1  updated murmur.ini documentation

  Thorvald Natvig <slicer@users.sourceforge.net>
    080c586  Create .ini files based on template

2009-03-08
  Thorvald Natvig <slicer@users.sourceforge.net>
    266a2b8  setSuperuserPasssword => setSuperuserPassword

2009-03-07
  Kissaki <kissaki@gmx.de>
    665edfe  German translation: 'Main Window' updated Thus German
	     translation was checked throughout now

  Matthias Vogelgesang <matthias.vogelgesang@gmail.com>
    cf7cfb8  Apply patch from mumble-tower
    455ebe9  Changed one awkward translation.
    bb2406e  apply patches provided by kissaki

  Mikkel Krautz <mikkel@krautz.dk>
    1c95ce9  Use weak binding to determine whether to use Leopard-specific
	     key-to-name translations in GlobalShortcutMac.

  Thorvald Natvig <slicer@users.sourceforge.net>
    9ced3f7  Fix comment parameters for Channel::add
    d26bb4c  Add about to tray context menu
    34fad98  Use consistent naming of channel actions

  Tuck Therebelos <snares@users.sourceforge.net>
    ac6a5d4  DOD PA lacked sourcefiles
    8be4101  Day of Defeat Source PA plugin
    633a403  TF2 build 3771 update

2009-03-06
  Stefan Hacker <dd0t@users.sourceforge.net>
    c370c9f  Some fixes in eventsound
    d9e6ff2  Merge branch 'eventsound'
    1d677c4  Implemented the GUI part of the static sound for event feature

  Kissaki <kissaki@gmx.de>
    507e799  updated english translation some smaller flaws (typos, missing
	     ., grammar) and made some things clearer

  Mikkel Krautz <mikkel@krautz.dk>
    03fc6ba  Growl notification support.

  Thorvald Natvig <slicer@users.sourceforge.net>
    a90db97  Support HTML editing for channel descriptions
    6901c4c  Final merge and CIA test
    88fdb0c  Merge test
    da96d6b  Update path for ruby
    2e778f6  Indent
    e880109  Resize minimum size of shortcut config
    4d60fbd  Remove HTML for trayicon balloon.
    c4ff017  Add function to check sample validity.

2009-03-05
  Mikkel Krautz <mikkel@krautz.dk>
    c048a02  Add 'proper' Mac OS X installer.

2009-03-04
  Mikkel Krautz <mikkel@krautz.dk>
    ae0c8b5  We don't want the OSX overlay to live inside the app-bundle.
    fe8c40a  Make the OSX overlay injector live outside the Mumble
	     app-bundle.
    6d6c67d  Fix Murmur build in OSX/Darwin.

  Thorvald Natvig <slicer@users.sourceforge.net>
    ac0b3cf  Indenting
    a2765a6  CRLF merge
    1561941  Add mute/deafen to icon context menu

  Thorvald Natvig <thorvald@debian.localdomain>
    467cd16  Update release script

2009-03-03
  Stefan Hacker <dd0t@users.sourceforge.net>
    792ca1f  Merge branch 'sourceplugs'
    f199f0b  Add new PA plugins to the installer
    64914f4  Backend support for playing sound files on events.
    76e6416  Save/Load for soundfile paths

  Thorvald Natvig <slicer@users.sourceforge.net>
    f2232a5  Use realtime threads on Linux, as posix threads aren't
	     prioritized under SCHED_OTHER

  Tuck Therebelos <snares@users.sourceforge.net>
    b58cea3  INSURGENCY: Modern Infantry Combat Positional Audio
    5fe671b  Garry's Mod Positional Audio
    d9ecf7d  Age of Chivalry Positional Audio
    8f1f066  Half-Life 2 Deathmatch Positional Audio
    3c9cfae  Counterstrike Source Positional Audio
    1b3c71b  TF2 PA fix

  Thorvald Natvig <thorvald@debian.localdomain>
    df69aef  Update static murmur for Qt 4.5.0 and lzma compression

2009-03-02
  Thorvald Natvig <slicer@users.sourceforge.net>
    71957d8  Fix typo for channel description
    f71a815  Support extended keys

2009-03-01
  Arrai <arrai@users.sourceforge.net>
    aee1e23  Don't idlemute after self muted

  nomad <gmc_holle@users.sourceforge.net>
    7bd80f8  Adding channel descriptions

  Matthias Vogelgesang <matthias.vogelgesang@gmail.com>
    5929962  correct installer translation
    fb41b75  Standardgeraet

  Thorvald Natvig <slicer@users.sourceforge.net>
    1f8364b  Avoid spamming log on description change
    6ef0a0c  Indent
    d8f994c  Update documenation for Server.getLog
    f2022a0  Use non-cached Ice connections
    ab2d992  Support clearing texture over Ice/DBus, and remove qcompress()
	     header from getTexture on Ice
    9bb37b9  Add .gitignore for win32
    bbeda39  Add .gitignore files
    b207e3d  A few testcases for collections and hashes
    a41c00b  Fix typo

2009-02-28
  kissaki <kissaki@users.sourceforge.net>
    608a90c  Patch #2625917: really simple PHP + ICE registration script

  Thorvald Natvig <slicer@users.sourceforge.net>
    5db28fa  Even with dropped capabilities, running murmurd as root is not
	     a good idea, so always warn the user
    796afe0  Avoid messing with ulimits in murmurd, and first part of
	     updated init script to use privileged capabilities

2009-02-27
  kissaki <kissaki@users.sourceforge.net>
    944501f  Patch #2645062: Installer Translation: German
    89d5f51  Patch #2638107: Installer Translation: German

  Mikkel Krautz <mkrautz@users.sourceforge.net>
    56426af  Overlay for Mac OS X.

  Thorvald Natvig <slicer@users.sourceforge.net>
    7515e31  Update default system ini to include the uname tag
    5d9edfb  Don't keep CAP_DAC_OVERRIDE after switching users
    a5a3a73  Unbreak QoS on Unix
    f56a47f  qWave (QoS for Vista)

  Bartek <sumowski@users.sourceforge.net>
    0ddd167  Patch #2645933: Polish translation (small fix)

  theblackstorm <theblackstorm@users.sourceforge.net>
    c317abe  Patch #2645641: NSIS French Translation

2009-02-26
  Thorvald Natvig <slicer@users.sourceforge.net>
    b34cbc7  Clean up logic for capabilities, add resources automatically
	     if root, and update the limits test
    2c9f4f0  Add a umask, add the CAP_SETGID capability, and print a
	     warning if running murmurd as root without a username to drop
	     to.
    7fc01d6  Use Linux capabilities to allow us to really use high priority
	     threads

2009-02-25
  arcenciel <arcenciel@users.sourceforge.net>
    9f8f3cd  Patch #2637281: NSIS Japanese Translation update

  Thorvald Natvig <slicer@users.sourceforge.net>
    0df61d2  Kill running mumble, murmur etc on uninstall.
    2350c48  Sections for the installer.
    428bc1b  Fix spelling error in NetworkConfig.ui
    788b3f4  Distribute Murmur.ice with win32 install.
    13ea9af  Avoid using QPainter::scale() as that produced a few artifacts
	     in Qt 4.5.

2009-02-24
  Thorvald Natvig <slicer@users.sourceforge.net>
    468ed6d  Replace previous notification -- needed on new Ubuntu notifier
    e73613a  Clarify Ice documentation for verifyPassword
    9ea9089  Handle lost textures
    ada9056  Update vertex shader

2009-02-23
  lewellyn <lewellyn@users.sourceforge.net>
    7041b3f  murmur_pch.h cleanup

  Thorvald Natvig <slicer@users.sourceforge.net>
    db3c781  Update Linux overlay to guess window size on GLX<1.2
    c58df3f  Qt4.5.0 on Win32.
    39c8094  Mutex cleanup
    3568c5d  Valgrind run for mumble.
    66d04b2  Fix a few gcc warnings

2009-02-22
  Thorvald Natvig <slicer@users.sourceforge.net>
    fb84f8e  Fix RPC.cpp to compile even with CONFIG+=no-dbus
    ba56098  registerPlayer throws InvalidPlayerException, update .ice to
	     match
    5de1027  Shader-based OpenGL same-context linux overlay, with ELF
	     linkmap iteration

2009-02-21
  Stefan Hacker <dd0t@users.sourceforge.net>
    f308c58  Fixed possible bug in several plugins and did some minor style
	     tweaks

  Tuck Therebelos <snares@users.sourceforge.net>
    35f52a9  Team Fortress 2 PA plugin

2009-02-20
  arcenciel <arcenciel@users.sourceforge.net>
    4fd1812  Patch #2620308: NSIS Japanese Translation
    17a6814  Patch #2620179: NSIS Japanese Translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    58b6aa8  getServer() for Ice doesn't throw, it returns a null proxy.
    5932d65  Use Ogg-Speex for samples.

2009-02-19
  kissaki <kissaki@users.sourceforge.net>
    f74911e  German Installer Translation Updated

  Thorvald Natvig <slicer@users.sourceforge.net>
    cec4fae  Check unlink state every second.
    50e58c2  Correct L4D plugin.
    ebdc34c  Show which channel has been moved to/from when moving a
	     Player.
    2a9dcfd  Allow modification of ACL if you have Write on parent channel.
    6c6b3b8  Multiple keycombos per shortcut.
    5257860  Fix typo; murmur now compiles on Win32 again.
    879d3b2  Indenting and moving of a few code blocks
    1d9b576  Support KDE notifications as well

2009-02-18
  nomad <gmc_holle@users.sourceforge.net>
    990ab72  Patch #2613323: Support for QT System tray balloon tool-tips
	     or libnotify

  Thorvald Natvig <slicer@users.sourceforge.net>
    b6fbe4a9  Don't use embedded speex if system speex >= 1.2
    46b1594  Use the correct interface for QDBusInterface for focus
    eb97048  Use default ice port in the example scripts
    b36bfdf  hasPermission for Ice
    5001daa  External Ice Authentication

2009-02-17
  Thorvald Natvig <slicer@users.sourceforge.net>
    ff728cd  Indenting run
    96b5158  Use QString based logging instead of const char *
    08c7814  Reduce server stack usage
    3fb59f9  QNetworkAccessManager for http loading. Support images in
	     welcome text.

  ueber <ueber@users.sourceforge.net>
    cff1c68  Ruby Ice example

2009-02-16
  Thorvald Natvig <slicer@users.sourceforge.net>
    7148a0b  Add a thread count test
    39519d2  Speedtest of Protocol Buffers

2009-02-15
  Thorvald Natvig <slicer@users.sourceforge.net>
    e2586a4  Indenting
    23af558  Client-side resource usage.
    c64cd11  Server-supplied resource support
    c3f993b  Start UDP thread on demand
    100a9a3  Clean ACL cache on server shutdown

2009-02-14
  Stefan Hacker <dd0t@users.sourceforge.net>
    cfba8f0  New sample script which uses the server controlled context
	     menu entries to create registration tickets from a client

  kissaki <kissaki@users.sourceforge.net>
    07741df  Patch #2598251: german translation (mumble) updated

  Thorvald Natvig <slicer@users.sourceforge.net>
    675c10a  Oops, didn't mean to commit empty directories
    64e3381  Example on how to use DBus with C#. Forgot I made this one.
    e68d920  Be kinder to systems without working lsb_release
    c7f4f3a  Set current index on context actions for the playerview.

2009-02-13
  Thorvald Natvig <slicer@users.sourceforge.net>
    b0aea9f  Fix LFLAGS_ADD
    dd82270  Add support for building 32-bit library on amd64
    6fc929e  Fix typo; the overlay isn't speex
    1ff3076  slice2html doesn't count ? as a terminator, so reword things
	     slightly
    75205b3  Initialize menus on startup so context shortcuts are activated
    0091cdc  Don't refresh the ALSA card list, it causes ALSA to crash

2009-02-12
  Stefan Hacker <dd0t@users.sourceforge.net>
    e64d33b  Replaced the 'while' with close on keyboard interrupt

  Thorvald Natvig <slicer@users.sourceforge.net>
    94c73a5  Client-side context menus.
    261483e  Context actions for Ice
    307a198  Iterate servers at startup instead of abusing stop/start
	     callback

2009-02-11
  Thorvald Natvig <slicer@users.sourceforge.net>
    7517a5c  ServerCallback for Ice
    e9d8601  Meta callbacks for Ice
    03aaf77  Dynamic connect() for authentication
    86ac8d3  Fix volume attenuation when max volume is 0.
    6db5ccb  Delete event filter first, so it won't get called with its own
	     delete event during recursive delete.

2009-02-10
  Thorvald Natvig <slicer@users.sourceforge.net>
    554763e  Indenting run
    ed7c412  Readd started/stopped signal propagation
    146d7c6  Signal/Slot based RPC callbacks
    3d6ae39  Signal and slot test
    8c97da4  Start of Ice callbacks

2009-02-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    6242768  Add L4D to installer.
    abbaf57  log based rolloff for audio.
    667ce05  Sample-based output.
    701c1a4  When already connected and clicking Server|Connect, default to
	     adding current server to the list.

2009-02-08
  Stefan Hacker <dd0t@users.sourceforge.net>
    3798014  Patch #2580353: bf2 PA increased possible mapsize
    29c0464  Patch #2579216: cod5 new version 1.2 pa patch

  Thorvald Natvig <slicer@users.sourceforge.net>
    49d3385  Positional support Left 4 Dead.
    dfa7a82  Switch to "MaxDistVolume" for distancce attenuation.
    3fa2818  Put MumbleScript on ice for the time being, as it is hard to
	     get gui elements secure.

  theblackstorm <theblackstorm@users.sourceforge.net>
    ad0a14f  Patch #2574499: NSIS French Translation update

2009-02-04
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    d56a85d  Remove Window->Close menu item on OSX. Disconnect uses Cmd+W
	     as well, and we should really only quit on Cmd+Q.

2009-02-03
  kissaki <kissaki@users.sourceforge.net>
    6004a57  Patch #2557593: Installer Translation German improved

  theblackstorm <theblackstorm@users.sourceforge.net>
    c7b215c  Patch #2560147: NSIS French Translation

2009-02-02
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    d02a587  Spanish translation for installer

  Thorvald Natvig <slicer@users.sourceforge.net>
    b3a171b  Start of clientside scripting.
    38c52b5  Have the installer check for SSE, and complain if it isn't
	     found.

2009-02-01
  Thorvald Natvig <slicer@users.sourceforge.net>
    db7b312  Allow playername and channelname config to be set live

2009-01-31
  Thorvald Natvig <slicer@users.sourceforge.net>
    bab2100  Patch #2550233: German Installer Translation Updated
    feb2dcf  Patch #2549845: Win32 installer Polish translation [sumowski]
	     Use Unicode NSIS installer

2009-01-30
  m0ta <m0ta@users.sourceforge.net>
    2be3586  German translation for installer

  Thorvald Natvig <slicer@users.sourceforge.net>
    02378c5  Localized Win32 installer.
    e9b3fe8  Clean up a few leftover code lines
    412be5d  First pass at adding inline documentation to the slice file.
	     Could probably do with a spelling check or three.

2009-01-29
  Thorvald Natvig <slicer@users.sourceforge.net>
    a3a362d  Version bump

2009-01-28
  Thorvald Natvig <slicer@users.sourceforge.net>
    4aa85bb  1.1.7 release
    971a164  Changelog update
    a0c9671  Indenting fixes

2009-01-27
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    878fff7  Updated Spanish translation

2009-01-26
  Thorvald Natvig <slicer@users.sourceforge.net>
    51510ff  Debian Bug#513119: murmur-user-wrapper: confused about dbus.
	     Patch by janbraun@gmx.net

2009-01-25
  Thorvald Natvig <slicer@users.sourceforge.net>
    7508be1  Delay fetching OSInfo, as QProcess doesn't deal well with
	     fork/detach
    4a07c67  Update distribution scripts
    b4258dc  Add elide mode for the audio devices, and store configdialog
	     geometry.
    048343f  Updated mumble-overlay to support biarch systems, based on
	     patch by ludwig.nussel@suse.de

  Bartek <sumowski@users.sourceforge.net>
    901ffe7  Polish translation hotfix

2009-01-23
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    e611b15  Include Mumble's LICENSE file instead of the GPL in the Mumble
	     disk image.

  Thorvald Natvig <slicer@users.sourceforge.net>
    8eb7359  Dont use tool windows on OSX
    70344b3  Preserve config menu settings entry.

2009-01-22
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    b6cd05d  Allow the i386-part of OSX Universal Binaries to be built with
	     MMX/SSE/SSE2 optimizations.

  Thorvald Natvig <slicer@users.sourceforge.net>
    9277b53  Transparent background for extended images in the murmur.cgi
    9ccba72  More consistently pick the same interface
    386a8f2  If we don't find an active IPv4 interface, pick any other

2009-01-20
  julian7 <julian7@users.sourceforge.net>
    887368a  Patch #2524995: DBus started/stopped signals

  Thorvald Natvig <slicer@users.sourceforge.net>
    ae08a5e  On FreeBSD, just link -lcrypto directly
    f3fa9ad  Older input.h doesn't have KEY_CNT
    cad89be  Attempted workaround for screeching.
    d0bd009  Strip " from lsb_release
    1be6e51  Update to support G15 SDK 3.01

  Bartek <sumowski@users.sourceforge.net>
    490728e  Polish hotfix
    00bf4ac  Updated polish translation

2009-01-19
  Stefan Hacker <dd0t@users.sourceforge.net>
    6e01e25  Stop frameless window from creeping around.

  Thorvald Natvig <slicer@users.sourceforge.net>
    30460fd  Language update
    e3f271b  Indenting update
    dfecfd3  Use just parts of uname() for OS info
    2afcd0e  Don't use /dev/input devices that are grabbed, and don't use
	     /dev/input at all unless we find a keyboard
    c451437  Fix of the fix of the fix for the frameless mode
    34acfe4  ALSA Locking

2009-01-18
  Stefan Hacker <dd0t@users.sourceforge.net>
    9fca9fb  Patch #2516734: Independent geometry for Mumbles' Minimal View
    0112a1a  Patch #2516400: Self Mute/Deaf via DBus for Mumble client

  jerhum <jerhum@users.sourceforge.net>
    7814dba  Patch #2518154: French translation update

  Thorvald Natvig <slicer@users.sourceforge.net>
    6786ed6  Minor cleanup of the noframe patch.
    49fbd6b  Brutally simplified LCD overlay.
    2970f91  Qt 4.4.3 for Win32.
    763a061  Fix for QScrollArea in ConfigDialog.
    4a414a4  Remove debug output from Overlay_win Use QTreeView::scrollTo()
	     for the playerview.

2009-01-17
  Thorvald Natvig <slicer@users.sourceforge.net>
    695074f  Multiapp overlay for *nix
    1faac99  Support simultaneous overlay in multiple applications.
    e90dd48  Prefetch offset for createdevice.
    c168a48  Always show that we attached to OpenGL in the debug log.
    061aa70  Trampoline-based, chaining, push/ret calling overlay.

2009-01-16
  Thorvald Natvig <slicer@users.sourceforge.net>
    cb9dfc4  Remove a debug string from AudioOutputDialog
    eaacf2f  Lrelease seems to merge a few contexts, so turn nounfinished
	     and compress off.

2009-01-15
  m0ta <m0ta@users.sourceforge.net>
    318e002  German translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    7121374  WASAPI doesn't need output delay, or so it seems.
    1023428  Add a outputdelay config for AudioOutputRegistrar
    e3d63c5  Stop g15helper from spamming debug log.
    88f0732  Typo fix.
    852f60d  Thread-safe AddRef/Release for overlay. Delayed-insertion D3D9
	     hook, work around bug in SupCom.

  Bartek <sumowski@users.sourceforge.net>
    7afa56f  polish_for_1.1.7_release_update_v50-FINAL.tar

2009-01-14
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    bf34571  Updated Spanish translation.

2009-01-13
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    04825a7  Use sheets for ConnectDialog-related dialogs on OS X.
    1fd2ae4  Prettify OSX OSInfo and include architecture.

  Thorvald Natvig <slicer@users.sourceforge.net>
    d10b798  Locale-aware version queries.
    729b7a4  Fix bug where muted trayicon wasn't shown on startup.
    fde3748  Apparantly -arch:SSE (SSE1) and -QxK (SSE1) at the same time
	     becomes SSE2. This compiler is quite buggy.
    97abe97  Fix exit crash of overlay. Also include interface replacement
	     code. Not used yet though, it would fail if the game did
	     device->GetSwapChain->GetDevice, unless we patch all of those
	     as well.

2009-01-12
  ikasamah <ikasamah@users.sourceforge.net>
    10aaace  Updated Japanese translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    1948c1d  Fix positional test in Audio Wizard.
    1fe8a5d  Default IdleAudioMute to off.
    3282f3c  Update murmur-static script
    058e073  Qt 4.3 doesn't have -removeidentical for lrelease
    a450608  Descriptor test only works on *nix.
    f7d5644  Add a descriptor test
    4325826  Fix editor oops in Register.cpp
    864a40a  Updated installation documentation
    d28a8a8  Language file updates
    b13cd6a  Report true Windows version.

  Bartek <sumowski@users.sourceforge.net>
    e2701fa  Updated polish translation

2009-01-11
  Thorvald Natvig <slicer@users.sourceforge.net>
    949a8c2  Make canEcho const, unify XML for OS info and don't start UDP
	     thread if the socket failed
    0f93c33  Default Console.txt path to %APPDATA%, and add a "Run Mumble"
	     to the installer.
    1087de9  Use UTF-8 for CStrings too, fixes a Mojibake
    6a6ca34  When using WASAPI, decrease the volume of other applications
	     during speech.

2009-01-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    31e2c53  Fix string playerid ->  string name
    4320a6f  Explicitly use UTF8 for all output from murmur.
    976f17e  Spelling fix for wizard.
    27fa1bc  Workaround for distros that rename qmake and lrelease without
	     providing mkspect pointers
    bf6844a  Add the Linux OS for the VersionCheck. oops :)
    36c9d56  Mute loopback in wizard during welcome and finish pages. Add
	     question about statistics to the end of the audio wizard.
    e36d650  PTT in audio wizard.
    8f5da0f  Use qCritical where it makes sense.
    130416e  On Unix, detach even if logfile fails

2009-01-08
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    3f2c634  Fix universal build on Mac OS X (and other non-pch targets).
    7565edb  Only enable XEvie when building against an X11 version of Qt.
	     Disable g15daemon support on Mac OS X.

  Thorvald Natvig <slicer@users.sourceforge.net>
    3fc100d  If Mumble is already installed, call the uninstaller.
    68a6d8f  Ok, only disable DirectSound if we actually compiled with
	     WASAPI (it is optional, after all). Add a diagnostic output
	     from ASIO when no devices are found.
    3e25021  Merge DirectSound code into single file, and disable
	     DirectSound if WASAPI is found.
    af7c056  Anonymous statistics.
    d2af1eb  Enable tab scrolling to save a bit of space in the config
	     dialog.
    3cad4a2  Anonymous statistics.
    4bdf757  Register Win32 version in hex.
    770a421  Include version and OS with global server registration
    a93e270  Readd the untranslated English as a selectable language.

2009-01-07
  Thorvald Natvig <slicer@users.sourceforge.net>
    e0ea5df  qCompress global server list.
    46d8c8a  Register current # of users and channels on global server list
    63cca58  Whitelist the global serverlist callback from the reconnect
	     tempbans

2009-01-05
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    e9fb2ff  Allow global volume shortcuts to increase the volume up to
	     200%.

  Thorvald Natvig <slicer@users.sourceforge.net>
    6bea0e5  Intel C++ 11.0 compiles -Qipo into buggy code, so turn that
	     off.
    6d373a7  Translation file updates
    ec7f8cb  Indenting update
    1f33cb8  Write/Admin -> Write ACL
    ad2b8e2  Update copyright for 2009
    219c8c9  Add desktop shortcut on Win32.
    82bb384  Allow channel/player regexp to be changed
    6a4e383  Rename "Write" to "Write/Admin" in the UI so people stop
	     thinking it's for message writing.
    e8c9e47  CONFIG+=no-embed-qt-translations to load translations from Qt
	     from the system installed directory.
    4751c3c  Remove a few missing translations
    4294ad7  -jX safe make targets for translations
    60c2877  Build updates for newer boost and C++ compiler.

2009-01-04
  Thorvald Natvig <slicer@users.sourceforge.net>
    b0162ef  Experimental notify-less DirectSound, using estimated
	     positions.

2009-01-02
  Thorvald Natvig <slicer@users.sourceforge.net>
    6a494c8  Tab-based config widget.

2009-01-01
  Thorvald Natvig <slicer@users.sourceforge.net>
    974ced3  Update Win32 Overlay to inject LoadLibraryA. With the CBT
	     hook, this should hopefully be enough.

2008-12-30
  Thorvald Natvig <slicer@users.sourceforge.net>
    81cec84  Fix for the regression introduced by the hanged connect fix.

2008-12-25
  Thorvald Natvig <slicer@users.sourceforge.net>
    8037b8d  Fix G15 on Linux
    6c68408  Avoid stuck ServerHandler when server is unreachable.

2008-12-24
  Stefan Hacker <dd0t@users.sourceforge.net>
    02d47ea  Patch #2457331: Make murmur use its own icon

  mokomull <mokomull@users.sourceforge.net>
    82e4966  Patch #2463387: Add configuration option for hiding main
	     window to tray
    28636ed  Patch #2462928: Reload ALSA device list when settings dialog
	     is opened

  Thorvald Natvig <slicer@users.sourceforge.net>
    e87688b  Fix for crash with no LCD devices present.

2008-12-21
  Thorvald Natvig <slicer@users.sourceforge.net>
    b39c862  Don't show LCD Config if no devices are detected. Also minor
	     cleanups of G15 helper.

2008-12-15
  Thorvald Natvig <slicer@users.sourceforge.net>
    56ee577  Update G15 helper to use standard input/output Show all
	     players/linked channels. Fudge the font metrics.

2008-12-13
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    b4806cc  Add g15helper.ico.
    98da0f9  LCD Support

  Thorvald Natvig <slicer@users.sourceforge.net>
    5ab03f2  Fix some Boost/Qt stuff for icl for the G15 code.
    62d3ac4  The G15 library doesn't handle multiple devices.

2008-12-12
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    f838215  Add LCD config dialog icon.

  Thorvald Natvig <slicer@users.sourceforge.net>
    f151df1  If the UDP socket failed. don't close it. Also, enable
	     obfuscate parameter.

2008-12-08
  Stefan Hacker <dd0t@users.sourceforge.net>
    5665131  Patch #2393239: PA div by zero fix (/ bf2 plugin fix)

  Thorvald Natvig <slicer@users.sourceforge.net>
    1b264fb  Add MSVCRT to the plugins directory as well.

2008-12-02
  Thorvald Natvig <slicer@users.sourceforge.net>
    41aff5b  Fix unaligned access issue on picky 64-bit platforms (such as
	     IA64)

2008-12-01
  Thorvald Natvig <slicer@users.sourceforge.net>
    913cd1e  Keep expanded state of items when moved.
    ffa5621  Updated translation sources

  Bartek <sumowski@users.sourceforge.net>
    5eb15b1  Updated polish translation

2008-11-29
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    a76f1f0  Treat incoming and outgoing mumble:// URLs as URL encoded.
    5f3d243  Fix typo in "What's This" for Noise Supression. Fixes bug
	     #2238867.
    b6fdc6e  Add all the new positioaln audio plugins to the installer.
	     Fixes bug #2294035.

2008-11-28
  Stefan Hacker <dd0t@users.sourceforge.net>
    3eaff86  Patch #2293077: Tray icon update on disconnect
    d0f05fd  Patch #2293288: Disable PA when position is reported as
	     (0,0,0)
    d798227  Patch #2301216: Positional audio for Call of Duty 5
    8d72daf  Patch #2338606: Positional audio for Wolfenstein:ET

  Mikkel Krautz <mkrautz@users.sourceforge.net>
    b5cdef7  Fix rounding issues in AudioConfigDialog. Fixes bug #2293514;
	     Based on patch #2293714 by dd0t.

2008-11-01
  Thorvald Natvig <slicer@users.sourceforge.net>
    6be3542  Change tray icon when muted/deafened.
    d9cecff  Idle timer in client to auto-mute.
    073c72e  Fix so you can use minimal view and AlwaysOnTop at the same
	     time.
    a5a4a33  Allow boosting volume to 200% (with warning about it's
	     quality).

2008-10-22
  Stefan Hacker <dd0t@users.sourceforge.net>
    d57321b  Patch #2183224: Call of Duty 2 positional audio

2008-10-19
  mystic_sam <mystic_sam@users.sourceforge.net>
    b40cf89  Patch #2178031: AudioBar in config dialog

2008-10-18
  Stefan Hacker <dd0t@users.sourceforge.net>
    9d6f296  Sanity checking for CoD4 plugin

  Mikkel Krautz <mkrautz@users.sourceforge.net>
    b535225  Make GlobalShortcutMac build again.
    e61870e  Fix version number in BF2 plugin about dialog.

2008-10-11
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    71684f1  Make sure LogTitleBar is properly hidden when launching
	     Mumble.
    0e48e6e  Initialize DirectInput in the same thread as we are polling it
	     in.
    37e60be  Move DirectInput handling to the same thread as the Win32
	     input hooks. Fixes GlobalShortcut signal delivery.

2008-10-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    d680eb9  Add Q_DISABLE_COPY to most classes

2008-10-08
  Stefan Hacker <dd0t@users.sourceforge.net>
    2ed7d0f  Patch #2151618: Positional audio for Call of Duty 4

  Thorvald Natvig <slicer@users.sourceforge.net>
    6bedde8  Add _USE_MATH_DEFINES to the .pro for Win32 so M_PI is
	     defined, instead of locally changing the file. Oops.

2008-09-30
  Thorvald Natvig <slicer@users.sourceforge.net>
    a53239f  Compile on platforms where qreal is float

2008-09-29
  entitaet <entitaet@users.sourceforge.net>
    2cecce4  Patch #2133288: Correction in mumble_de.ts

2008-09-26
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    42b0508  Updated Spanish translation

2008-09-24
  Thorvald Natvig <slicer@users.sourceforge.net>
    7460e13  Distribute Qt 4.4.2 for Win32.

2008-09-23
  jakobdettner <jakobdettner@users.sourceforge.net>
    2a6ae35  Patch #2119472: tray icon exit menu entry on right klick

  l-n <l-n@users.sourceforge.net>
    0e86bb4  Remove C++ flags from CFLAGS
    3bd6814  Patch #2122639: fix build with older alsa

  Thorvald Natvig <slicer@users.sourceforge.net>
    270040d  Deny duplicate channel names
    46ba719  Check valid player ID on texture get/set

2008-09-13
  Thorvald Natvig <slicer@users.sourceforge.net>
    be9a94b  Bump BF2 plugin version.
    30c144d  Add uninstaller section for configuration settings and
	     databases.
    e94da5f  Version bump
    9e33a86  Changelog update

  Bartek <sumowski@users.sourceforge.net>
    9589f64  Updated Polish translation

2008-09-12
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    3b124ce  Add dbOpts setting. Allows users to specify custom connect
	     options for their QSqlDatabase.

2008-09-11
  Thorvald Natvig <slicer@users.sourceforge.net>
    7e0368e  Language updates
    2488f6f  Indenting
    1cc6bcd  Implement "Always on top" and "Ask on Quit".
    256e218  Include stereo decorrelatation in speex builds.

2008-09-10
  derandi <derandi@users.sourceforge.net>
    b8ff5ee  Patch #2104222: Workaround for buggy Alsa lib 1.0.17a

  Thorvald Natvig <slicer@users.sourceforge.net>
    f34ca68  getVersion() for DBus/ICE

2008-09-08
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    5b0322d  Distribute Murmur.ice along with the other Murmur-related
	     files on OS X.
    1430ecb  Make setChannelState() rename channels for DBus and Ice. Add
	     getChannelState() to DBus. (Fixes bug #2098835)

  Thorvald Natvig <slicer@users.sourceforge.net>
    3a393fe  sendMessage and sendMessageChannel for ICE/DBus
    2bceafa  Version bump
    65fb1bc  Distribute fake manifest for VCR90.
    4498fd6  Support source-less text messages.

2008-09-06
  m0ta <m0ta@users.sourceforge.net>
    4d89809  Updated German translation

  Mikkel Krautz <mkrautz@users.sourceforge.net>
    5fd6da8  Add mumble.icns to mumble.qrc.
    6dbc29f  Add mumble.plist to DIST.
    168e007  Add icedemo.php to OSX dist scripts.

  Thorvald Natvig <slicer@users.sourceforge.net>
    a30e610  Polish
    a68f72c  Fix translation loader.
    4c19239  Remove link.pl from distribution list
    84a0d6d  Changelog update
    3dc145d  Fix minor typo in GlobalShortcutMac

2008-09-04
  jerhum <jerhum@users.sourceforge.net>
    502512d  Updated french translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    92d9f1a  Add warning to user if speex hasn't been checked out.
    b41fc5b  Remove unused FMODAudio
    b146db0  Remove outdated link.pl (which hasn't worked for several
	     releases)
    a47fea8  Remove unused DSound/OpenAL hooks from overlay source
    9b32d99  Remove debian/ and debian-hardy/ from SVN as debian builds are
	     maintained in the official debian SVN.

2008-09-03
  Thorvald Natvig <slicer@users.sourceforge.net>
    bd660ad  Final version of polish translation

2008-09-02
  ikasamah <ikasamah@users.sourceforge.net>
    61f7ce3  Updated Japanese translation

  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    aa3c45d  Updated Spanish translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    02da74b  Remove obsolete translations from polish file
    01d6c1c  Updated language files to match new context
    2d6d90a  Add context to text "Unlink" for translators (Channel or
	     Plugin?)
    16a9832  Work around bug in QDir::addSearchPath() and
	     QTranslator::load()

  Bartek <sumowski@users.sourceforge.net>
    f1dc16c  Updated polish translation
    df503d5  Polish translation

2008-09-01
  Thorvald Natvig <slicer@users.sourceforge.net>
    4a4231d  Updated language source files
    2ff806e  Indenting
    62f8b23  Silky smooth positional audio mixer.

2008-08-31
  Thorvald Natvig <slicer@users.sourceforge.net>
    6dc327f  Include all necesarry files to compile in .tar.gz
    3b4cbea  Distribute Murmur.ice and php scripts with static binary
    bf16e9b  Update binary snapshot to update front page
    d42e60e  Switch to name hints for iterating PCM devices on ALSA.

2008-08-30
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    9ffa6f1  Use 'MBLE' process signature on OSX for easier identification.

  Thorvald Natvig <slicer@users.sourceforge.net>
    509bba6  Be slightly more forecefull when disconnecting timed out
	     clients
    61fc898  Try using the CBT hook to avoid IE slowdowns. Might be games
	     that aren't catched by this one, though :(
    c9ff1db  Use a separate message loop for the lowlevel input hooks on
	     Win32. (Fixes bug #2083383)

2008-08-29
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    2e227c0  Fix urlCallback prototype on non-x86-64. Sigh.
    8e99df7  More general Boost include path on OSX.
    d3e6a7c  Support for building against Cocoa Qt4 in compiler.pri
	     (CONFIG+=cocoa)
    3d167b5  Bundle Info.plist for Mumble AppBundle instead of generating
	     it on-the-fly.
    e88f98f  Fixes for x86_64 Cocoa version of Qt4.

  Thorvald Natvig <slicer@users.sourceforge.net>
    b8a995c  Overlay blacklist and "override" added (put a file named
	     "nooverlay" next to the executable to disable it).
    942e4a6  Work around Qt 4.4.1 "feature" of default buttons.
    4013745  Work around setRecord() being broken in Qt 4.4.1

2008-08-28
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    78d6ca4  GlobalShortcutMac cleanups.
    13037b5  Use ~/Library/Logs/Mumble.log for our log on Mac OS X.
    d066df9  Convert GlobalShortcut on OSX to use the Quartz Event Tap API.
	     Fixes bug #1929509. Enables key suppression and proper key
	     names in the config dialog.

2008-08-27
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    c468b39  Show version in title of Win32 Murmur log window.

  Thorvald Natvig <slicer@users.sourceforge.net>
    638fe72  Distrubute Murmur.ice with .tar.gz
    9303b29  Holding VersionCheck::on_Agent_requestFinished with a
	     messagebox means we'll get a second finish event when the
	     connection is closed, which goes through before we've finished
	     the first. Switch to msgBox
    45753b6  Under win32, ICE has wstring as wchar_t, Qt as unsigned short,
	     so we're switching to utf8
    5a457e8  Small cleanup of Win32 output modules.

2008-08-26
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    19a4b0a  Repair broken Murmur output formatting introduced by --version
	     change.
    ab5df06  Do not output an AppBundle for Murmur on OSX.
    eed23df  Add version parameter to commandline Murmur.
    f9952e2  Fix server thread termination on Darwin/OSX. Murmur will now
	     properly shut down when receiving a SIGTERM.

2008-08-25
  Thorvald Natvig <slicer@users.sourceforge.net>
    b4b8df3  Full fledged ICE/PHP example
    5ea8d53  Make ICE unicode safe (switch to utf16 strings)

2008-08-24
  Thorvald Natvig <slicer@users.sourceforge.net>
    a9c89d5  Package dbus-send on Win32 installs.
    3d14c72  Add DBus setRegistration call

2008-08-21
  Thorvald Natvig <slicer@users.sourceforge.net>
    ed38530  Use unfiltered input for "amplitude" VAD.
    93e2e0b  Move boost path to compiler.pri and use Boost 1.36 on Win32.
    cc57019  Switch to using event-based async ICE functions; Meta::start
	     is now safe to use. Fix a memory leak when stopping a virtual
	     server.
    f4064df  Statically compiled and linked ICE for static server.

2008-08-18
  Thorvald Natvig <slicer@users.sourceforge.net>
    8bf0437  Update defaults slightly.

2008-08-17
  Thorvald Natvig <slicer@users.sourceforge.net>
    e560cff  Allow AudioWizard audio loopback to work even if we're muted
	     on the server.

2008-08-15
  Thorvald Natvig <slicer@users.sourceforge.net>
    b12e705  Remove a bit of debugging that snuck into the last update.
    8a59b41  Qt 4.4.1 develops a few visual quirks if you reparent GUI
	     elements during their creation, so switch to explicitly
	     setting the parent.
    a29d68d  Fix ICE link bug on Win32.

2008-08-14
  Thorvald Natvig <slicer@users.sourceforge.net>
    764487e  Add suppression for XEvie and fix Qt4.4ism for context menu

2008-08-13
  Thorvald Natvig <slicer@users.sourceforge.net>
    be7961f  Update static packaging script
    d748461  Remove some SSL debugging
    7d9b553  Possible support for key suppression with XEvie, but untested
	     as Xevie itself is broken on i386
    48959a2  Add a "clear" to the context menu of the log window.
    4e1ff3f  Remember correct input device for WASAPI.
    00fa259  Indenting
    11eea44  Use explicit static_cast<> instead of implicit conversions for
	     float<->int etc

2008-08-12
  Thorvald Natvig <slicer@users.sourceforge.net>
    38da8ad  No longer need bin/ in path for Win32.
    3c03642  Fix voice activation buglet. Updated Win32 build environment
	     for VS2008 SP1 and Qt 4.4.1.

2008-08-08
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    e4b4a27  Update Benchmark.cpp to use current Auth message.

  Thorvald Natvig <slicer@users.sourceforge.net>
    15dd890  Make it slightly easier to use TAB and other UI changing
	     characters as shortcut keys.
    9490153  Wrong default port in ConnectDialog
    20594f5  Update installation instructions slightly.
    57a79eb  Suppress shortcuts from other applications.
    a9db643  Use frame power instead of peak sample for "amplitude" VAD.
	     Also use post-filtering signal instead of raw.
    ac59593  DBus/ICE getLog now uses limit offset instead of seconds

2008-08-07
  Thorvald Natvig <slicer@users.sourceforge.net>
    b36270d  Log channel id when a player moves
    cf962e6  Bit more cleanup of AudioOutput.
    b55d6c3  Use softmixer for DirectSound.

2008-07-31
  derandi <derandi@users.sourceforge.net>
    e1ecd33  Patch #2031394: Call set_rate_near() instead of set_rate_min()
	     in ALSA Output.

2008-07-21
  Thorvald Natvig <slicer@users.sourceforge.net>
    dae48d8  CIA bot on #mumble
    0cea5b9  Update documentation.
    253fbc5  For those crazy enough to want it, we actually support quality
	     1 now.

2008-07-20
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    9b7b713  Consolidate player/channel name validation into validateName()
	     functions. Fix bug that allowed users to rename channels to
	     otherwise invalid channel names. The registerPlayer() function
	     now correctly validates its name before performing its
	     actions.
    22d8808  Call correct removeChannel method for DBus as well.

  Thorvald Natvig <slicer@users.sourceforge.net>
    45d553c  Remove some debugging output from PulseAudio
    e1d9798  Fix typo in registration

2008-07-19
  Thorvald Natvig <slicer@users.sourceforge.net>
    f56a687  Fix compile bug with ICE. Attempt to fix PlayerModel bugs.

2008-07-10
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    3bb651c  Default to ICE for Murmur on OS X as well.

2008-07-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    1b1be13  Default to ICE for Win32 murmur

2008-07-07
  Thorvald Natvig <slicer@users.sourceforge.net>
    325022b  SSL PassPhrase
    3056df3  Taborder in AudioInput

2008-07-04
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    5246e8e  Ice for Mac OS X.

  Thorvald Natvig <slicer@users.sourceforge.net>
    5459683  Intel C++ release build with ICE breaks with inlining.

2008-07-03
  Thorvald Natvig <slicer@users.sourceforge.net>
    7791fa4  ICE for Win32
    38b6224  Include weblist.php using ICE
    93a9638  Update slice definition with idempotent and exceptions
    a95c1e5  Allow specification of ICE endpoint
    c8ffe27  Possible fix for PTT cue crash
    833c2fc  ICE fixes for Ubuntu

2008-06-27
  prosper_spurius <prosper_spurius@users.sourceforge.net>
    b2f70a7  Patch 2003574: Cannot save current connection

2008-06-26
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    91abf12  Add a new icon for the Mac OS X port. Contributed by Karsten
	     Bruns.

  prosper_spurius <prosper_spurius@users.sourceforge.net>
    60479dd  Patch #2002867: Patch for Bug: 1986292 Tray Icon disappears on
	     minimize

  Thorvald Natvig <slicer@users.sourceforge.net>
    2f51d05  Fix locking bug with ICE
    c8d5d87  Complete basic implementation for ICE
    98b1156  More ICE

2008-06-25
  prosper_spurius <prosper_spurius@users.sourceforge.net>
    f8fe0bd  Patch #1998399: Patch for Feature Request 1934842 Channel
	     Locking

  Thorvald Natvig <slicer@users.sourceforge.net>
    c9ffada  Framework for ICE in Murmur

2008-06-24
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    05dcd3b  Use OS X system langauge instead of locale data for
	     translation determination. (Fixes bug #1952855: Mac: Mumble
	     uses wrong language setting)
    dca353c  Better XRUN handling in PortAudio. (Fixes bug #1993878: (OSX)
	     No Audio from other after some time)

2008-06-23
  Thorvald Natvig <slicer@users.sourceforge.net>
    fa6a569  Install for all users, not current user.
    2caf10b  Align crypt buffers

2008-06-12
  Thorvald Natvig <slicer@users.sourceforge.net>
    a3501d8  Add DBus types on Win32 too.

2008-06-08
  Thorvald Natvig <slicer@users.sourceforge.net>
    46991af  Add _cs translation to qrc file

2008-06-06
  Thorvald Natvig <slicer@users.sourceforge.net>
    e28b561  Support speex.git master
    aed770f  Remove external speex SVN
    4c5157b  Add logging to phpBB auth script

2008-06-05
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    41025c8  Fixed some strings in the Spanish translation

2008-06-04
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    23da58d  Make sure Mumble will even build with CONFIG=no-dbus.

2008-06-03
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    cd41589  Remove unconditional DBus disablement on OS X. Qt can load
	     libdbus at runetime now, yay!
    29d857b  Enable proper mumble:// protocol support on OS X. Likewise for
	     Console.txt logging.

2008-05-28
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    f1835a8  More useful PlayerModel tooltips (feature request #1942941:
	     Additional tooltips)

2008-05-27
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    97d2d09  Hide 'Expand'-label in LookConfig for non-expert mode.
    d4ef1a8  Explicitly focus the text input field of the text message
	     dialog. Win32 doesn't do this by default.
    e0617e0  Implement volume shortcuts (for feature request #1954994:
	     volume keybind)

2008-05-17
  m0ta <m0ta@users.sourceforge.net>
    ab53c51  Updated translation

2008-05-11
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    bb952c1  Updated Spanish translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    5da1ea3  Version bump
    573a614  Make XEvie optional

2008-05-10
  Thorvald Natvig <slicer@users.sourceforge.net>
    ae9ebca  Changelog update
    05f0da7  Another translation sync from debian's pkg-voip team
    0b43cb1  Update persistent indexes for children in PlayerModel
    20e9aae  Fix crash when moving populated channels to parents.
    4f74fd7  Avoid crash when no audio systems worked
    4479f08  Try to speed up filling the public server list on X11. Set a
	     name on the GlobalShortcutConfig for skinning.
    6092849  Fix crashbug when %APPDATA% is unset for some reason.

2008-05-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    b4cce78  PulseAudio detection should be slightly more stable.
    7eec3b6  Cure for Qt 4.4 SSL slowness.
    196cfd5  Changelog update
    18bb1f3  Static build with Qt 4.4
    b9936a6  Indenting
    1355a0a  AGC tests
    8aae8a1  Only enable ASIO devices are found.
    8e5bf73  Renamed murmur-wrapper to murmur-user-wrapper
    3980fd7  Debian packaging fixes

2008-05-08
  Thorvald Natvig <slicer@users.sourceforge.net>
    a6b4d92  Sync debian/po translations from debian's pkg-voip team
    079e6ac  Compiler warning cleanups
    00b954a  PulseAudio detection (sort of), and sound system priority
    b4454a2  Save dock state when switching to/from minimal mode.
    c1fccd5  Timed drag-grab for the log.
    28dd945  Make the player model the central widget.
    d4b0e25  Drop the splitter and make the log and playermodel dock
	     widgets.

2008-05-07
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    3166fa4  Workaround for the, now as of Qt 4.4.0 yet worse, QWizard bug.
    8ac6be5  Fix automatic version parsing in OS X distribution scripts.
    d1c0313  Avoid loading system Qt plugins on Mac OS X.

  Thorvald Natvig <slicer@users.sourceforge.net>
    a2c4d46  Update Win32 for Qt 4.4.0

2008-05-05
  Thorvald Natvig <slicer@users.sourceforge.net>
    11db737  Translation sync

2008-04-29
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    f88d0cb  Hah. Correct 'passford' typo in Murmur usage output.

2008-04-28
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    ce01bdc  Linux only -> Unix-like systems only

2008-04-27
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    444dfd2  Oops. Remove MacVersion variable from TextToSpeech_macx.cpp as
	     well.
    96e395b  Use qMacVersion() instead of Gestalt() in
	     TextToSpeech_macx.cpp.
    fe36a5f  Distribute Murmur on Mac OS X. Update dist scripts and README
	     to reflect that.
    7ba3737  Move RC_FILE into win32 conditional in murmur.pro.
    2ef7c5a  Don't use internet enabled disk images for OSX distribution.

  Thorvald Natvig <slicer@users.sourceforge.net>
    f4a9042  Yet more resampler fixes

2008-04-26
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    83e782f  Refactor MacOS X TTS engine and disable it when running on
	     10.4 (Tiger). Thanks to Christoph Pirkl for tracking down the
	     bug.

  Thorvald Natvig <slicer@users.sourceforge.net>
    72f70e4  Fixed regexp bug in channel name matching
    3a25186  Update to resampler test
    709ad57  Move menus up one level when in minimal mode
    e4d647f  Debian/Ubuntu packaging updates

2008-04-25
  derandi <derandi@users.sourceforge.net>
    7ff1e6e  Patch 1950979: Repair broken ALSA, Changes to Plugins

  Thorvald Natvig <slicer@users.sourceforge.net>
    3cae4d8  Remove static reference to database
    c7a2d8a  Explicitly clear SQL queries
    d0e2cb6  Fix crashbug when reconnecting to removed channel
    59c8bf8  Support live changing non-critical murmur parameters
    7d87303  Indenting
    d0ac8bf  Update for Speex visibility

2008-04-23
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    83793af  Add VersionCheck QueryItem for OS X.

  Thorvald Natvig <slicer@users.sourceforge.net>
    8863fc3  Polled X input support, for OSes that lack both xevie and
	     inputdev
    5e136dc  Dumbing down the ALSA a bit

2008-04-22
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    79ef80e  PortAudio: Get rid of crackling noise when opening output
	     streams.
    c15dd01  Mention that we also run on OS X in the README.

  Thorvald Natvig <slicer@users.sourceforge.net>
    625825d  Add UID to shared memory and semaphore names on *nix, to allow
	     multiple users at the same time.
    ebe7e0e  Add HAL policy to give access to /dev/input
    cf1fb3d  Add more debugging info to ALSA, stop using advanced
	     functionality
    2ed86fd  Gracefully handle lost directsound devices. Ensure shortcuts
	     work in the application context and not just the mainwindow
	     context.

2008-04-21
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    3beb2b4  Disable the overlay ConfigWidget on OS X - we have no overlay
	     implementation yet, so showing the widget just confuses
	     people.

  Thorvald Natvig <slicer@users.sourceforge.net>
    5820e0f  Add libspeechd dependency for debian
    89d892c  Update DBus Auth for phpBB3 release

2008-04-20
  Thorvald Natvig <slicer@users.sourceforge.net>
    19f54d5  Fix missing pages with resized config widgets.
    4a2d277  Delay database matching for URLs to better work with "already
	     connected" URLs.

2008-04-19
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    6eec5d5  Stereo support for PortAudio.

2008-04-17
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    6849be2  Prefer ~/Library/Preferences to ~/.config/ on OSX for Mumrur
	     as well.
    68a7bc0  TextToSpeechMac: Fix the parameters for our SpeechDone
	     callback. I confused it with another function. This doesn't
	     change any code, as we were only using the first parameter
	     anyway.

2008-04-14
  Thorvald Natvig <slicer@users.sourceforge.net>
    2991d20  Wizard for positional audio.

2008-04-13
  inequation <inequation@users.sourceforge.net>
    9952748  Patch #1940944: getCurrentUrl DBus method

  Thorvald Natvig <slicer@users.sourceforge.net>
    e64d938  Updated README and INSTALL
    082e9ec  Minimal mode.

2008-04-12
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    44afd7a  Distribute plugins on OSX.

  Thorvald Natvig <slicer@users.sourceforge.net>
    923dfa4  Show defaults in ACL Editor
    6a2a7f7  Make URL handler not reconnect if same server, and fetch
	     username and pw from the server database.
    c0e7da4  Expand channels with players.
    0eddca3  Update default voice hold to 1 second.
    ede276c  Make ConfigWidget depend on smallest screen in multiscreen
	     setup, and fix the non-expert mode icons having spaces between
	     them.

2008-04-11
  Thorvald Natvig <slicer@users.sourceforge.net>
    f6e9798  Path fixes for installer.
    8f6afa7  Indenting
    df4967f  Use slightly more sane resampler for ASIO.
    2ed8a4b  Multichannel pulseaudio
    c50afb3  OSS fixes
    cfe94fa  Fix multichannel ALSA
    88d872c  nix compile fixes
    b90733f  Input/Output mixer speedups.

2008-04-09
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    e02770f  Make sure srs is set to NULL if we're not doing resampling.
    865effb  OSX build system updates. Add dist scripts.

  Thorvald Natvig <slicer@users.sourceforge.net>
    3dd8c55  Moved resampler for input.

2008-04-06
  Thorvald Natvig <slicer@users.sourceforge.net>
    4132161  Add float->short conversion to the mixer. Hope it works.
    53e4a7d  Bring *nix audio backends in sync with new mixer
    8dcb7d7  Fix a few compiler warnings

2008-04-05
  derandi <derandi@users.sourceforge.net>
    8a2fad6  Patch 1934642: A few linkplug fixes

  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    67de848  Updated Spanish translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    ee9397e  Make the surround mixer include a resampler and default to
	     floats. This breaks all *nix audio targets.
    6c78cc7  Forgot plugins.pri and updates to the resampler test

2008-04-04
  derandi <derandi@users.sourceforge.net>
    e917075  Patch 1931477: Linux port of Link Plugin, Minor changes to

  Thorvald Natvig <slicer@users.sourceforge.net>
    8d67fd1  Don't break Win32 API for link plugin -- there's no need.
    45121cd  Work on the speex resampler

2008-04-03
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    8438405  Prettify Mumble icon on Mac OS X (mumble.icns)
    ff58997  Fix about dialog icon on Mac OS X

2008-04-01
  mark7 <mark7@users.sourceforge.net>
    b08b47e  Patch 1930045: Man page spelling error

2008-03-29
  Thorvald Natvig <slicer@users.sourceforge.net>
    353ad07  Explicitly fetch plugin position from both input and output.
    6025c47  Fix bug if users are deleted while an admin has the ACL dialog
	     open, then applies

2008-03-28
  Thorvald Natvig <slicer@users.sourceforge.net>
    2c0a0ff  Patch 1927186: Reorder some function calls in the AudioWizard
    3acf851  Fixed installer and use explicit widechar in TestLink.cpp
    2db85f4  Plugin updates.
    7e0e525  Support setting supw from standard input

2008-03-26
  Thorvald Natvig <slicer@users.sourceforge.net>
    bb3322f  Minor update to WASAPI
    8e6bd0d  Fix for logic of Link plugin.
    113804b  Translation source updates
    21ee2fd  Indenting

2008-03-25
  Thorvald Natvig <slicer@users.sourceforge.net>
    71ac0a2  Make Linux soundsystems use new config
    9e6d1d2  Remove config for OSS, ALSA, PulseAudio and PortAudio
    324540e  Refactor "Basic Audio" config dialog, and remove most of the
	     system-specific audio configs.

2008-03-24
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    3002066  Patch 1923982: Always unmask the NoCancelButton flag in the
	     AudioWizard
    ff72785  Patch 1923965: TextToSpeech OSX Update

  Thorvald Natvig <slicer@users.sourceforge.net>
    ccdcb68  Bug 1923716: mute -> audio assistant -> bug

2008-03-23
  Thorvald Natvig <slicer@users.sourceforge.net>
    cfe1dfc  Seemingly working surround mixer for WASAPI. Though it only
	     knows about the "left" and "right" speaker for now.
    2fd3801  Infacy of surround mixer

2008-03-22
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    46510a9  Patch 1922968: Remove old reference to ALSAOutputPlayer in
	     ALSAAudio.h

  Thorvald Natvig <slicer@users.sourceforge.net>
    416e061  Updates Ubuntu packaging
    7114684  Bump version to 1.1.4
    fa43ba7  Fix iOutputDelay on *nix

2008-03-21
  Arrai <arrai@users.sourceforge.net>
    1baed7e  Patch 1921066: Option to disable html messages

  Mikkel Krautz <mkrautz@users.sourceforge.net>
    c577d45  Patch 1922328: More OSX UI cleanups
    264bbd0  Patch 1921277: Use powf instead of exp10f in PositionalSound.h
    d224c59  Patch 1920346: Disable QSysTrayIcon on OSX - use the dock
	     instead
    ce7b093  Patch 1919733: Update for GlobalShortcutMac

  Thorvald Natvig <slicer@users.sourceforge.net>
    21c33ff  Rename iDXOutputDelay to iOutputDelay and move it to the
	     general config pane.
    677a399  WASAPI Input and Output
    6f904ef  Add an icon for the network config
    4a901b1  Minor cleanup of PositionalSound and some indenting fixes

2008-03-20
  derandi <derandi@users.sourceforge.net>
    0f22bcf  Patch 1920119: ALSA Stereo
    3b43d94  Patch 1920117: Stereo Mixing
    013c29b  Patch 1920115: Positional Sound Widget + Volume Models

  Mikkel Krautz <mkrautz@users.sourceforge.net>
    83c5b45  Patch #1920346 Disable QSysTrayIcon on OSX - use the dock
	     instead
    d296102  Patch #1920332 Add a cancel button to Server Browser of the
	     Connect Dialog
    7e79880  Patch #1920239 Prefer /home/xeno/Library/Preferences/Mumble on
	     OSX
    5a151a1  Patch #1919466 About Dialog cleanups

  Thorvald Natvig <slicer@users.sourceforge.net>
    1231db2  Make the stereo-enabled output compile on Win32 as well.
    e93c194  Indenting run
    7c71309  Support system-installed speex (if it's 1.2b4 or newer)

2008-03-19
  Thorvald Natvig <slicer@users.sourceforge.net>
    6bef650  WASAPI Input

2008-03-18
  dark-storm <dark-storm@users.sourceforge.net>
    b489aeb  Path #1916131 Compilation Fixes for Visual C++ 2008

  l-n <l-n@users.sourceforge.net>
    ab6f5e1  Patch to fix no-speechd

  Mikkel Krautz <mkrautz@users.sourceforge.net>
    831aa39  Patch #1917558 Implement GlobalShortcut for OSX

  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    ec619c7  Updated Spanish translation.

  Thorvald Natvig <slicer@users.sourceforge.net>
    9ff6c4b  Update to patched speex API.
    1f89fdd  Move compiler settings to compiler.pri Fix a lot of warnings
	     with msvc
    716b39e  Add VersionInfo to the .rc files.

2008-03-17
  jerhum <jerhum@users.sourceforge.net>
    d90d605  Language update and new french translations

  Mikkel Krautz <mkrautz@users.sourceforge.net>
    bcd9c81  Patch #1916734 Fix TTS on OS X and add volume capability

  Thorvald Natvig <slicer@users.sourceforge.net>
    99aafd9  Spread registrations out a bit in time
    46ea093  Add no-client and no-server for qmake.
    703f08e  Open Console.txt in User directory if current directory is not
	     writeable.
    5fc4580  Make Win32 audio modules optional. Don't crash if no modules
	     are enabled/working.
    77a914c  Add Deafen/Mute self to the player menu if self is selected,
	     and remove "Local Deafen" (can be done by setting output
	     volume to 0%).
    a58ff30  Support skinning of the style sheet of the log window.
    10edfac  Sort server browser based on alphanumeric only (ignore
	     whitespace and punctuation)
    f391624  Remove lefotver festival settings
    033c466  Updated license script
    2afb03d  Initial support for plugins on non-win32, but disable GUI for
	     now [Ludwig Nussel <ludwig.nussel@suse.de>]
    0ccde72  Make all audio modules for Unix optional, as well as dbus and
	     speechd (CONFIG+=no-whatver)

2008-03-16
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    49bb6aa  Patch #1914863 Override TARGET for better OSX integration
    862186f  Patch #1915779 Add window titles to Mumble's about dialogs
    731d349  Remove the empty line at the beginning of the log view and
	     speed it up a bit. Based on patch #1915590
    093c378  Patch #1915523 enable _MSC_EXT only for MSVC

  Thorvald Natvig <slicer@users.sourceforge.net>
    2bb285b  Don't use boost typeof for GCC [Ludwig Nussel
	     <ludwig.nussel@suse.de>]
    7894e07  Quit => Quit Mumble

  vader42 <vader42@users.sourceforge.net>
    5399fff  Make murmur compile on freebsd

2008-03-15
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    279919a  Patches #1914820: OSX patches (from bug #1914742)

  Thorvald Natvig <slicer@users.sourceforge.net>
    ea9820f  Only reload dbus if installed for postinst
    9a01814  Basic WASAPI querying.
    48ecb5e  Minor pulseaudio cleanup

2008-03-11
  Thorvald Natvig <slicer@users.sourceforge.net>
    8527d41  Fix compile warning in PulseAudio, add --as-needed to linker
    b5a4963  Add version checking to overlay
    361d01f  Use speech-dispatcher for TTS on *nix
    9f58eb2  Add replaces: for mumble-server-web
    ebeac46  Add tooltip to systray icon so settings are saved by OS.

2008-03-05
  Thorvald Natvig <slicer@users.sourceforge.net>
    2d34ee1  Fix vcredist options.
    e4156de  Fix reference-to-just-deleted in DirectX output.

2008-03-04
  Thorvald Natvig <slicer@users.sourceforge.net>
    1fa16a1  Fix for bug #1904336 -- renaming channels could crash the
	     clients
    99ce07b  Use new murmur icon
    134dc30  More compilation and installation tunings for Win32.
    5f16fc3  Directory cleanup when purging package
    b05691c  Use floats instead of doubles where it makes sense.

2008-03-02
  Thorvald Natvig <slicer@users.sourceforge.net>
    77e5ad9  Remove ASCII warning

2008-03-01
  mit_service <mit_service@users.sourceforge.net>
    3900560  Patch: #1902036 small fix to make mac version compile

  Thorvald Natvig <slicer@users.sourceforge.net>
    677dc28  More directory fixes
    0779a0f  Default databases to ~/.config/Mumble on Linux
    9845a40  Make Vista-friendly paths for sqlite databases.
    d4cc0fe  MSVC doesn't need the thiscallresolver.
    58712ba  Fix home directory for mumble-server
    d6ef7b8  Compile Win32 with Visual Studio + Intel C Compiler

2008-02-29
  Martin Skilnand <cybknight@users.sourceforge.net>
    8b5507d  Test 16x16 icons/murmur.ico for review by slicer. Will make
	     proper 32x32 and 64x64 if OK.

2008-02-28
  Thorvald Natvig <slicer@users.sourceforge.net>
    6b75830  Add SpeexMark.pro again

2008-02-26
  Thorvald Natvig <slicer@users.sourceforge.net>
    4c5f56d  Support profile-optimized libspeex. Slim gain so far, waiting
	     to test on Core2

2008-02-24
  Thorvald Natvig <slicer@users.sourceforge.net>
    a9adffb  Compat 6 for debian
    9fd4692  Build static binaries with a qt snapshot to fix library
	     loading

2008-02-23
  Thorvald Natvig <slicer@users.sourceforge.net>
    7091532  Made VAD defaults more sane
    6df7073  Clean up
    e2718e5  Fix dates in changelog
    7e9c963  Make mumble-server suggest mumble-server-web
    a20297f  Minor textchanges in changelog
    40c8e02  Changelog update
    01ac1f5  Small update to changelog script
    897eb98  Update PulseAudio buffering to use bytes and not shorts

2008-02-22
  Thorvald Natvig <slicer@users.sourceforge.net>
    078c49c  Reread list of sinks and outputs when someone adds/removes a
	     audio card for PulseAudio

2008-02-21
  Thorvald Natvig <slicer@users.sourceforge.net>
    a3a9166  Add DBus path for Murmur on Win32
    401dc37  Major packaging cleanups. Getting ready for 1.1.3

2008-02-18
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    0c96725  Updated Spanish translation.

2008-02-17
  Thorvald Natvig <slicer@users.sourceforge.net>
    799641a  Escaping a few - in manpages
    7a93357  Small update to registration script
    6ac1563  Minor updates to ubuntu packaging

2008-02-14
  Thorvald Natvig <slicer@users.sourceforge.net>
    3a2e0c3  Language file sync.
    a413722  Make "Remove" disabled if there are no entries in the server
	     list.
    5c773fa  Refresh public server list every 24 hours. Change the "Add"
	     button into a context-sensitive "Update"/"New"/"Add" button.

2008-02-13
  Thorvald Natvig <slicer@users.sourceforge.net>
    75abc3e  Unembedding of speex FFT functions -- Mumble should now be
	     able to build with a system-installed Speex >= 1.2.0
    1d30b3e  Merged most of our speex changes into speex upstream; first
	     patch to unembed Speex.

2008-02-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    696f397  Improve visibility of linked channel state
    f745174  Fix "move to parent" bug.

2008-02-01
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    e094fc9  Automatically add/remove /dev/input devices

  Thorvald Natvig <slicer@users.sourceforge.net>
    595bd13  s/proprietary/non-standard/

2008-01-26
  Thorvald Natvig <slicer@users.sourceforge.net>
    786a5d7  Ask "Are you sure?" if quitting while connected.

2008-01-20
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    20bf4ab  Fixed some strings in the Spanish translation

2008-01-17
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    5cda451  Updated Spanish translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    a17a335  Restore linked state on server restart

2008-01-16
  Thorvald Natvig <slicer@users.sourceforge.net>
    8cca0fa  manpage updates and .config fix from patrick.matthaei@web.de
    abc6336  Disallow local mute of self

2008-01-15
  Thorvald Natvig <slicer@users.sourceforge.net>
    15709d0  Changelog update
    ee05b27  Add template and config file for .deb
    c3276f5  Final touches for debian package
    0ada0c0  Extensive updates to ubuntu package (not quite done)

2008-01-14
  Thorvald Natvig <slicer@users.sourceforge.net>
    67010a3  Rename ubuntu package from murmur back to mumble-server

2008-01-12
  ikasamah <ikasamah@users.sourceforge.net>
    d67f7e0  Japanese translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    5235be7  Work around bug in newer debian

2008-01-08
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    f8c5319  Proxy support

2008-01-07
  Thorvald Natvig <slicer@users.sourceforge.net>
    dae8d2f  Modified manpages

2008-01-06
  Mikkel Krautz <mkrautz@users.sourceforge.net>
    e83fcc8  Change the size parameter for EVIOCGBIT, based on patch by

2008-01-05
  Thorvald Natvig <slicer@users.sourceforge.net>
    dbaaa61  Increase safety size for config widgets
    fdf7ee6  Translation updates
    dc7e438  Update copyright for 2008
    9ee2657  Fix messageType for CryptSync [Mikkel Krautz]

2007-12-16
  Thorvald Natvig <slicer@users.sourceforge.net>
    ea46e42  Handle SIGTERM and SIGHUP in Murmur

2007-12-14
  Thorvald Natvig <slicer@users.sourceforge.net>
    8b43b42  Clean SQL log after adjustable interval, fetch logs via DBus
    680a5f1  Add rotateLogs and quit methods for DBus
    2724239  Make ALSA errors logwindow entries instead of popup boxes
    c024189  Show hostname when connecting.
    598359f  Revert to seconds instead of centiseconds for registration
	     delays
    0c74573  Use SSL callback to verify bound IP for multihomed machines

2007-12-11
  Thorvald Natvig <slicer@users.sourceforge.net>
    d0c6510  Update lintian override
    2ba1d59  Support espeak, add festival suggestion for ubuntu
    a8579e1  Rename user from Murmur to murmur

2007-12-10
  Thorvald Natvig <slicer@users.sourceforge.net>
    a78b7ca  Add murmur.default for init script
    f59fa90  Speex benchmark, used to test optimization flags
    ea32c9f  Early bail for non-SSL

2007-12-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    ed0acc9  ALSA labling fix. Softmixer fix.
    756749d  Standards 3.7.3 for Ubuntu
    8ae34f4  As it breaks packaging policy for many distros, don't default
	     to MMX/SSE for Linux
    d91a17f  Various UNIX audio fixes

2007-12-08
  Thorvald Natvig <slicer@users.sourceforge.net>
    254671d  Installer now kills dbus-daemon.exe if found.

2007-12-07
  Thorvald Natvig <slicer@users.sourceforge.net>
    3356227  Various dbus fixes
    e21e236  Log -h to stdout for murmurd

2007-12-06
  ars3niy <ars3niy@users.sourceforge.net>
    d2b7357  Patch 1845022 for delayed Global (fixes fonts on X11)

  metz <metz@users.sourceforge.net>
    5106764  Patch #1844930 macx: add app icon / remove window icon

2007-12-03
  Thorvald Natvig <slicer@users.sourceforge.net>
    9859554  Use SSE for Speex if compiler flags enabled
    e7449cd  Clarify source license in debian/
    b70ac9a  Language updates

2007-12-02
  Thorvald Natvig <slicer@users.sourceforge.net>
    ddebe8f  Build PortAudio and PulseAudio only if pkg-config finds them
    621c8d8  Bump version to 1.1.2 (for all but debian/)
    64f9511  Changelog update
    c286eed  Minor Ubuntu fixes
    2449c35  Fix yet another Win32 UDP bug.

2007-11-25
  Thorvald Natvig <slicer@users.sourceforge.net>
    c432df7  Threadsafe sockets for Win32
    345f554  Oops. Added collation fix to sqlite instead of mysql. Fixed.
    f40e3eb  Move audio input/output system to mumble.ini if present.
    f63c019  Use utf8 for Unicode

2007-11-23
  Thorvald Natvig <slicer@users.sourceforge.net>
    7ae7fb6  Better audio path detection. Fix race bug in AudioOutput

2007-11-21
  Thorvald Natvig <slicer@users.sourceforge.net>
    0133055  Bug 1835662: fixed caching bug in murmur dbus

2007-11-20
  Thorvald Natvig <slicer@users.sourceforge.net>
    2238c6d  Audio latency testing

2007-11-18
  fitti_01 <fitti_01@users.sourceforge.net>
    fed3ae2  Support setting dbus servie name

  Thorvald Natvig <slicer@users.sourceforge.net>
    e1c36ec  Use the new defines for Ubuntu
    ff829e1  Support NO_UPDATE_CHECK
    4447a28  DeferInit -- avoids thread races for global initializers
    d47fa08  Support setting DEFAULT_SOUNDSYS
    9257279  Better support for small desktops
    4839b07  More Ubuntu Fixes

2007-11-17
  Thorvald Natvig <slicer@users.sourceforge.net>
    ff0a5b6  Multiscreen configdialog resize support
    3a49d77  PulseAudio fix. More Ubuntu fixes
    8de19f7  Patch #1832382 by metz
    d05df59  Indent
    25e5995  Support all protocols for textmessage auto-URLing. Fix icon
	     for win32 murmur.
    d403c42  Allow all usernames if they are registered
    67dafef  Echo support for PulseAudio (untested)
    a4c0cef  Remember wizard settings for OSS/ALSA.
    579a429  PulseAudio (very basic)

2007-11-15
  Thorvald Natvig <slicer@users.sourceforge.net>
    20f8847  More Ubuntu updates

2007-11-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    6ac9d66  Updates for systemwide cgi installations
    a84aa6c  More Ubuntu fixes
    2854f19  DBus based murmur.pl registration script

2007-11-08
  Thorvald Natvig <slicer@users.sourceforge.net>
    495eaf8  Update CryptState unit test
    f76f28b  Typo in murmur.init
    00e9835  More Ubuntu packaging fixes

2007-11-07
  Thorvald Natvig <slicer@users.sourceforge.net>
    dfa2c00  Start of more complex Ubuntu package

2007-11-06
  Thorvald Natvig <slicer@users.sourceforge.net>
    25a6bac  setTexture for DBus
    ba41b1c  Update for latest Speex
    051fa33  User registraion in DBus

2007-11-05
  Thorvald Natvig <slicer@users.sourceforge.net>
    714258f  Auto-XHTMLify TextMessage
    5376461  Cleanup for non-expert mode
    9851873  Updated AudioStats. Added voice detect to AudioConfigDialog.

2007-11-04
  m0ta <m0ta@users.sourceforge.net>
    42f0f2a  more spelling errors corrected
    94ef85c  german translation updated and 1825370 fixed

2007-11-03
  fitti_01 <fitti_01@users.sourceforge.net>
    5570be1  Defaultchannel for murmur

2007-11-02
  fitti_01 <fitti_01@users.sourceforge.net>
    940521e  Fix lastchannel when using DBus auth

  Thorvald Natvig <slicer@users.sourceforge.net>
    379bd6a  Try to work around a few QSslSocket bugs

2007-10-31
  Thorvald Natvig <slicer@users.sourceforge.net>
    1661ebe  PlayerModel keeps persistent indexes and has a root item.

2007-10-30
  Thorvald Natvig <slicer@users.sourceforge.net>
    186dc71  Root channel name is server registration name
    dbaa00c  Updated changed channel names in database

2007-10-29
  Thorvald Natvig <slicer@users.sourceforge.net>
    a1ec12e  LICENSE updates
    69112b4  Fix SQLite trigger
    c3995ff  Doubleclick PushToTalk to Continous
    0810a0f  Delay MessageBox for win32 murmur
    2d1ec93  QVariant Shortcut for Linux
    98a1f8f  QVariant based GlobalShortcut

2007-10-27
  m0ta <m0ta@users.sourceforge.net>
    9db7eb0  german translation updates

  Thorvald Natvig <slicer@users.sourceforge.net>
    8513f99  Tighten database restrictions
    b47696b  Unified GlobalShortcut

  vegars <vegars@users.sourceforge.net>
    4c6231f  Hide MainWindow on trayicon click

2007-10-25
  Thorvald Natvig <slicer@users.sourceforge.net>
    a332fb8  Set SHA1 pw from murmur.pl

2007-10-24
  Thorvald Natvig <slicer@users.sourceforge.net>
    dc05737  Fix Linux overlay for older GLX
    5fd89af  Global shortcuts on Linux were completely broken

2007-10-22
  Thorvald Natvig <slicer@users.sourceforge.net>
    4f2494a  Add weblist.pl to distribution
    9ad04e0  Logic fixes for ConnectDialog
    974a742  More Speex build fixes

2007-10-21
  Thorvald Natvig <slicer@users.sourceforge.net>
    2e56c3a  Crash with MySQL without dbprefix
    267542d  Update for SVN release of Speex

2007-10-20
  m0ta <m0ta@users.sourceforge.net>
    dbe4a15  german translation updated

  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    729c5e0  Fixed some strings in the Spanish translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    c097640  Include libmySQL.dll on Win32
    23eb4ff  Make ServerDB less chatty to avoid numerous messages on Win32.
    fbf83d3  Fix bugs in bandwidth quality adjuster and show quality in
	     server information tab.

2007-10-19
  m0ta <m0ta@users.sourceforge.net>
    5b337d1  german translation updated

  Thorvald Natvig <slicer@users.sourceforge.net>
    1cb276e  Bump version to 1.1.1
    eb428c3  Changelog update script fixed
    f94cf14  Ubuntu updates
    4832ad9  Changelog update
    ab2721b  Release script updates and last batch of text fixes
    b9e7412  Changelog update
    81ce7a6  Ubuntu packaging updates

2007-10-18
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    bb17b2b  Updated Spanish translation

2007-10-17
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    705ebf2  Updated Spanish translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    dff89ba  Fixes from Klocwork analysis (http://www.klocwork.com/)
    4c6e200  Typo fix
    c97eec2  tr() bug in ALSAEnumerator
    48dc9ca  Support prehistoric OpenSSL
    dbacc6a  Minor text fixes.

2007-10-16
  Thorvald Natvig <slicer@users.sourceforge.net>
    d7d2a2a  Language update
    f63a308  Ensure labels are updated in config widgets.
    98b43c2  tarbuilder updates

2007-10-15
  Thorvald Natvig <slicer@users.sourceforge.net>
    e5a6b3e  Compile against OSS3 as well
    2407f3a  OSS4
    983f067  no pch mode for klocwork

2007-10-14
  Thorvald Natvig <slicer@users.sourceforge.net>
    98dfb02  Updated WhatsThis for ACLEditor.ui

2007-10-13
  Thorvald Natvig <slicer@users.sourceforge.net>
    b8df275  Local Deafen wasn't checkable.

2007-10-12
  Thorvald Natvig <slicer@users.sourceforge.net>
    13f67ff  Update DBus examples and fix reentrancy bugs

2007-10-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    50c912a  Qt 4.3.2 in installer Fix buglet in bandwidth auto-adjust.

2007-10-08
  Thorvald Natvig <slicer@users.sourceforge.net>
    fae3c30  Portaudio support by metz
    0b97396  Rename murmur to murmurd on Unixes and add a pid file
    7e7d5b1  Various compile fixes for Linux
    7990f39  Expert config mode
    7d26a57  Memory map bugfixes
    fdd190d  Support explicit linked games.
    74f6e5c  Add a volume slider.
    a82b296  Save state of playerview. Bump AGC to 30000
    952d3c4  Autolower bandwidth on connect
    496a6e4  Add TextMessage to svn.

2007-09-26
  Thorvald Natvig <slicer@users.sourceforge.net>
    d2b7a5a  Fix bugs in ConnectDialog
    57ad881  Serverside text-to-channel support
    64b5b2d  Multiline and multichannel messages.

2007-09-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    334fe8d  Allow a few more characters for channel and user names

2007-09-07
  Thorvald Natvig <slicer@users.sourceforge.net>
    568fdeb  More gracefully handle oversized outgoing packets from murmur
    2f046d8  Add username limit of 512 bytes. Bugs reported by Luigi
	     Auriemma

2007-09-01
  m0ta <m0ta@users.sourceforge.net>
    14c660e  new batch of translations

  Thorvald Natvig <slicer@users.sourceforge.net>
    1b048e6  mumble.desktop patch from cesare.tirabassi@gmail.com
    3c2dcd6  Fix D3D9 textures stacking. Fix OpenGL grey texture. Fix
	     CrashLog dumper. (DOH!)

2007-08-30
  Thorvald Natvig <slicer@users.sourceforge.net>
    ddfc033  Patch #1785198 by metz - Log.ui -- Logging config looks a lot
	     better.
    65f0587  Patch #1785192 by metz - ConfigDialog fixes
    7322922  Patch #1785183 by metz. Unix client compiles again.
    92ad768  Patch #1785183 from metz. Enable AudioWizard on non-win32
	     platforms.
    fad508f  Win32 OpenGL overlay. ETQW :)

2007-08-29
  Thorvald Natvig <slicer@users.sourceforge.net>
    f219925  Modularized win32 overlay. Added preliminary DSound and OpenAL
	     position grab to the overlay. (Only works with demos so far,
	     no actual games work).
    93c3b9a  Compile win32 overlay with GCC.
    0678e97  Win32 overlay no longer depends on D3DX

2007-08-28
  Thorvald Natvig <slicer@users.sourceforge.net>
    aca25ea  Re-add bf2 plugin to win32 installer.
    80969a6  Use file mapping for shared memory on Win32.
    48b53a0  Win32 installer asks for reboot if it can't update overlay
	     file.
    cf86cdc  Various bugfixes. Updated overlay to only draw on topmost
	     surface. Needs testing.

2007-08-25
  Thorvald Natvig <slicer@users.sourceforge.net>
    ceea71c  Bugfixes from public snapshots.

2007-08-21
  Thorvald Natvig <slicer@users.sourceforge.net>
    c49721c  Automatically check version on startup.
    2027b32  Re-enable drag&drop.

2007-08-20
  Thorvald Natvig <slicer@users.sourceforge.net>
    6c74656  Minor fixes for new config system. Updated installer for Qt
	     4.3.1

2007-08-19
  Thorvald Natvig <slicer@users.sourceforge.net>
    e90cb8a  Client now has "restore to default" and "restore to last
	     saved" configuration, and all config is stored in the same
	     way. Only changed configuration data is stored on disc,
	     meaning if a user leaves a setting at it's default and the
	     default later changes, the user will use the new default.

2007-08-16
  Thorvald Natvig <slicer@users.sourceforge.net>
    7293dfc  plugins.pro

2007-08-14
  Thorvald Natvig <slicer@users.sourceforge.net>
    ecce8da  Update .uis for Linux
    a30e3e0  Fix warnings on Win32
    bdee1de  More .ui conversions.

2007-08-13
  Thorvald Natvig <slicer@users.sourceforge.net>
    ae57734  BanEditor.ui
    cc362d1  ConnectDialog.ui
    ff13d28  Fix meta-registration
    2e5edd8  MainWindow.ui
    1193b20  Show URL in tooltip for HTML anchors.
    8c73444  Minor fix for TTS on Festival
    1753f90  Safe HTML in Log

2007-08-12
  Thorvald Natvig <slicer@users.sourceforge.net>
    d30bee2  Yet another fix for reentrant SSL messages
    6551302  Manual close of application

2007-08-11
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    1d4905c  Updated Spanish translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    9dbb120  Experimentation with UI Designer
    613fc3d  Local deafen
    8be82dd  Adjust noise suppression level in settings.
    6e2aad3  Use SHA1 for binary checksum for the upgrade check.
    dc72837  View extended server connection statistics.
    36f625a  Start of proper statistics
    467316a  Strip HTML from incoming TextMessage
    76d9503  Certifiticate => Certificate

2007-08-10
  Thorvald Natvig <slicer@users.sourceforge.net>
    1948e6c  Strip HTML from TTS for Win32.
    1e5cdbb  Support URLs in the log window.
    3e92399  OOO crypt recovery
    2f9dd3f  Fix GlobalShortcut_unix
    5c76721  Update registration script
    c17cc96  Support kernel input devices on Linux

2007-08-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    c95963a  Update win32 Build Environment to GCC 4.2.1, Qt 4.3.1 and
	     Boost 1.34.1

2007-08-08
  Thorvald Natvig <slicer@users.sourceforge.net>
    4cc8782  Fix referential integrity for player group-memberships
    6237d0f  Add DBus getAllConf() and setSuperUserPassword
    0ae6c48  Ask for AudioWizard config on first start.

2007-08-07
  Thorvald Natvig <slicer@users.sourceforge.net>
    681c77f  PushToLink implies AltSpeak
    e2f1dfe  Fix a few more SQL problems

2007-08-06
  dersebi <dersebi@users.sourceforge.net>
    b6b99c2  Fix typo in mumble.pro for OSX

  Thorvald Natvig <slicer@users.sourceforge.net>
    6d169a2  Yet one more try to get -mmmx out of the mac build
    d5a5441  Compile fix for 32-bit lenny
    65c7e7e  Another tiny SQL fix
    705ce12  Typo which broke the client. Badly.
    6bdeb32  Fix two crashbugs in murmur
    7d2c4fa  SQL Fix in ServerDB
    93e427c  Rename channel

2007-08-05
  Thorvald Natvig <slicer@users.sourceforge.net>
    fbe5831  Add TestCrypt to SVN
    c18a161  Minor build fix for regular Linux
    0c3b618  OSX patches from mit_service
    32c3dfc  Optimized crypto
    9fdefc0  Fix crash from race condition in DXAudioOutput

2007-08-04
  Thorvald Natvig <slicer@users.sourceforge.net>
    9e61611  Fixed ConnectDialog to be slightly more sane.
    d9671c9  Minor bugfixes for DB and DBus layers
    923901a  Updated server info dialog to reflect voice crypt.
    0bc0120  Use correct frame size for bandwidth calculation
    03a7e5a  Fix crypt on client.
    7ed5e47  Testing UDP crypt
    a6376f8  Build updates
    9eafd13  Link vertical height to font size.

2007-08-03
  Thorvald Natvig <slicer@users.sourceforge.net>
    d252e43  Allow multiple tests on same machine
    0df11b8  Microbenchmark
    7168275  URL path == channel support
    ffb4b96  MySQL schema embedded in murmur. Reconnect to SQL server on
	     connection lost.
    b80bece  plug:"hw instead of plug:hw

2007-08-02
  Thorvald Natvig <slicer@users.sourceforge.net>
    24b1c04  DBus and URL support for Mumble. Fixed DBus autolaunch for
	     Win32. It's a hack, but it works.
    f9ffe34  Native UDP for UNIX as well
    7e24961  Win32 Murmur DBus

2007-08-01
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    152d58b  Updated Spanish translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    42a69cc  SQL reconnect on lost connection
    0ef9c34  Per-server logging
    a7186c6  OSX Patch for murmur from mit_service
    2ac4ca7  Timestamp players table
    418cdba  Make sure no -2 slips through to Mumble
    fc94f49  Multiserver support

2007-07-31
  Thorvald Natvig <slicer@users.sourceforge.net>
    d13bb46  server_id in ServerDB
    11d9b70  Client compiles again
    6d6bcff  Global-less server. First step of multiserver support.
	     Completely breaks client

2007-07-30
  Thorvald Natvig <slicer@users.sourceforge.net>
    a5c59c5  Platform edit
    1219168  mouse shortcut patch from javitonino

2007-07-28
  Thorvald Natvig <slicer@users.sourceforge.net>
    4b9beb2  Czech translation from David Pravec
    07da183  Name -> Label

2007-07-22
  Thorvald Natvig <slicer@users.sourceforge.net>
    3f77c95  Installer fixes for openssl.

2007-07-21
  Thorvald Natvig <slicer@users.sourceforge.net>
    639ca57  Increase max settable amplification to 40x
    db4e86e  Reset PushToTalk when configuring.
    7296aed  Make qFatal pop up as ::MessageBox on Win32.
    5a19931  Use mingw built openssl -- the precompiled one depended on
	     nondefault Visual C runtimes.
    8f15162  Support fixing case of usernames in DBus auth
    b4817ee  obsessive PacketDataStream optimization

2007-07-20
  m0ta <m0ta@users.sourceforge.net>
    47fdafe  translations

  Thorvald Natvig <slicer@users.sourceforge.net>
    b9eb5cc  Database cleanups and support for dbPrefix
    5be2268  IP Binding for murmur
    7eff82c  Timer tests
    3fdb39f  Test indenting
    f81c7c2  Unit tests
    ae9f13e  PacketDataStream bug for negative numbers > 32 bit
    3d8e058  Reentrancy fixes

2007-07-19
  Thorvald Natvig <slicer@users.sourceforge.net>
    d7d1535  SSL crashfixes, ui session drag-and-drop fix.
    eebc950  queued readyRead, fixes a SSL crashbug
    0147de1  Small optimization to win32 timer.
    f081a7a  Deprecation cleanups
    04d7e5f  LARGE_INTEGER fixes for murmur
    62dbc00  sPlayerId => uiSession
    3621a6d  More indenting
    0372cc2  Use new Timer for murmur
    d4a1118  Ping measurement in Server Information, and optimized
	     AudioInput->UDP latency.
    7d145eb  64-bit message support.
    b3ac4e4  Latin1 for Festival

2007-07-18
  m0ta <m0ta@users.sourceforge.net>
    3bbdcb6  German translation added.

  Thorvald Natvig <slicer@users.sourceforge.net>
    990f220  Proper certificate viewer.
    7080e90  A few missing QLatin1Strings and also switch to pkgconfig for
	     ALSA and Xevie
    b00a1b0  Use pkgconfig for openssl link
    ca9c473  Hashed passwords in murmur database

2007-07-17
  Thorvald Natvig <slicer@users.sourceforge.net>
    1b265ff  reindenting all the code
    d9ca67e  installer fix for OpenSSL
    0178d66  Avoid closing on errors, that happens automatically now
    87e1835  Fix for #1755731. The event loop runs while dialogs are open.
    8d80379  SSL client support.
    e28c646  UTF8 for dbusauth
    a6442cd  Forgot to add new Cert.h and .cpp
    852c064  Server-side SSL encryption
    247b0a8  All icons can now be changed in skins.
    3a2adb6  Crashbug in ConnectDialog

2007-07-16
  Thorvald Natvig <slicer@users.sourceforge.net>
    ffd5dfd  Some more dbusauth fixes
    9c0b661  Cached database handle in dbusauth.pl
    e6afb86  hostname registration
    e083364  overlay debug fixup
    aa7b85a  Fix buglet in PlayerModel

2007-07-15
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    bcac0ae  Minor corrections to the Spanish translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    76171dd  Platform-independent qmake pathhandling.
    a9fba24  Include QT translation
    d469c74  Overlay debugging
    81d3d1d  Explicitly link overlay with gcc to avoid libstdc++ dependency
    c3def10  Build fixes for Ubuntu
    33604ed  Changelog update
    9dd4348  Final lupdate before release.
    b4d3042  Some more Qt 4.2.2 fixes.

2007-07-14
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    d2952d5  Updated Spanish translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    fe73c93  Capitalization fix.
    36b9241  Updated French translations from Thibaut Girka.
    e13024e  Keep just the LD_PRELOAD overlay
    c3d7033  Forgot a conditional for the audio wizard

2007-07-13
  m0ta <m0ta@users.sourceforge.net>
    5e25cd3  Should do svn update more often ;)
    d259422  more translations. Unfortunately since I don't have Qt 4.3 I
	     can't really check if the translations fit the wizard.

  Thorvald Natvig <slicer@users.sourceforge.net>
    b0a7f04  Textlogger for murmur win32.
    cc7e2f2  AudioWizard builds on Win32 only for now -- no reliable way to
	     get moc to check qt version.
    bc6c452  Clean compile on Qt 4.2.2
    40ca34f  More stable LD_PRELOAD for GL overlay

2007-07-12
  Thorvald Natvig <slicer@users.sourceforge.net>
    12416a4  Fix compiler warnings
    22c56e8  Wizard registrar for ALSA
    dd4b82a  Fix bugs discovered by Klocwork [www.klocwork.com]
    ade816d  Simple userauth. Example expanded to show phpBB3
	     authentication.
    c7bc5c1  More flexible bandwidth detection

2007-07-11
  Thorvald Natvig <slicer@users.sourceforge.net>
    4519fbc  Use new overlay icons.
    9906dc2  Audio Wizard. Breaks Linux for now.

2007-07-10
  Thorvald Natvig <slicer@users.sourceforge.net>
    a66039d  Use aligned stack buffer for MMX mix
    7c5c3a0  I give up -- we create a separate context for the overlay
    fbf303a  Loopback cleanups
    3b2baae  SineAudio fix, and non-mmx mixer support.

2007-07-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    34c2b3b  Doubleclick player to send message, based on patch by m0ta.
    76512f6  expand all channels by default.
    0b76788  Minor Dbus fix and changed path and service name
    6b42fbb  Packet loss and delay variance for Loopback mode.

2007-07-08
  Martin Skilnand <cybknight@users.sourceforge.net>
    c36e1f6  Test icons with hard edges for overlay for cartoon look. If
	     this doesn't look good, I will try soft edges.

  m0ta <m0ta@users.sourceforge.net>
    3087e08  slight changes to the translations

  Thorvald Natvig <slicer@users.sourceforge.net>
    273b997  Revert to plain old C for Linux overlay
    c338f5a  Jitter buffer fixes. Should work better now.

2007-07-07
  m0ta <m0ta@users.sourceforge.net>
    de744a8  updated german translation
    412fb15  add menu entry for freedesktop.org compliant distributions
    c504036  updated german translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    c0aa51a  Part #1 of Speex Packet merging and Jitter updates.
    ffafa93  Include French translation in binaries.
    c13d4a8  FR 1749422: User Textures can now be disabled.
    d9122f8  Updated Linux overlay

2007-07-06
  Thorvald Natvig <slicer@users.sourceforge.net>
    9df9f51  QLatin1String for Overlay
    3bd3e3a  Server loopback mode
    98c1b1d  Local loopback mode.
    3af031a  Overhaul of Audio Output to support non-speech sources.
	     Probably break ALSA.
    62b5281  Players On Top
    e115603  Verbose output
    b660cd9  Popup user dialog on wrong username/pw to reconnect.
    1e66e95  Popup on rejects.
    36de5ea  Add rejection enum

2007-07-05
  Thorvald Natvig <slicer@users.sourceforge.net>
    4ab2813  Overlay tuning.
    fc85579  Updated murmur cgi script for image upload
    25082c4  Custom UserTextures
    43853bc  Wrong int encoding in PacketDataStream.
    24c7513  Fixup of Connection
    e6c259a  More blob support, and break binary protocol AGAIN
    4937d08  Serverside usertexture support
    a965a37  Reconnect bugfix
    c48af48  Proper fix for supression bug
    12fe384  Working Linux OpenGL overlay

2007-07-04
  Thorvald Natvig <slicer@users.sourceforge.net>
    bfe2270  Testfix for 1746996
    4dc29c6  Text fixups
    115f114  Functional gl injection on linux games
    fede5fc  Mumble-side of Linux overlay

2007-07-03
  Thorvald Natvig <slicer@users.sourceforge.net>
    75d245d  Config fixes
    f87c058  Updated overlay for Win32, should now be possible to port it
	     to Linux.
    7da4eba  Updated french translation from Damien Rannou and Thibaut
	     Girka.

2007-07-02
  Thorvald Natvig <slicer@users.sourceforge.net>
    5b930d1  Consider connecting "Activity"
    71f9d65  Typo in ConnectDialog
    0338060  Need to distribute QtXml too.
    19ff55e  Correct path in client browser.
    074fc02  Correct path for server registration
    7b1cc75  Server Browser
    8190ea1  Patch cleanups.
    4434fbd  Keep stream version at 8.
    f9068cb  TextMessage patch by Mikkel Krautz
    3aeb072  Fix fake DBus for Win32
    82ffa89  DBus based authentication, based on patch from Thibaut Girka
    f9b2025  Fixed softmixer

2007-07-01
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    880c997  Updated translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    2d5b88c  Remove default buttons until they're fixed.

2007-06-30
  Martin Skilnand <cybknight@users.sourceforge.net>
    0fe82f4  Fix alpha blending in some icons. Was due to indexed colors in
	     source files. Need to see a test version to verify quality.

  Thorvald Natvig <slicer@users.sourceforge.net>
    c08b1fe  Registration part for the server browser
    d1ffed0  Fix recursion bug in getGroup
    a08f13f  Update overlay on disconnect.
    2f6bd48  Add mysql.sql to distribution
    cbbb73d  Avoid double-allocation of outgoing packets
    2ef9c1d  Start of zero-copy UDP thread

2007-06-29
  Thorvald Natvig <slicer@users.sourceforge.net>
    8d09fcc  French translation from Damien Rannou
    e7b260e  Updates for new binary protocol.
    e19057f  Reserve space
    a9008bd  New datastream. Breaks all kinds of things

2007-06-28
  Álvaro Manuel Recio Pérez <naproxeno@users.sourceforge.net>
    e2a05bc  Updated Spanish translation

  Thorvald Natvig <slicer@users.sourceforge.net>
    960fa0c  Forgot to rerun lupdate prior to release. Oops.

2007-06-27
  Thorvald Natvig <slicer@users.sourceforge.net>
    df7153c  More descriptive information for horizontal splitter.
    50c7fc4  Bump version to 1.0.0

2007-06-26
  Thorvald Natvig <slicer@users.sourceforge.net>
    3c57cab  Changelog update
    df09fd7  Fix race in UDP thread creation
    4351e29  Fixed demonizing on Linux
    44e43ea  Daemonized murmur

2007-06-25
  Thorvald Natvig <slicer@users.sourceforge.net>
    df31097  Softmixed ALSA

2007-06-24
  Thorvald Natvig <slicer@users.sourceforge.net>
    d0ade65  Start of mix-it-all-together ALSA support
    1888f38  Add MMX based software mixer
    38f5604  ALSA Config dialog
    ff8266c  Fix crashbug on late UDP packets
    28ad3e9  Try externals

2007-06-23
  Thorvald Natvig <slicer@users.sourceforge.net>
    dd39467  Festival under Linux

2007-06-22
  Thorvald Natvig <slicer@users.sourceforge.net>
    be21e28  Make new timeout code lock-safe on Qt 4.2. Oops.
    77cf932  Add shortcut to quit application, and add standard shortcuts
	     for a few other actions.

2007-06-21
  Thorvald Natvig <slicer@users.sourceforge.net>
    8bdff0b  Really close on mainwindow close
    c3851b5  Fix a few bugs, add -h to murmur

2007-06-20
  Thorvald Natvig <slicer@users.sourceforge.net>
    1032f63  Train coding session. Connections have a timeout on the
	     server. Config dialog will add a scrollbar if needed. ServerDB
	     doesn't create deprecated tables. Ghost handling autokicks if
	     old ip == new ip, even if unregistered. Added some more locks
	     to the thread handling.

2007-06-18
  Thorvald Natvig <slicer@users.sourceforge.net>
    f2eaeb2  Explicitly used queued connections for UDP thread.

2007-06-16
  Thorvald Natvig <slicer@users.sourceforge.net>
    0941196  Allow adding groups again

2007-06-15
  Thorvald Natvig <slicer@users.sourceforge.net>
    e18767b  Option to expand all channels when connecting [Feture Req
	     1619001]

2007-06-13
  Thorvald Natvig <slicer@users.sourceforge.net>
    9ceb357  Make DBUS bindings conform to Qt standard, fix Introspection
	     bugs
    1d9675f  Binary linux server release script
    f49b38b  QLatin1String
    1dee004  More database updates

2007-06-12
  Thorvald Natvig <slicer@users.sourceforge.net>
    4c237b2  Open connect dialog on program start
    08edc1d  Last part of qstring fixes and some qt 4.3 fixes for win32.
    9dafd37  Update copyrights to 2007
    20d1771  Support fully static build of murmur
    07531c5  QString::fromAscii
    b20e0e1  Updated Ubuntu build scripts
    477a706  Updated source-release scripts
    dd06d83  Make .mumble.sqlite hidden
    7f40e44  Remove deprecated Commands.txt
    563f986  Multiple dbus sources

2007-06-11
  Thorvald Natvig <slicer@users.sourceforge.net>
    df89923  Clarified licensing of binaries
    9577644  Initial multi-database support
    8a1f436  Fast path UDP thread
    057c270  Ensure correct include path
    28d984b  Implemented all DBUS functions

2007-06-08
  Thorvald Natvig <slicer@users.sourceforge.net>
    500013b  update connections table when changing channel
    73e91ad  DBus skeleton functions done, seems to work

2007-06-05
  Thorvald Natvig <slicer@users.sourceforge.net>
    7ce31fd  Don't install DBus on win32
    3f35825  Functional DBUS

2007-05-29
  Thorvald Natvig <slicer@users.sourceforge.net>
    9a1016e  Install QtDBus on Win32, and go back to Qt 4.2 until 4.3 is
	     actually released.

2007-05-28
  Thorvald Natvig <slicer@users.sourceforge.net>
    7da815d  Initial DBus tests
    8606909  Setting period size changes the pointed to int
    74b1492  Dead code removal
    f28d9ae  Restored the "Microphone Loudness" information.
    19fdb33  SNR based voice detect

2007-05-24
  Thorvald Natvig <slicer@users.sourceforge.net>
    060701b  restored icons
    10a17f9  Post-refactoring cleanups.
    56bf13f  Speex is now a static library, don't include the old dll in
	     the installer.
    111ffe6  Linux build updates
    3f3709e  Updates to speex build for Linux
    3b0fa27  Refactoring. Updated licenses to 2007 versions.
    4151f4b  Refactoring
    3be4aec  No longer manually reset preprocessor loudness.

2007-05-23
  Thorvald Natvig <slicer@users.sourceforge.net>
    99a73c9  Updating to SVN Speex again. Missing voice detection.
    a1ba433  Avoid contignous disk access in murmur, patch by buggerone
    0d9f5d0  Applied ALSA patch from uz_ Made some minor corrections to
	     installer in preparation for Qt4.3

2007-03-03
  Thorvald Natvig <slicer@users.sourceforge.net>
    9ca4935  Bugfix: Iterating all connected players should only iterate
	     players that are also logged on.

2006-12-21
  Kjetil Jørgensen <kjetijor@users.sourceforge.net>
    61869c8  Connect-dialog available while connected. When connectiong
	     while connected, an implicit disconnect will be issued first.
	     4 whitespaces replaced with a tab

2006-12-17
  Thorvald Natvig <slicer@users.sourceforge.net>
    dd2bcee  Murmur should read .ini file before opening DB. [patch by
	     buggerone]

2006-12-13
  Thorvald Natvig <slicer@users.sourceforge.net>
    1caac42  Use .ini file in executable directory if it exists.

2006-12-04
  Thorvald Natvig <slicer@users.sourceforge.net>
    c7caa3a  Don't translate registry strings.
    373bd84  Use Qt 4.2's saveGeometry/restoreGeometry

2006-12-02
  Thorvald Natvig <slicer@users.sourceforge.net>
    897b097  Updated paths to match recommendations from Wiki

2006-11-27
  Thorvald Natvig <slicer@users.sourceforge.net>
    e652e5d  Add firmumble.inc to tarball

2006-11-26
  Thorvald Natvig <slicer@users.sourceforge.net>
    cf88b1f  Added Russian translation. Added icon for LookConfig

2006-11-24
  Martin Skilnand <cybknight@users.sourceforge.net>
    bac023f  Updated config_shortcuts.png with better look and feel and
	     added config_ui.png for evaluation by lead programmer.

2006-11-23
  Thorvald Natvig <slicer@users.sourceforge.net>
    6f09e6b  Tiny typo correction.

2006-11-18
  Thorvald Natvig <slicer@users.sourceforge.net>
    a213324  Add LookConfig

2006-11-15
  Thorvald Natvig <slicer@users.sourceforge.net>
    3ebdd1c  Look&Feel Config. Skinning support.

2006-11-03
  Thorvald Natvig <slicer@users.sourceforge.net>
    9a36950  Switch to use QSystemTrayIcon

2006-10-30
  Thorvald Natvig <slicer@users.sourceforge.net>
    b6482fa  Bitrate info in AudioDialog is now translated.
    9cf751e  bump version
    5e78a5d  Add version info for debian builds
    344a677  Updated the speex build files for win32
    3069c21  qt4 lrelease. *Sigh*
    2bcd9bd  Changelog update
    3965f15  Add lrelase for debian build
    dd33406  Last batch of translations for 0.9.4

2006-10-27
  Thorvald Natvig <slicer@users.sourceforge.net>
    a52b320  Don't save Win-only settings on non-win32.
    73adf9c  Reduce initial buffer fill
    85bdeb2  Edgy Eft

2006-10-26
  Thorvald Natvig <slicer@users.sourceforge.net>
    e2e41e7  Negative user feedback on the new speex preprocessor; revert
	     to last beta until it's finished.

2006-10-25
  Thorvald Natvig <slicer@users.sourceforge.net>
    8bd4513  Fixing of audiostats for new speex.
    01eb8dd  Support for new Speex preprocessor which doesn't export it's
	     data.

2006-10-24
  Thorvald Natvig <slicer@users.sourceforge.net>
    7be4fc2  Updates for connectdialog in qt 4.2.

2006-10-20
  Thorvald Natvig <slicer@users.sourceforge.net>
    dc7980d  DirectInput workaround for keyboards with thousands of
	     buttons.

2006-10-17
  Thorvald Natvig <slicer@users.sourceforge.net>
    34f0bee  Grammar fixes
    5d83197  Even more translatable strings

2006-10-16
  Thorvald Natvig <slicer@users.sourceforge.net>
    071eca4  Add a few more strings for translation.

2006-10-15
  Thorvald Natvig <slicer@users.sourceforge.net>
    692a929  Updated translation settings.

2006-10-14
  Thorvald Natvig <slicer@users.sourceforge.net>
    5fbf4c8  Minor typo in translation fixed.
    37b6911  VersionCheck shouldn't bail if it can't read the binary.
    3843209  German translation provided by Matthias Vogelgesang
	     (m0ta@sf.net) Spanish translation provided by Álvaro M. Recio
	     Pérez (naproxeno@sf.net) Added more strings to be translated
	     based on patch by m0ta. Made translation files embedded in
	     binary.
    efda664  Working Globalkeys for X11

2006-10-12
  Thorvald Natvig <slicer@users.sourceforge.net>
    4e24929  More globalkeys linux. Mostly messed up.
    401abe9  Add Turkish translation

2006-10-11
  Thorvald Natvig <slicer@users.sourceforge.net>
    c92a962  Start of shortcuts for X11

2006-10-08
  Thorvald Natvig <slicer@users.sourceforge.net>
    d8f202b  Fix for new modelview in 4.2.0. Now possible to drop in root
	     channel again.

2006-10-05
  Thorvald Natvig <slicer@users.sourceforge.net>
    338d506  Update for QT 4.2.0
    74119e3  Update debug output slightly

2006-10-04
  Thorvald Natvig <slicer@users.sourceforge.net>
    cd69712  Murmur can now compile on compilers without Precompiled
	     Headers.
    6a07185  Split windows debug into separate file, add proper crashlog to
	     the Console.txt

2006-10-02
  Martin Skilnand <cybknight@users.sourceforge.net>
    a27c690  New temporary icon for shortcuts as requested by lead
	     developer.

  Marius Grannæs <grannas@users.sourceforge.net>
    099b268  Added a more informative description.

  Thorvald Natvig <slicer@users.sourceforge.net>
    349f013  Console.txt error logging and fixed some shortcut bugs
    d7cdbc3  Spelling fixes
    6ffa52e  Prepare for Spanish translation.
    41b7ce9  Add icon to dialog, fix a few bugs
    860469f  Dumped DI actions in favor of raw.. Which enables more fancy
	     combinations, but DIA was standardized.. If only the config
	     dialog had been prettier.
    aac37d0  Overlay nothing/all/talking as config option
    741e65b  Bump version

2006-09-29
  Thorvald Natvig <slicer@users.sourceforge.net>
    f7ddd6a  ubuntu dapper build

2006-09-28
  Thorvald Natvig <slicer@users.sourceforge.net>
    a889f99  Older speex libraries don't have speex_echo_ctl
    11fd8d0  Add pch files to tarball and mention PCH in INSTALL

2006-09-25
  Thorvald Natvig <slicer@users.sourceforge.net>
    c571563  Set sample rate for echo canceller

2006-09-22
  Thorvald Natvig <slicer@users.sourceforge.net>
    5029ff8  Password resend
    e6b43de  Updated Overlay error message.
    55212bd  Changelog update
    3f41e7d  SVN Changelog
    7491c2e  2006 updates

2006-09-21
  Thorvald Natvig <slicer@users.sourceforge.net>
    af2452d  Overlay crash fix
    d107d80  Cleaned up overlay interface and made it show mute/deafen
	     status.
    2a1bfcb  GUI for reconnect
    8fa9adb  Allow connect directly to channels you're supressed in without
	     crashing.
    8718d9a  Automatic reconnect (GUI config missing)

2006-09-20
  Martin Skilnand <cybknight@users.sourceforge.net>
    62b3213  Third try for talking_alt.png icon color.
    b34849e  Updated icons, to remove white border on _on&_off and to try a
	     lighter shade on _alt.

  Thorvald Natvig <slicer@users.sourceforge.net>
    8fea9ce  TTS Volume adjustable

2006-09-19
  Martin Skilnand <cybknight@users.sourceforge.net>
    38398b6  Added muted_local.png and talking_alt.png after request from
	     main developer.

  Thorvald Natvig <slicer@users.sourceforge.net>
    10ecf31  Added local mute and updated icons.
    070248a  Fixed push-to-talk, which I broke. Fixed overlay for players
	     in other channels.

2006-09-18
  Thorvald Natvig <slicer@users.sourceforge.net>
    ef67602  Swapped privileges for Speak and AltSpeak
    9c2e8a2  Various AltSpeak fixes. Fixed Deny-Speak-Implies-Mute on
	     remembered channel freeze. Don't set high priority in debug
	     client.
    aa95258  write does not imply speak
    e82c0f8  Support no-exception compile to avoid mingw lib dependency.
    7e85259  AltSpeak

2006-08-25
  Thorvald Natvig <slicer@users.sourceforge.net>
    ac4f1c5  Updated overlay to compile with newer DX SDK

2006-08-23
  Thorvald Natvig <slicer@users.sourceforge.net>
    e8512e0  Updated defaults for 3D sound

2006-06-05
  Thorvald Natvig <slicer@users.sourceforge.net>
    4bc4de8  The client now works on Linux, and FMOD is no longer used.
    dcff32d  Removed FMOD from distribution
    412ff94  TrayIcon should hide
    ec35202  Poll() based ALSA, sigio crashes X
    64f97f7  Ubtuntu has ancient Speex.
    23301d0  Initial ALSA Skeleton

2006-05-31
  Thorvald Natvig <slicer@users.sourceforge.net>
    388b34a  Use ALSA on Linux
    30c2bed  Compiles on Linux again

2006-05-27
  Thorvald Natvig <slicer@users.sourceforge.net>
    a850488  QT 4.1.3 updates

2006-05-05
  Thorvald Natvig <slicer@users.sourceforge.net>
    c5f5f18  Updates for new speex jitter buffer

2006-03-29
  Thorvald Natvig <slicer@users.sourceforge.net>
    2c84f58  WoW 1.10
    d4dd9ca  Minor updates

2006-03-17
  Thorvald Natvig <slicer@users.sourceforge.net>
    815e884  UNIX murmur compile fixes
    5148d0b  Qt 4.1.1 Allow TCP Compability mode (with TCP_NODELAY) for
	     people with seriously broken ISPs.

2006-03-01
  Thorvald Natvig <slicer@users.sourceforge.net>
    fa9df03  No longer default export of wow plugin, as it's out of date.
    229de2c  Try EF type of service first. Also, more conservative defaults
	     for audio settings, as the current defaults cause problems on
	     most AC97 onboard cards.

2006-02-14
  Thorvald Natvig <slicer@users.sourceforge.net>
    9290b59  Server IP TOS
    09b5cf3  IP Type of Service

2006-01-29
  Thorvald Natvig <slicer@users.sourceforge.net>
    e2112d1  Longer AudioHold

2006-01-18
  Thorvald Natvig <slicer@users.sourceforge.net>
    cbaa6dd  Textfile changes for the Linux release.
    06a6817  Initial Linux testing work
    13e0471  missing distfiles

2006-01-17
  Thorvald Natvig <slicer@users.sourceforge.net>
    2e17851  Linux compiles clean
    dccc416  Forgot to check in pch headers
    7efd9c5  Fixed FMOD
    8a5165f  FMOD support, not working yet though.

2006-01-11
  Thorvald Natvig <slicer@users.sourceforge.net>
    a1553af  WoW 1.9.1 updates

2005-12-31
  Thorvald Natvig <slicer@users.sourceforge.net>
    e190a91  Precompiled header support

2005-12-25
  Thorvald Natvig <slicer@users.sourceforge.net>
    4a934a8  Require 4.1.0 for mumble client, as that seems to work without
	     patching Qt (which was required for 4.0.1)
    3b910c6  Support max # users limitation on server.

2005-12-24
  Thorvald Natvig <slicer@users.sourceforge.net>
    1ba4259  Update installer for Qt 4.1.0
    4ef384a  Qt 4.1.0 compilation fixes.
    ca3c73c  Remove support for doppler effects; only works on a few
	     soundcards, and makes sound horrible for anyone else that
	     tries to enable it.

2005-12-23
  Thorvald Natvig <slicer@users.sourceforge.net>
    f6753d1  Create DSound buffer in same thread it's used, and let buffers
	     linger for 5 secs before destroying them; some soundcards
	     don't handle buffer creation very well.

2005-12-20
  Thorvald Natvig <slicer@users.sourceforge.net>
    662e8fd  wow support. Fixed a bug with some hardware 3d cards.

2005-12-19
  Thorvald Natvig <slicer@users.sourceforge.net>
    ec0bc48  Update version to 0.9.3

2005-12-16
  Thorvald Natvig <slicer@users.sourceforge.net>
    1bcf0d9  average bandwidth over short time to avoid being kicked for
	     VBR spike
    a531aaf  Bugfixing bandwidth limits
    c02e331  Maximum bandwidth setting serverside.

2005-12-15
  Thorvald Natvig <slicer@users.sourceforge.net>
    50e297c  Allow _ in email addresses (darn@the-space.net)

2005-12-13
  Thorvald Natvig <slicer@users.sourceforge.net>
    3a9374c  Visualize all parts of the echo weights.
    d0f2538  rename from libspeex.dll to just speex.dll

2005-12-12
  Thorvald Natvig <slicer@users.sourceforge.net>
    ae2fcbd  Updates to enable compilation on Linux, even if it's missing
	     features.

2005-12-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    d94f13b  Enable ASIO with 32bit input. Needs verification.
    ccd63ed  Visualization of echo canceller, and some testing.. Seems the
	     weights get set non-optimally.

2005-12-08
  Thorvald Natvig <slicer@users.sourceforge.net>
    1080265  Support graceful failure of loading the overlay (For Win2k
	     support)

2005-12-04
  Thorvald Natvig <slicer@users.sourceforge.net>
    ba112bc  Update INSTALL to reflect we now require Boost
    7ac4637  Use boost::shared_ptr<> for objects shared between threads
	     that we need to delete(). (AudioInput and Output mostly).

2005-12-03
  Thorvald Natvig <slicer@users.sourceforge.net>
    543b19b  Visualize power spectrum of input and noise estimate.
    63179b9  Add fftpwrap for speex compile

2005-11-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    99d3749  Ping support

2005-10-14
  Thorvald Natvig <slicer@users.sourceforge.net>
    a2e714a  make "Toggle overlay" a tristate; show only talking, show all
	     or show none.

2005-10-13
  Thorvald Natvig <slicer@users.sourceforge.net>
    084d465  Banlist editor.
    6afe64a  Removed TCP voice support; with Nagle it will always be laggy.
	     Added message to query/set banlist. Reordered message ids.

2005-10-12
  Thorvald Natvig <slicer@users.sourceforge.net>
    756ba78  Banlist (serverside).
    c4dbb06  Bump version
    819ff2f  Rename player support.

2005-10-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    753f26f  Set sId=0 when closing

2005-10-05
  Martin Skilnand <cybknight@users.sourceforge.net>
    d339b2b  New icons for ASIO and OSD settings

  Thorvald Natvig <slicer@users.sourceforge.net>
    a414c4c  Audio bugfixing. Added new icons to code.
    97b0ea1  Fix for multispeex-packet in UDP mode.
    1a6e228  Immediate update of overlay on parameter change

2005-10-04
  Thorvald Natvig <slicer@users.sourceforge.net>
    fa62712  Debugging of ~sub
    51555bf  sub,a,b,c groups
    09c24ee  Config for overlay.
    48d79e9  Make hooking less resource intensive on system.

2005-10-03
  Thorvald Natvig <slicer@users.sourceforge.net>
    00f231b  Overlay.

2005-10-01
  Thorvald Natvig <slicer@users.sourceforge.net>
    e21d62f  Bold speec probability when we would transmit. Fix the SSE
	     detection.
    87b8010  Tooltips & whatsthis for the bitrate in AudioConfig. Bail out
	     if SSE not detected (as we ship binaries which require it).
    4bfb790  Variable number of frames / packet
    cda5095  Various bugfixes. Added metakey for shortcuts, to join channel
	     instead of talk-to channel. Update to match timestamp in
	     jitterbuffer in speex.
    e7eae88  Add uninstaller to Add/Remove programs in control panel.

2005-09-30
  Thorvald Natvig <slicer@users.sourceforge.net>
    f0dc0a1  Example of how to link murmur to other servers, using qstat
    7e15f99  Fix "in" and "out" groups.
    219d946  More command interface.
    f778342  Serverside commands through SQL.
    f2233fd  Experimentation with non-actionmapped directinput; will be a
	     lot of GUI work though. Added push-to-link support to the
	     server.
    bd5f2d4  Version to 0.9.1
    dd60a2b  Channel linking, part 2.

2005-09-29
  Thorvald Natvig <slicer@users.sourceforge.net>
    2c12d88  Channel linking, part 1.
    2382f40  Cache ACL lookups.
    c0f9577  Kick off ghost connections, refuse connections with same name
	     for anonymous users.
    7f014bc  Connection table in sqlite
    3478060  Include murmur.ini
    3ab26fe  Use class references in headers instead of .h files, reduces
	     dependency path to more sane levels.

2005-09-28
  Thorvald Natvig <slicer@users.sourceforge.net>
    faceb19  Move config into registrars.
    62dd4ef  Remove ACLs when removing channel

2005-09-27
  Martin Skilnand <cybknight@users.sourceforge.net>
    d43f59e  New icon for channel linked...
    f026171  Fixed authenticated and changed R shape into A shape. New
	     channel icon

  Thorvald Natvig <slicer@users.sourceforge.net>
    a035a3c  Fix flag display
    6794972  lowercase groupnames
    155d342  Massively reduce debugging statements.
    4c7a6f7  PlayerModel fixes, work around bug in QSet operator ==
    4d52920  Doubleclick to join channel
    cb84309  Rewrote the player model, should be more "in tune" with Qts
	     method of referencing items now. Made the iconlist in the
	     config dialog resizable. Updated "reg" to "auth" in a few
	     places.

2005-09-26
  Thorvald Natvig <slicer@users.sourceforge.net>
    3c55c1f  qPrintable()
    6f4c0b6  Fix tree
    e705eb1  Bugfixing session
    66e90fb  Tooltips and whatsthis for ACL part of ACLEditor.

2005-09-25
  Thorvald Natvig <slicer@users.sourceforge.net>
    5fc1e91  Have long strings in "" in .ini files.
    aa1d309  .ini files for the server, updating documentation to reflect
	     this.
    93fe6b8  Functional ACL/Group editor. Let the bugfest commence.
    ff614da  ACLEditor, ACL actions started, server bugfixes.
    5c24663  ACLEditor, GUI elements done, missing action-logic.

2005-09-24
  Thorvald Natvig <slicer@users.sourceforge.net>
    620f4dd  ACLEditor, server part.
    5ec2fcf  Bugfixes from testing (release of 3d buffer, saving of
	     transmit from settings, better rolloff defaults, smaller
	     indentation for the channelview).

2005-09-23
  Thorvald Natvig <slicer@users.sourceforge.net>
    3e52eaa  Warning fixes.
    fdde84f  On channel creation, add creator to "admin" group.
    7f73d73  Channel ACLs and groups. (Still missing a edit function)

2005-09-22
  Thorvald Natvig <slicer@users.sourceforge.net>
    c1f3446  Update version string
    e27b074  Preliminary support for channels

2005-09-21
  Thorvald Natvig <slicer@users.sourceforge.net>
    3efd365  Only check if registered player if there ARE registered
	     players. Without any, everybody is priviliged.
    ae8b33e  like =

2005-09-20
  Martin Skilnand <cybknight@users.sourceforge.net>
    6881c4d  Made icon slightly fatter...
    e589da5  New icon for registered users

  Thorvald Natvig <slicer@users.sourceforge.net>
    578978a  Slightly more agressive defaults, sounds better for most
	     people.
    f23d9f7  Slightly more permissive namecheck
    15bc047  Only registered users can mute/deafen/kick others
    540b5cc  And remove the authcode used...
    d0df397  Notify use when it succeeded as well.
    eb41fcf  Registration script.
    2691157  Empty tts should not be spoken.
    0548bfe  Welcome messages.
    a465ab4  Per-player password. Persistant storage on server. Minor ASIO
	     fixes.

2005-09-19
  Thorvald Natvig <slicer@users.sourceforge.net>
    9540220  Final part of UDP implementation.
    62f573b  UDP bugfixes on server.
    b36bf6d  Version 0.3.2. First part of UDP support.
    46d1a8d  No console in release!
    3ca1264  Provide feedback if an error occured.
    1072c99  Minimize to tray.

2005-09-18
  Thorvald Natvig <slicer@users.sourceforge.net>
    a482c8d  Start of unix compiles for mumble
    00a2599  Spelling fixes
    9080126  Typo in MainWindow fixed. Made the BF2 plugin slightly more
	     picky about what values it accepts.
    7798861  When sampling speakers, encode the cleaned output, not the
	     original. Add clean signal power to the audio stats.
    6f0577d  About Speex dialog, still waiting for the icon.
    419e2e5  Echo Canceller for inputs that can sample the speakers.
    de4b674  ASIO Audio Input

2005-09-16
  Thorvald Natvig <slicer@users.sourceforge.net>
    67e3d85  Single-threaded directsound output
    3d9e12b  Change version to 0.3.1
    180e4b5  Don't send implied messages anymore, the client already knows
    75cf4ea  Send the player object to AudioOutputPlayer, not just the sId.
    95d066d  Fix the versionchecker so it doesn't delete itself before
	     showing the message.
    7250279  Fixups for release script
    2cdf489  Failing to open DirectSound shouldn't be fatal, just a
	     messagebox error Add Apply button to the config screen
    9bc83a6  Fix a few missing Q_OBJECT
    ef307bd  Fixed a few bugs with positional audio Made a lot more member
	     functions const Moved playerId to Global, it didn't belong in
	     MainWindow

2005-09-15
  Martin Skilnand <cybknight@users.sourceforge.net>
    8fced49  Pixmap for Game plugin screen

2005-09-14
  Thorvald Natvig <slicer@users.sourceforge.net>
    6225c04  Bugfixes for positional Audio Added a Center Position hotkey,
	     to force yourself and all others to a center audio position,
	     usefull to give commands to the whole group.
    eb7e1be  Positional Audio Plugins Ability to switch input/output device
	     without restart Version changed to 0.3.0cvs

2005-09-13
  Martin Skilnand <cybknight@users.sourceforge.net>
    9f73177  Pixmaps for config windows.

  Kjetil Jørgensen <kjetijor@users.sourceforge.net>
    fa4114d  Added (unfinished) config dialog for DX Audio.

  Thorvald Natvig <slicer@users.sourceforge.net>
    a5391bb  Use selected device from DXConfig. Still needs to close/reopen
	     on ConfigDialog exit.
    b936144  New icons used in config
    2412c5e  Adjustable jitter buffer initial size
    ec3af68  More tooltips and whatsthis
    23bd3a6  ToolTips and WhatsThis for rest of application.

2005-09-12
  Thorvald Natvig <slicer@users.sourceforge.net>
    f7254f3  Global Log class, which remembers what should be logged to
	     console and TTS Fixed infinite selfrecursion in MainWindow,
	     the application now actually exits when you close it instead
	     of silently crashing
    b8fc8f4  Make versionchecking a userinitiated action
    70df36b  Add lots of detailed tooltips. Our first piece of
	     documentation.
    85825a8  Finish basic config widget for audio Added config options for
	     compression and amplification Moved a few menu things into the
	     config Keep user settings in Settings and statevars in Global
    fadd3fa  When using nested layouts, Qt barfs if a widget already has a
	     parent, so make sure it doesn't.
    e465ae6  Fixed crash bug if opening player menu while unconnected
    6b49928  Centralized configuration dialog

2005-09-11
  Thorvald Natvig <slicer@users.sourceforge.net>
    5d6a49d  Switch a few QMutex to QReadWriteLock, and start using
	     QMutexLocker, QReadLocker etc
    6cf17df  Squashed 3 QT bugs, submitted patches, and can now use them in
	     our application.
    90e84d4  DTX transmission support
    6c9df68  Export symbol files for debugging of release builds
    9d7fa85  Window title for the audiostats
    6ed4a96  Set thread priorities; gui is LOW priority, but as we can't
	     set it low we set everything else high.

2005-09-10
  Martin Skilnand <cybknight@users.sourceforge.net>
    04ae86a  Status icons for user window

  Thorvald Natvig <slicer@users.sourceforge.net>
    d290745  Audio statistics window
    beb7b04  Make list of players sorted by name and make local user bold
    6a5e9cc  Offset status icons by 1 pixel
    c5c9848  Turn cvs log into CHANGES, and restart CHANGES to get rid of
	     cvs log messages for it

2005-09-09
  Thorvald Natvig <slicer@users.sourceforge.net>
    093edde  recent updates
    613fec9  Deaf implies Mute logic in Server, and add ability to
	     mute/deaf players again (added PlayerModel::getPlayer from
	     index)
    1b8ac3e  QHash, foreach() and STL iterators. What ever gave me the idea
	     QMap was a hash to begin with?
    3fc5d6e  Model-player-list. Work in progress

2005-09-08
  Thorvald Natvig <slicer@users.sourceforge.net>
    021d58b  Compile bugs in VersionCheck, update version in About dialog
	     as well
    88a69ca  Change versions to 0.2.3cvs
    1895db1  Avoid conflicts for MUMBLE_RELEASE
    9fb7f82  Use new Connection slots for Server Make server log include
	     date/time
    c01e34f  Discover the magic of QObject::sender() and fix some leftover
	     bugs from the refactorization
    be1a64d  Refactor
    c325e72  Oops, we're working on 0.2.2, not 0.2.1 which is already
	     released
    84ca9db  Remove compile warnings, and there sure were a lot of them
	     Work around -Wshadow bug in gcc
    dfe76ed  Turn g_ into Global, part 2
    870ce04  Turn g_ into struct Global, part 1
    4d6ba18  Remove m_ from everything

2005-09-07
  Thorvald Natvig <slicer@users.sourceforge.net>
    d82af08  Track both initiator and victim of actions
    3e948bb  Make all messageboxes use "Mumble" as the title, to follow the
	     GUI guides
    4ce9b9b  Check version against sourceforge
    15fc873  Show correct version in title
    2d92fb8  Separate log window
    8658883  Reduce dependencies in MainWindow.h
    3475fc3  Add changes file Add persistant storage of server lists
    9a73682  Increase default volume gain
    a9cf5fb  Commit database
    3a71488  Configure database for persistent storage

2005-09-06
  Thorvald Natvig <slicer@users.sourceforge.net>
    c53fbf9  **** the password field
    5b86dd3  Fix args for window title
    ca7fec9  Exchange and display selfmute/selfdeaf
    a4289cf  Audio Input/Output registration
    465b636  Support self-mute/self-deafen. Start support for input/output
	     configs

2005-09-05
  Martin Skilnand <cybknight@users.sourceforge.net>
    0705156  Temporary icon for alpha and beta stage

  Thorvald Natvig <slicer@users.sourceforge.net>
    6be61b3  config=profile to keep debug info for external profilers
    5206193  Make the buffer what we need
    3006847  Make it possible to abort connections, and display self-talk
	     same as the others
    b140df7  More verifications
    1814bb3  Make ids recyclable over time instead of immediately, and
	     validate that the "target" of messages is actually valid.
    c4a0940  The FIRST loaded icon will be the appicon. Make sure it's the
	     smallest. This really is buggy, Qt!
    f2754d3  MainWindow actiongroup for voicetrigger fixed build system
	     fixed to use proper conditionals
    1cd90fe  Release build should NOT have the damn console!
    0e42898  Release script fixes
    de8d70f  Basic connect dialog
    aca3f3c  About dialog with icon
    f08f825  Need all 3 icon sizes
    6c5e300  Hopefully binary?
    ddaf56b  Fixed...
    1ea5a6c  .. but Qt can't use windows resources to store images.
    d52f78b  Added readme to installer Fixed crashbug in Server Made
	     connection only emit disconnected once
    6e5f88e  Add readme
    61ae1a1  Global settings and data exchange
    b1c2795  Shortcuts for muting self, removed compile warnings
    7c3ae17  Text-To-Speech
    ef77c9c  Actually poll the DirectInput devices too.
    05acf99  Global shortcuts

2005-09-04
  Thorvald Natvig <slicer@users.sourceforge.net>
    2ab6c96  Handle authentication, rejections and propagated error
	     messages
    ce7ae41  Propagate connection errors for display
    013fdea  When disconnecting, just signal the thread that it's time to
	     end, don't yank the socket or QT complains
    b840521  Support logging in with pw
    d7b7e9b  handle authenticate/reject in networkToMessage
    4818018  Proper connect dialog
    9e57b20  Use compression for zips
    7564d64  Add scripts to release source code
    5d9d54a  Versions in projects
    65b705b  debug_and_release
    7e2405a  Because they changed the signal in Qt 4.0.1
    3b770e6  Why doesn't closed buffered sockets ever error() on
	     disconnection?
    bf304fe  Encode and display "speaking" state
    37c10ca  Accept some paramenters for murmur, to enable e.g. local loop
	     test
    1955a89  Update libspeex makefile to match dynamic libs Move license
	     agreements to installer instead of embedded in program
    d99273e  License files for qt and speex for installer
    b46b0f6  Dynamic release, only need licenses in installer/as files

2005-09-03
  Thorvald Natvig <slicer@users.sourceforge.net>
    9c3c797  Forgot to checkin the new about dialog. Ahem.
    2af8e4b  Since we depend on mingw dlls anyway, switch to full dynamic
	     linking and add an installer
    87c0e0b  remove debug output
    aa110d2  Kick
    8feb561  Clean up UI, implement kick, remove debug for missing
	     validators
    f43a4e9  Ooops, that was a debug statement
    37bc1d6  DTX is broken
    a9b67d1  Server testing
    3d67f4c  Send deaf/mute on connect

2005-09-02
  Thorvald Natvig <slicer@users.sourceforge.net>
    1e818ff  Player Mute/Deaf, global Player
    c31108e  DTX Support Make list of players at least somewhat usefull
    dc3e802  Add sequence to speex packet
    fdda9c3  Fix memory leak, it's now safe to pass stack-allocated
	     messages
    8f10abc  About box, licenses included, and clean build in mingw
    f21fdf7  Let's try licenses again...
    3e4fc1b  licenses for about dialog
    81623dd  First functional audio test
    d7a47d9  connect() typo, and increased AGC 50%
    dd94e9d  Pass QByteArrays instead of messages, much cleaner with
	     refcounts
    3b4b165  Initial DX Audio

2005-09-01
  Thorvald Natvig <slicer@users.sourceforge.net>
    a8e03ea  Initial audio framework
    828a022  Shorten down messages by making id and type 1 byte each
    daa74ad  actually do something with messages
    911ea20  debugging network
    e1bf768  First test of network protocol
    d9d814b  Disconnect on errors, don't send disconnect unless
	     authenticated
    aaf9366  Compile fixed
    29e161f  virtual destructor (to avoid nag)
    0767e88  Initial version of the server
    12acf13  Network structures
    dda3954  More data checking
    d51c2f6  Initial datastructures

2005-08-31
  (no author) <(no author)@05730e5d-ab1b-0410-a4ac-84af385074fa>
    08f0e1d  New repository initialized by cvs2svn.

  Thorvald Natvig <slicer@users.sourceforge.net>
    1a04a2a  Initial setup of project