forked from vgaessler/whisper_client
-
Notifications
You must be signed in to change notification settings - Fork 3
/
CHANGES
6042 lines (4981 loc) · 218 KB
/
CHANGES
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
2010-01-07
Mikkel Krautz <[email protected]>
d43d38c Tell codesign where the mumble-overlay binary resides now.
Álvaro Manuel Recio Pérez <[email protected]>
9a38eee Updated Spanish translation
5989b9c Updated Spanish Translation
Benjamin Jemlich <[email protected]>
3ec3f5e Fix compiling mumur on FreeBSD
7426294 Update LICENSE
Thorvald Natvig <[email protected]>
2e36c68 Process disconnect events before connecting to new server
10e4c19 Add Africa
f6dd2b7 Intel C++ 11.1.054 on Win32
b5b6ba2 Add getCertificateList to Ice
Tuck Therebelos <[email protected]>
57e8b77 Update remaining plugin licenses
58081c6 Update licenses; add UT3, 2004, 1942 plugins; update some
Source plugins
zentriple <[email protected]>
2e2652b Update Danish translation for 1.2.1.
2010-01-06
arcenciel <[email protected]>
a8d4b61 Updated Japanese Translations
2010-01-05
Thorvald Natvig <[email protected]>
16339bf Update license to 2010
45da4e1 Add license info to a few plugins
2010-01-04
Tuck Therebelos <[email protected]>
85e5429 Add licenses to plugins
2010-01-03
arcenciel <[email protected]>
b9a647b Updated Japanese Translations for 1.2.1
Álvaro Manuel Recio Pérez <[email protected]>
eee808d Updated Spanish translation
Ilmar Kruis <[email protected]>
2701266 Positional audio plugin for Lord of the Rings Online.
Thorvald Natvig <[email protected]>
2950634 Fix a few spelling problems
cfcc962 Fix stuck PTT input in audiowizard
6a8a20d Roll back mumble_de.ts
d150ba1 Fix spelling error in manpage
64a7d22 Honor CONFIG+=no-crash-report for 11x
Spaccaossi <[email protected]>
9019991 Italian translation for 1.2.1 and 1.1.x
Michał "Zuko" Żukowski <[email protected]>
336d02d Updated Polish translation
2009-12-31
Thorvald Natvig <[email protected]>
064969a Allow setChannelState on root channel
2009-12-30
Natenom <[email protected]>
c9f7a54 Updated German Translations
Benjamin Jemlich <[email protected]>
0434d8f Hide the custom quality text if the checkbox is not visible
2009-12-29
Benjamin Jemlich <[email protected]>
3f9be33 Fix QWindowsVistaStyle hack when using stylesheets
530bc5e Add a default stylesheet for log messages
3983bd1 Fix log CSS classes and remove "'s around channel/usernames
Thorvald Natvig <[email protected]>
52b5939 Don't showpage() on exit
764151d Fix a few leftover column 1 dataChanged()
7825b04 Allow viewing comments in richtexteditor
ef1b9ff Search for mumble.ini in APPDATA as well
feef4ef Per-channel userlimits (usersperchannel in .ini, hidden
option)
Tuck Therebelos <[email protected]>
dec2ba8 Link AW PA setting to TransmitPosition
c70af3e Fix qcbHeadphone
fce765a Remove leftover stub
d58af53 Fix remaining plugin bugs; ensure console connects get handled
properly; link PA in AW to bTransmitPosition; set default
minimum volume of PA to 85%
2009-12-28
Stefan Hacker <[email protected]>
32d4490 Replace bitwise operators with boolean ones in attenuation
handling
Benjamin Jemlich <[email protected]>
827cab2 Hack around Qt's Vista Style weirdness and drawing code
cleanup
9caba4f Rewrite UserView drawing code
Thorvald Natvig <[email protected]>
04f3e4f Handle permissiondenied for user rename in client
338ea0f Validate usernames on user rename
02214c0 New PLC code in CELT master
bef7408 Show and react immediately to tranmission changes in
audiowizard
Michał "Zuko" Żukowski <[email protected]>
243f5c7 Update Polish installer
2009-12-27
arcenciel <[email protected]>
6364d67 Updated Japanese Translations for 1.2.1
Stefan Hacker <[email protected]>
117f396 Make audio quality selection in audio wizard apply immediately
afb7b45 Add "Attenuate applications while other users talk" check box
to the audio wizard's device selection page
26a5f9c Make other applications volume slider represent attenuation.
Fix surrounding strings.
8bc620d Add what's this and correct tooltip for attenuation feature
6412b3a Disable new attenuate others controls if the sound system does
not support them
c24b7f0 Make Gui for volume attenuation of other applications more
useful
347ef1d Fix bug in attenuate others while you talk code
Mikkel Krautz <[email protected]>
1b52809 Fix 11x crashreporter for OSX.
Benjamin Jemlich <[email protected]>
69a05b8 Small fixes for the german translation
1c2a5b3 Change some translated strings
Thorvald Natvig <[email protected]>
ff50167 Use ShellExec to launch mumble in installer
484aa0b Add symlink for os_win
676f6da Backport crash reporter to 1.1.x
1831073 Compile fix for 11x
19d171c Update changelog script to skip language updates
a42f160 Set uiAccess to true
eac3c5a Allow spotify links
107aedb No, really, use short instead of char
075098e Listen to IPv4 explicitly if IPV6_V6ONLY is 1
357e016 Fix bandwidth monitor to handle larger frame sizes
Tuck Therebelos <[email protected]>
c0ecbd2 Fix vehicle V/H floats
86f851f Add ETQW plugin files
417ae98 Unified string messages; added ETQW plugin; various plugin
fixes, improvements and updates
zentriple <[email protected]>
48646e1 Update Danish translation
b24f793 Danish translation for 1.2
2009-12-26
Tuck Therebelos <[email protected]>
2566014 Linkcheck is different if loading movies
87ec3c5 Fix BF2 link bug; improved context address
98cd01e Update MW2; remove useless context
2009-12-25
Natenom <[email protected]>
60ca8ee Added some new translations for 1.2.1
2009-12-24
Stefan Hacker <[email protected]>
7a058a9 Add possibility to attenuate other applications while talking
a7a18de Show talking state in tray icon
Benjamin Jemlich <[email protected]>
b39f73b Remove the flags column and draw the flags icons right aligned
a6a4bba Fix 11x compile error
e2568ea Added/Fixed accelerator keys and tab ordering
f3a3d1d Add channel join action to context menu
4a45dd8 Fix TTS output for user links
Tuck Therebelos <[email protected]>
9f48958 TF2 update
2009-12-23
Thorvald Natvig <[email protected]>
27ad7ea Update Qt license text
8389b64 Print a big, fat warning if resource limits indicate
insuficient descriptors are available
c360c5c Update path to G15SDK 3.04
2009-12-22
Thorvald Natvig <[email protected]>
20e65f8 Automatic certificate creation with backup and restore
2009-12-21
Stefan Hacker <[email protected]>
bb55b37 Fix current index on item move + chatbar default text update
a9bd564 Only enable comment reset if there is a comment
Karl Dietz <[email protected]>
6da2259 update wow plugin
Benjamin Jemlich <[email protected]>
c25a624 Fix joined server link for registered users
9f19fe4 Fixed typos and missing types in log messages.
fa8a98d Change getPathToChannel to return a QString instead of
modifing it's arguments
902fe58 Add links to the log window
17f619e Remember last channel on disconnect
Thorvald Natvig <[email protected]>
546b35c Quickgenerate certificate for lazy users
06f3542 Make celt compile on msvc again
cb5c323 Add a few more CELT fixes
32c256b Delay plugin rescan
ffed0d8 Don't update user plugins if userdir == systemdir
2009-12-20
Stefan Hacker <[email protected]>
dc0cee5 Add the possibility to disable individual plugins (#2868251)
2b70c8e Add rename context menu entry in "Registered User" (#2885100)
608650b Disable qaUserComment/qaUserCommentReset action when no user
is selected
a193f1b Improve robustness of custom chatbar context menu
315ff84 Paste and send context menu entry for Chatbar (#2915069)
Mikkel Krautz <[email protected]>
d6ac81e Fix resampling in PortAudio backend.
04725ad Attempt at better OSX 10.4 support.
Thorvald Natvig <[email protected]>
b392119 Fix help text for shortcut bind
3593ead Remove a leftover else for red->blue transition
ed33707 Disable foreign key checks during database migration
2009-12-19
Thorvald Natvig <[email protected]>
d179b5d Allow exact match of server bandwidth
b3e2cd6 Avoid red->blue flash transition on incoming whisper
Tuck Therebelos <[email protected]>
75fbf02 TF2 update
2009-12-18
Benjamin Jemlich <[email protected]>
ebef80e Fix audio wizard page visibility and layout
ec9c1d7 Resend mute status after deleting a channel
13d7225 Fix join subchannel shortcuts
2009-12-17
Stefan Hacker <[email protected]>
c421faf Fix faulty function call in phpBB3auth.py
Kissaki <[email protected]>
f5260da indendation fix, normalization
Benjamin Jemlich <[email protected]>
9d16137 Set correct target for the last whisper frame
Tuck Therebelos <[email protected]>
2c83e67 TF2 update; update DOS build number
7b2d347 DODS update
2009-12-16
Stefan Hacker <[email protected]>
53346cb Only show comment reset for other users
Thorvald Natvig <[email protected]>
90e945c Add CONFIG+=analyze for VC. Needs a lot more filtering to be
really usefull.
2009-12-15
unknown <LoL@.(none)>
725c4cf Update French translation
Stefan Hacker <[email protected]>
d2114f2 Enhance adjustability of always on top setting
Benjamin Jemlich <[email protected]>
0e241d1 Save server specific shortcuts on quit
Thorvald Natvig <[email protected]>
718da15 Avoid a potential divide by 0 under really bizarre
circumstances
2009-12-14
Benjamin Jemlich <[email protected]>
39ba54f Fix RichTextEditor resizing in edit channel dialog
Tuck Therebelos <[email protected]>
9aaa8cc TF2 update
2009-12-13
Stefan Hacker <[email protected]>
76c2c4d Add quality & notification page to Audio Wizard
Thorvald Natvig <[email protected]>
2ed1710 Reupdate the CELT rev
2009-12-12
Phrag <[email protected]>
6efe83a Czech installer
Julien Pardons <[email protected]>
8d76b5a Patch for icedemo.php (user edit)
Thorvald Natvig <[email protected]>
18a3e80 Fix permissiondenied on invalid channel
a1114e4 Enable connect to freshly added servers
11a6e94 Cache result of doEcho
2009-12-11
Thorvald Natvig <[email protected]>
9716748 Include varlength array fix for CELT
842769a Use a bit more forgiving bandwidth estimation on the server
7dcc10e Add frame header when computing bandwidth on client
43c4def Try the new LPC-based LPC for CELT
f0298e3 Bump version to 1.2.1
867da14 Order channels when importing to MySQL
2009-12-10
arcenciel <[email protected]>
d5e0afb Japanese Translation for 1.2.0
Mikkel Krautz <[email protected]>
9171b43 Add missing .plists to DIST.
e9f7e0a Add no-cocoa CONFIG option, to allow Mumble to build against
non-Cocoa Qt.
Thorvald Natvig <[email protected]>
68d33ba Disable unfinished translations
84c63d8 Update release scripts for new host
Tuck Therebelos <[email protected]>
a4ea89c Added BFHeroes plugin; updated BF2 and BF2142 with IP contexts
and improved linkstates
2009-12-08
Cristian Gattamelati <[email protected]>
75f5b37 Italian Installer update
Mikkel Krautz <[email protected]>
e595948 Fix overlay launcher for Snow Leopard. Update bundle
identifiers.
Thorvald Natvig <[email protected]>
f4093f7 Work around bug in 4.4 compat emitDataChanged
Tuck Therebelos <[email protected]>
eb9ab11 Various Source plugin updates, fixes; CoD4, MW2 context fixes
Bartek "stranded" Sumowski <[email protected]>
58f9726 Updated Polish translation
2009-12-07
Álvaro Manuel Recio Pérez <[email protected]>
be4786d Updated Spanish translation
Thorvald Natvig <[email protected]>
5554295 Use Qt4.4 compatible datastream for jitter report
2009-12-06
Thorvald Natvig <[email protected]>
a0908d5 Only reload stylesheet when necesarry
8f09a06 Set context for 4.6.0 translations
2009-12-04
Stefan Hacker <[email protected]>
332b143 Make phpBB3auth.py python 2.4 compatible and improve avatar
resizing
Thorvald Natvig <[email protected]>
acb7642 Better fix for zerosized voice packets
5819780 Ignore zero-sized voice packets
Tuck Therebelos <[email protected]>
e77beae AOC, CSS string updates; Dys, Insurgenccy, TF2 IP:Port context
support. DODS IP:Port+Team context support; CoD4 context fix;
Manual plugin shortname fix
2009-12-03
Thorvald Natvig <[email protected]>
4023e4c Back to the updated master branch of CELT
2009-12-02
Thorvald Natvig <[email protected]>
22f70fb Usage format 2
a4f1ff7 Don't bother sending short jitter reports
Bartek "stranded" Sumowski <[email protected]>
0521e38 Update 11x Polish translation
2009-12-01
lolo_32 <Alex@.(none)>
d8188f7 Translations in French of new strings, and some minor write
and grammar errors corrected
Mikkel Krautz <[email protected]>
fdc8261 Fix up dylib refs for libmanual.dylib.
84099e5 Fix Mac ConfigDialog for Qt 4.6.
36c015c OSX build fixes for Qt 4.6.
7aa6e67 Fix graphical glitch on OSX.
0e676a1 Strip debug symbols after extracting them for CONFIG+=symbol
for macx.
Benjamin Jemlich <[email protected]>
8533e2a Fix manual positioning plugin on linux
Thorvald Natvig <[email protected]>
45ebdb6 Quiet down a few compiler warnings
a908b5a Use WId explicitly
7b30399 Commit shortcut editor before adding/removing
ad9c725 Use SEH magic to work around __HrLoadAllImportsForDll oddities
ff4057b Try to promote libGL.so to global scope if we can't resolve it
directly
14ff24f Add magic 0.7.0 detector
Tuck Therebelos <[email protected]>
53fcb70 Gmod update
2009-11-30
lolo_32 <Alex@.(none)>
0632e82 Add the new strings
arrai <[email protected]>
00f3aa2 Fixed linking temporary channels
Stefan Hacker <[email protected]>
3a3926c Extend TestLink plugin with comments so its code can be used
directly in the documentation page
Thorvald Natvig <[email protected]>
e7f089b String updates
334fe4d Upgrade deps to 4.6.0-rc1, openssl 1.0.0b4, boost 1.41
6d9a0e0 Change to straight 4-byte encoding for floats
dfd87b0 For fresh IP bans, don't clone hash and username
1f6e1dd Fall back to -ldns_sd if pkgconfig for avahi isn't found
2009-11-28
Stefan Hacker <[email protected]>
1c8d127 Fix mistake in previous message patch
Natenom <[email protected]>
f392cb6 Updated German translations for 1.2.0
2009-11-27
Stefan Hacker <[email protected]>
aa59399 Manual positioning plugin
Mikkel Krautz <[email protected]>
3089fbe Fix typo in ConfigDialog fix for OSX.
f61dd13 Make sure ConfigDialog is sized properly on OSX.
Tuck Therebelos <[email protected]>
85919ce Remove uncommitted game plugin
f6c26d6 CoD5 version bump; fix MW2SO .pro
2009-11-26
Mikkel Krautz <[email protected]>
a7f4bea Fix mumble11x build.
Benjamin Jemlich <[email protected]>
fbb9989 Fix crash with importing a passworded cert
Thorvald Natvig <[email protected]>
4b9941f Update the celt codec yet again to fix more bugs
4d64a01 Update celt version
6bce206 Delay restoreGeometry to after windowflags are set
d042b70 Add jitter data to usage report
2009-11-25
Stefan Hacker <[email protected]>
b2b8c10 Fix #2903204: wrong status message displayed for deafened
(server) event
Mikkel Krautz <[email protected]>
760bf63 Fix no-dbus build.
e0e8bc0 Fix OSX compatibility client launching and URL handling for
unversioned and ?version=1.1.x URLs.
Benjamin Jemlich <[email protected]>
a22567a Fix cert name display with non ascii chars
Thorvald Natvig <[email protected]>
23ada59 Update 0.7.0-src to a version that builds on Win32
Tuck Therebelos <[email protected]>
9766240 MW2 string updates, TF2 identifier update
2009-11-24
lolo_32 <Alex@.(none)>
47d2398 Translations in French of installer and Mumble
Benjamin Jemlich <[email protected]>
1d07f8a Store the comment in the user object if it's changed via RPC
Thorvald Natvig <[email protected]>
62aa53b Don't deref the mainwindow before it's created
Tuck Therebelos <[email protected]>
50af882 MW2SO fix state value
2009-11-23
Thorvald Natvig <[email protected]>
3f7ad99 Fix a few strings
39cd472 Upgrade celt to exp_time_pitch
67fc2c4 Change qwave loading to avoid a few XP bugs
Tuck Therebelos <[email protected]>
b7bc917 Fix MW2 positional data
2009-11-22
Stefan Hacker <[email protected]>
0c60717 Add channelname and username var to murmur.ini to make them
more visible
6150c78 Fix Unicode handling in phpBB3auth.py and make it able to load
raw Ice configuration tuples
Mikkel Krautz <[email protected]>
860c105 Update Mac OS X Boost to 1.41.0.
a3cc6a2 Property list fixup for OSX binaries.
e96809e Extract .dSYM debug symbols on Mac OS X when using
CONFIG=symbols.
c365ac6 Clean up overlay_mac build.
ae45a2f Use -dead_strip linker option on OSX.
0a2ef0e Clean up Unix section of compiler.pri. Keep platform specific
flags in their own sections.
8a10baf Add phpBB3auth to OSX dist script. Remove dead PackageMaker
code.
Benjamin Jemlich <[email protected]>
839cf4c Add a command line option to allow multiple clients
3172ae4 Fix client ban timezone handling
c180869 Check bans using UTC time
248d44a Fix ban expiration
Thorvald Natvig <[email protected]>
f16570e Stop findDesiredChannel while still connecting
2dc541b Fix lingering channel comments
2009-11-21
BAYSSE Laurent <[email protected]>
6390d4a French translation update for 1.2.0
Mikkel Krautz <[email protected]>
88c1b27 Refine MainWindow aesthetics on OSX.
Benjamin Jemlich <[email protected]>
3e66866 Use a new instance for each iteration so we don't leak
information of previous items in Ice replies
Tuck Therebelos <[email protected]>
54a487e AOC, CSS full context support
765c399 MW2 MP update
2009-11-20
Stefan Hacker <[email protected]>
01a72bb Integrate default sound pack into mumble
4ad97d3 Add Server connect timeout of 30s.
99b99e9 Reduce TTS/Notification Spam in defaults and reclassify some
unimportant log messages to info level.
Mikkel Krautz <[email protected]>
447ac82 General LCD fixups and make G15 on OSX a bit prettier.
2009-11-19
Martin Skilnand <[email protected]>
7f0ba42 Centered dD0T type authenticated.svg.
62f9a8b dD0T version of authenticated.svg. Attempt two.
b803a43 Making comment icons less 3D.
421d778 Replaced authenticated.svg
Stefan Hacker <[email protected]>
6144233 Revert to second draft for authenticated.svg.
Mikkel Krautz <[email protected]>
81c9e78 Revert AudioDevice{set,get} parameter change in CoreAudio.
da18c1f Make sure G15 works on OSX.
2009-11-18
arcenciel <[email protected]>
a8a25e9 Japanese Translation
Mikkel Krautz <[email protected]>
a3cbe21 Don't disable for CoreAudio builds on Mac.
Thorvald Natvig <[email protected]>
5254448 Initialize bCertRequired
Tuck Therebelos <[email protected]>
1176bdf MW2 plugins version updates
2009-11-17
Stefan Hacker <[email protected]>
34f9ea9 Raise default quality to 40kbit/s
Benjamin Jemlich <[email protected]>
fd830d7 Add the ability to colorize log messages
3c050e9 Add an option to reject connections without a certificate
298d342 Add a warning if the settings database is read-only
2a582a6 Change reject type field to uint32
Thorvald Natvig <[email protected]>
0c36a80 Add some type safetyp to denytype
c8b81b6 Make rejecttype optional
2009-11-16
Martin Skilnand <[email protected]>
c4d99f5 New comment icons for review.
2009-11-15
Stefan Hacker <[email protected]>
d28e95f Some comments and minimal refactoring of
Server::recheckCodecVersions()
0eea7b5 Make hl2dm PA plugin compile again.
Kissaki <[email protected]>
640d91e German translation update minor English text fix
2009-11-14
Álvaro Manuel Recio Pérez <[email protected]>
4911c8a Update Spanish translation
Tuck Therebelos <[email protected]>
5ec2225 Ins, TF2, L4D updates
ac11b54 Fix CoDMW2SO state value
9cc7f15 Add MW2 plugins to installer
b560789 Add MW2 plugins to plugins.pro
d5777ef Fixed state and V/H for MW2; MW2SpecOps plugin added
dfd7909 Fixed state for MW2; MW2SpecOps plugin added
2009-11-13
Mikkel Krautz <[email protected]>
c81ff65 CoreAudio: Allow devices to run even if they have to use their
default buffer length (when we can't set it ourselves)
71e1b7b Add buffer range debugging to CoreAudio. Fix isInput parameter
for setting buffer size.
2009-11-12
Stefan Hacker <[email protected]>
7411fc9 Use localeAwareCompare for overlay sorting.
Álvaro Manuel Recio Pérez <[email protected]>
382bca6 Updated Spanish translation
Thorvald Natvig <[email protected]>
3df0dce Add direct dependent libraries under X11
Tuck Therebelos <[email protected]>
7f146f2 CRLF
2009-11-11
Mikkel Krautz <[email protected]>
aba1fc2 Update osxdist script for beta and fix diskimage window
dimensions.
Patrick Matthäi <[email protected]>
ec48050 Spelling fix
Thorvald Natvig <[email protected]>
ada9d58 Allow setting version on binserver script too
f3b2395 Allow release script to specify custom version
f3e9ed7 Automatically use system CELT if it's >= 0.7.0
66c2261 Change initialization order to allow direct-copy constructor
bd33712 .ts file update
a59ce15 Don't distribute older celt versions in tarball either
f765851 Initialize ucFlags properly
786ed67 First check SSL cert errors, THEN check the SSL version
Tuck Therebelos <[email protected]>
ddb16ce CoDMW2 plugin; HL2DM context example
2009-11-10
Karl Dietz <[email protected]>
6019fc1 plugins/wow: disable context in release builds
Ludwig Nussel <[email protected]>
7dae3ed silence integer/pointer cast warning
1b2647b Qt 4.4 doesn't have emitDataChanged(), the function is the
replacement
Mikkel Krautz <[email protected]>
3efd3dd Fix reference to two sliders in Audio Wizard VAD strings.
Benjamin Jemlich <[email protected]>
0917b0a Deny category dragging
Thorvald Natvig <[email protected]>
7e4ce0e Build only 0.7.0, 0.6.1 etc are deprecated for the beta
505e774 Source string fixes from naproxeno
9239379 Punctuation fixes for tooltips
2f7e430 Use TLSv1 on server
75b9256 Use CONFIG+=packaged when building official packages from git
6fdad28 TLSv1 by default -- fallback to 1.1.x for SSLv3
8b0549b Display bitrate correctly for Speex, and default to 2x10ms
packets
64d16b8 Remove input policy from dist list
Spaccaossi <[email protected]>
aed4569 Italian translation for 1.2
2009-11-09
Karl Dietz <[email protected]>
8589e57 Clarify condition in PA context handling
Thorvald Natvig <[email protected]>
0a0c83f Add overlay safety checks for 11x too
51f4bf3 Update benchmark test
997c5f3 Fix player removing from overlay when they disconnect
52aead7 Use UAC NSIS plugin
2009-11-08
Álvaro Manuel Recio Pérez <[email protected]>
0bfaea9 Updated Spanish translation.
Benjamin Jemlich <[email protected]>
5f8aedf Add tasklist entries for recent connections
meanracoon <[email protected]>
6db9fb1 Dutch Installer Translation
2009-11-07
Stefan Hacker <[email protected]>
4c5930b Make channel moving require ChanACL::Write privileges.
Ludwig Nussel <[email protected]>
e2a8a20 allow to disable crash report dialog
c7f93ed fix build with qt 4.4
317a2bf add support for certificate directories
Benjamin Jemlich <[email protected]>
1ef709d show user count on channels
966f34d fix memory leak with ptt audio cue
Thorvald Natvig <[email protected]>
72d78aa Arch-dependant library load on Win32
e5dab47 Make celtbuilds symlinks
ede39c7 Ice options in murmur.ini
5e71c19 Use 0x040500 instead of QT_VERSION_CHECK()
cf437d9 Make no-crash-report a config option
b46694b And fix the same leak in speech itself.
47f8d8f Usr \r\n on Win32 for murmur.ini
2009-11-06
Mikkel Krautz <[email protected]>
8dcb531 Catch and handle kCGEventTapDisabledByTimeout Snow Leopard
behavior in GlobalShortcutMac.
af80da5 Catch 'disable' events in GlobalShortctMac.
13e7d21 Allow Default Device in CoreAudio to be translated.
Benjamin Jemlich <[email protected]>
3a6e97a pass commandline arguments to Ice
2009-11-05
arcenciel <[email protected]>
cd3e90f fixed japanese translation
2009-11-04
Thorvald Natvig <[email protected]>
bf23ffc Show client versions in the log
2009-11-03
arcenciel <[email protected]>
26d77a2 Japanese Installer Translation
48d03a5 Japanese Translation
Thorvald Natvig <[email protected]>
5f07255 Add workaround for Chrome cut&paste URL on Win32
e3aae8c If not connected, use highest codec version
c9117e1 Use SO_PRIORITY on nix to set packet queue priority
2ea8ede Clientside QoS option
2009-11-02
Karl Dietz <[email protected]>
e0c0609 stabilty improvements
2009-11-01
Stefan Hacker <[email protected]>
2308cf5 Minimal fixes in German translation.
68536c3 Switch default overlay font for Windows and OSX to Verdana.
cad983b German Translation (1/3)
Mikkel Krautz <[email protected]>
7acf3ff Change QPushButton -> QToolButton in ShortcutTargetWidget.
Fixes ShortcutTargetWidget glitch on OSX.
Benjamin Jemlich <[email protected]>
aab13b4 German Translation (2/3)
Timo K <[email protected]>
7a66764 German Translation (3/3)
2009-10-31
Stefan Hacker <[email protected]>
7cb7803 Fix regression in regression Fix (phpBB3auth.py)
122cfcb Fix regression in boolean config value parsing in
phpBB3auth.py
9f36caa Fix getRegisteredUsers in phpBB3auth.py and restrict
operations to normal and founder users.
Kissaki <[email protected]>
91f536b fix some obvious English text issues
c9112a2 German Translation
Spaccaossi <[email protected]>
366110e Italian installer translation
2009-10-30
Stefan Hacker <[email protected]>
5207473 Daemon mode and py25 compat for phpBB3auth.py. Fixed line
endings of phpBB3auth.ini + minimal changes.
Karl Dietz <[email protected]>
d6de243 Transmit position from avatar and heading from camera.
Thorvald Natvig <[email protected]>
ccbe964 Sort overlay
2009-10-29
Thorvald Natvig <[email protected]>
d899cc2 Update bFirstTime to be unique to 1.2.0 -- get people through
the audio wizard again
c1a4cb0 Allow ftp:// links through whitewash list
2009-10-28
Stefan Hacker <[email protected]>
9c3351c Fix phpBB3auth.py encoding/line endings + small style changes.
9dd0edc phpBB3 authenticator written in python + ice
Thorvald Natvig <[email protected]>
893f8c1 Keep references to volume objects around, should improve
WASAPI volume ducking.
471b2df Remove debugging output from addMic
b8192cf Qipo still produces SSE2 opcodes in pure-float paths, even
without QxSSE2.
351c1b3 Replace echo-jitterbuffer with a queue
2009-10-27
Mikkel Krautz <[email protected]>
c1c0025 Re-add bRunning to CoreAudio. encodeAudioFrame() uses it to
determine if AudioInput is running.
9e7e9f2 Add small warning message to help debug GlobalShortcutMac
strangeness.
80a2baf Change libcelt filename in osxdist.
Thorvald Natvig <[email protected]>
1260b95 Speed tests for resamplers
e7b4688 Fix crash if sharedmemory is missing
e3bfc2f Clean up compiler flags on Win32
e24c809 Update scripts for 1.2, remove deprecated input policy
1b2bf32 Mention the s/UserInfo/byte/ hack in the .ice
2009-10-26
Thorvald Natvig <[email protected]>
0e6214f Don't put unpushed speex reference in the tree.
dba7de2 Re-enable IPO now that we have a workaround, and add the
missing speex file
2045012 Use correct includes for celt, and update packaging script
2de0060 Build CELT 0.7.0
2009-10-25
Thorvald Natvig <[email protected]>
9b9b5eb Libspeex's resampler misbuilds with -Qipo, disable until
analyzed
384c0df Blacklist explroer.exe from the overlay
54adcf8 Make protobuf a dll
f05f8a1 Use speex_lib_get_mode instead of direct linking
62b1536 Enable edit menuentry if write on parent (sync with server
permissions), and fix speex compile bug
6a4a2b6 Precache permission on parent channel
0c05ca0 Don't send superuser in msgUserList
9d3274b Enable more SSE optimizations and compile Speex as dll
2009-10-24
Mikkel Krautz <[email protected]>
aa5cdbc Remove superfluous bRunning's from CoreAudio.
94ecb90 Don't sleep in CoreAudio thread when waiting for output data.
Clashes with TextToSpeech.
Thorvald Natvig <[email protected]>
a517f5a Permission denied for missing cert
2009-10-23
Mikkel Krautz <[email protected]>
720b0e4 Crash Reporter implementation for OSX.
Thorvald Natvig <[email protected]>
874c03a Source strings for 1.2.0 alpha
580655f English source strings
2009-10-22
Karl Dietz <[email protected]>
b5b4777 Update WoW plugin.
Mikkel Krautz <[email protected]>
6cde32b Remove custom speex fatal handler as well.
ae0d2db OSX ConfigDialog for 11x.
470f6ed Remove old unused OSX overlay code.
3bfe5b3 Proper debug handling for OSX overlay launcher.
94f4542 Add CoreAudio source files for 11x, as well.
4d08538 CoreAudio for 11x.
01a4770 Build OSX client without PortAudio.
9d78c54 CoreAudio audio backend for OSX.
Thorvald Natvig <[email protected]>
af09b09 CELT with proper VBR
1ca8016 Use proper symlinks for shared files
2009-10-21
Thorvald Natvig <[email protected]>
9a7e709 Allow EINTR during poll
572b530 Allow setInfo with name if it doesn't change
02ccd34 Clear ACL cache when removing users
0104375 Disable echobox on wizard init unless supported
e73c9b0 Compile released snapshots with IPP
6216f4a Distribute dbghelp.dll on Win32 so it can work on older XP
installations
99ba4f4 Clean up STACKVAR for murmur
79d7461 We don't really support plaintext anymore, so remove detection
from the rich text editor
146cc63 Cache pingsort
2009-10-20
Martin Skilnand <[email protected]>
1813b2e channel_linked.svg now with blue glow.
fa3f1e9 Different style edge for better rendering?
025138d New test muted_local.svg
Thorvald Natvig <[email protected]>
3b23451 Explicitly set DirectInput device pointer to NULL to ease
debugging
866214d Save localmute state
2a2417a If sighup when not detached, interpret as quit
be58259 Allow murmurd to compile under Qt 4.4.3
e6037df Update release script for multiple celt versions
488f252 Fix crash when removing last shortcut after editing it
a4c6556 Compile new celt juggling on Intel compiler
2009-10-19
Martin Skilnand <[email protected]>
a2426bf Test icons/muted_local.svg
Mikkel Krautz <[email protected]>
3cf23bd Properly save expert state in OSX ConfigDialog.
a484529 CELT dynload paths for OSX.
Benjamin Jemlich <[email protected]>
5917312 Don't allow to disable the temporary checkbox
Thorvald Natvig <[email protected]>
59678e2 Delete 1.1.x shortcut from desktop on uninstall
8a7b17e Allow serverpassword as alias for password in setConf
d97a49f Check if name is already in use before allowing a rename
d71202b Fix more compiler warnings
12a2644 Fix a few compiler warnings
9958660 Clean up compiler warnings on Win32
943f241 Moc turbo-mode
aed0eda Update Win32 installer with celt dynlibs
a122549 Reset encoder when restarting sending
d655742 Default codec to 0x800000a on client
53bb306 Clientside celt codec juggling
73388f3 Force alpha-preference for bitstream 8000000a
2009-10-18
Thorvald Natvig <[email protected]>
7dbaf74 Use full version filenames for celt lib
925dd22 Serverside alpha/beta celt version choice
5f8c841 Use int instead of uint to represent version
f00341b Set permission value to heuristic to avoid quadruple query
a3aea25 Send celt version on login
2abfacf Multicelt build fixes on nix
5247bf7 Clientside celt juggling library load
b8813f3 Build CELT dynamic
2009-10-17
Stefan Hacker <[email protected]>
a879bf8 Fix 2880700 : [8af721] wrong chat line text
fe8789c Fix behavior if we don't get permission query replies.
aa88607 Fix permission poll on connect + docs for involved functions
Thorvald Natvig <[email protected]>
465cbbd Use 0 to express missing permissions
94035cf Add CELT version vector to authenticate packet
d9335a5 Move user before clearing cache, not after
2009-10-16
Thorvald Natvig <[email protected]>
20ec12c Don't query channel permissions when disconnected
1ba7c2d Clear permission cache on root on connect
2009-10-15
Thorvald Natvig <[email protected]>
696bfed Avoid overcopy for multichannel echo
d1e5d7f English source strings
8fdfabe Include image dimensions in document size
7a8ca97 Remove texture option and fix chantemp default