forked from mumble-voip/mumble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
9004 lines (7326 loc) · 312 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
2011-10-01
Thorvald Natvig <[email protected]>
f506511 Add %s for printf
2011-09-28
Jamie Fraser <[email protected]>
9cc9539 Fix bug #3200725 @ SF - RichTextEditor disregarding
g.uiImageLength.
2011-09-05
Jamie Fraser <[email protected]>
41100fd Add 'Crimecraft: Bleedout' to default blacklist.
2011-08-28
Jamie Fraser <[email protected]>
6a46030 Make edit button greyed out if selected item is not a
favorite.
b61f781 Added Edit button to Connect dialog.
2011-08-27
Stefan Hacker <[email protected]>
ae54c0c Add some comments to AudioInput::addMic/addEcho
2011-08-21
Stefan Hacker <[email protected]>
aed5c1e Split up and refactor WASAPIOutput::setVolumes function to get
rid of excesive indentation.
2011-08-14
Mikkel Krautz <[email protected]>
72185ae Mark OverlayInjectorMac as conforming to SBApplicationDelegate
on 10.6+ to fix Lion-only builds.
53cd8e4 Update Boost version for OS X.
2011-08-07
Stefan Hacker <[email protected]>
86b8c00 Make bf2 plugin correctly clear its context and identity
2011-08-05
Stefan Hacker <[email protected]>
b05dc71 Make vld an explicit, default off, option instead of implicit
default
1a8d879 Make winpaths_default.pri arch independent
2011-07-31
Stefan Hacker <[email protected]>
f0c2bfd Replace some manual version conversions with appropriate
MumbleVersion calls.
c99661d Remove some dead code previously related to version checking
Michael Ziegler <[email protected]>
b79b960 tr() the strings and change default version to 1.2.0.
2011-07-29
Stefan Hacker <[email protected]>
d31b33d Updated boost to 1.47
Michael Ziegler <[email protected]>
f1c6e83 style/typo fixes, use QMessageBox on Windows, don't rely on
argv[0] being set
4a26190 add long command line option names, add -h/--help options.
2011-06-30
Kissaki <[email protected]>
69baac1 add thunderbird and instantbird to overlay blacklist (new
hw-accelerated versions)
2011-06-25
Mikkel Krautz <[email protected]>
81dee1c Update version number of OSAX overlay injector.
d9417cb Fix the overlay on Mac OS X 10.6.8.
2011-06-17
Mikkel Krautz <[email protected]>
e9cfd21 Add build configuration for compiling on Lion.
2011-06-15
Benjamin Jemlich <[email protected]>
eeb1737 Fix UDP problems on IPv4 only hosts
2011-06-13
Stefan Hacker <[email protected]>
2d838f2 Prevent PTT window from showing up in non-PTT modes as well as
from minimizing when the MainWindow gets minimized.
Jacob Peddicord <[email protected]>
0e4d963 Implement audio attenuation for PulseAudio.
2011-06-12
Natenom <[email protected]>
a270c7f Updated German translations
2011-06-11
Tsbook <[email protected]>
60ea789 Czech Tanslation Update (#3315071)
2011-06-10
morris <[email protected]>
c581e0e Updated Brazilian Portuguese translation (#3314540)
2011-06-09
Stefan Hacker <[email protected]>
c873e08 Prevent user from accepting the channel add/edit dialog when
channel names are empty. Implements patch #3289052 in a leaner
way
Necromancer <[email protected]>
821d7ce Updated Hebrew translation (#3308818)
Svenne33 <[email protected]>
fc03b89 Updated Swedish Translation (#3296034)
2011-05-31
Natenom <[email protected]>
bc32f8d Updated German translations
2011-05-28
Mikkel Krautz <[email protected]>
d4f271b Don't link against ScriptingBridge in universal builds.
2011-05-27
Thorvald Natvig <[email protected]>
5632c35 Explicitly remove file permissions for settings and DB
2011-05-21
Stefan Hacker <[email protected]>
67ed381 Add PTT button window for tablet users
2011-05-20
Benjamin Jemlich <[email protected]>
a25d3a5 Fix log window resize behavior
2011-05-19
Stefan Hacker <[email protected]>
f9ab14c Add sendversion parameter to ini
Thorvald Natvig <[email protected]>
0afd37a Include entire plugin structure
2011-05-16
Stefan Hacker <[email protected]>
a24e50e Fix Windows build. Reverted move of overlay blacklist as it is
needed in both the overlay itself and the client (broken by
2dad2795bd0d60320811) Fixed error introduced in
VersionCheck::fetched (broken by f57f81248f0a15e7f77e) Readded
missing Server.h header in Tray.h (broken by
7529297760ac4d2d1f0a) Fixed broken build files (broken by
f7cc6e7adee66b57c33a)
Benjamin Jemlich <[email protected]>
6a52586 Move overlay blacklist to its own file
fbeed39 Fix iObfuscate for IPv6
4fd379b Fix more Windows build errors
Thorvald Natvig <[email protected]>
c3ffe0b Horrible hack to allow parallel resource builds
2011-05-15
Benjamin Jemlich <[email protected]>
7529297 Fix uppercase vs lowercase vs PCH include problems
Thorvald Natvig <[email protected]>
dbf8879 Resort to predeps
03136ba quiet-build-log for binserver
45bd813 Fix murmur warnings
1ada87d Fix warnings in overlay_gl
f7cc6e7 Now with 'make -j' support
2dad279 Move overlayBlacklist and care about error on ftruncate
c675089 Use __typeof__ CELT resolve for g++
f57f812 Fix some compiler warnings
b99c639 Get rid of unused macros
d0f075e Add quiet-build-log config option
5459d4d Make -j for binserver
4c28e60 Clean up proto/Ice headers on make clean
2011-05-14
Benjamin Jemlich <[email protected]>
d09176e Include more boost::shared_ptr headers to fix the build
b87ee95 Fix use after delete in DX10 overlay code
f7d7b99 Merge ContextActionRemove and ContextActionAdd and rename it
to ContextActionModify
2011-05-13
Stefan Hacker <[email protected]>
ba66c4d Do not change the order of protobuf message types.
c98e3ea Fix: Stale custom context menu entries (#3301658)
052d51d Fix: Ducking events attenuate Mumble (Win7) (#3294588)
Opt-out of ducking events. This prevents Mumble from being
influenced by stream attenuations triggered by other
communications applications. Only applies to Windows 7 with
WASAPI since other platforms do not have this feature.
df4b0b3 Work around scrolling behavior of QTextBrowser in Log(Fixes
#3298338).
2011-05-12
Thorvald Natvig <[email protected]>
b8986c9 Ok, actually commit the script change so it doesn't get wiped
out
2011-05-11
Benjamin Jemlich <[email protected]>
6d6afca Fix changing iMaxUsers
Thorvald Natvig <[email protected]>
07bf146 Use TCP destination as UDP source
2011-05-10
Thorvald Natvig <[email protected]>
bcb42f1 Ermine based server dist
2011-05-08
Thorvald Natvig <[email protected]>
d96648e Answer ping from same UDP address sent to (Linux only for now)
2011-05-04
Thorvald Natvig <[email protected]>
1550415 Use installation default paths and stop being difficult
2011-04-30
Stefan Hacker <[email protected]>
74a4051 Fix mixed up buttons in AudioInput
6b33a67 Improve documentation of Ice stop() command
Jamie Fraser <[email protected]>
4586068 Don't check version numbers of URLs being sent over RPC.
2011-04-29
Benjamin Jemlich <[email protected]>
900f1e5 Opus support for the server
2011-04-25
Stefan Hacker <[email protected]>
ee72dea Modify PTT queue to work for all kinds of transmission
(#2857488)
2011-04-24
Thorvald Natvig <[email protected]>
4420c07 CONFIG+=no-xinput2
2011-04-21
Benjamin Jemlich <[email protected]>
23e3999 Restore Qt <4.6 compatibility in WebFetch
2011-04-18
Mark-Willem Jansen <[email protected]>
a3245f0 Plugins: TF2 updated to build 4539
2011-04-17
Stefan Hacker <[email protected]>
4d50beb Improve error message when connecting with an invalid
password/certificate to a registered account
2011-04-11
Jamie Fraser <[email protected]>
fa7a412 Added option -wipelogs to clear logs in DB.
Ludwig Nussel <[email protected]>
10baf16 fix bonjour support using avahi compat lib
3322f1b remove CAP_NET_ADMIN
2011-04-08
Stefan Hacker <[email protected]>
05d91c1 Regenerate Ice wrapper file
2011-04-02
Stefan Hacker <[email protected]>
f738bb2 Fix chatbar sending empty messages (#3267833)
a972df6 Convert context field to json
Jamie Fraser <[email protected]>
bd690db Fixed up Otto's patch (#2911421), mostly style stuff. Changed
int -> uint and iterators to foreach()
6f156fa Correctly disable 'Disconnect' option when you abort a
reconnection.
Otto Allmendinger <[email protected]>
1d832d5 Text Message Callback with Ice
Thorvald Natvig <[email protected]>
f7d8711 Deal with non-rc versions for tarballs
2011-03-29
Mark-Willem Jansen <[email protected]>
4a98c74 Plugins: updated Team Fortress 2 to 4426
Tuck Therebelos <[email protected]>
6297937 Update/Fix L4D plugins
2011-03-27
Mikkel Krautz <[email protected]>
ac0cf66 Overlay_macx: Use newer version of libxar with proper
codesigning support.
d5161aa Overlay_macx: Remove more unused code from the previous
cleanup.
23d1baa osxdist: Add extra codesigning step for flat pkg files and the
ability to select the keychain for your codesigning identity.
Benjamin Jemlich <[email protected]>
d9324c2 Add a missing pch include in WebFetch.h
2011-03-26
Jamie Fraser <[email protected]>
9c4a194 Added a more helpful error condition to -supw being used
without a password
Mikkel Krautz <[email protected]>
d12bb8a Bump OS X overlay installer version and set minimum required
version to 1.2.3 since we haven't broken compatibility yet.
9923549 Overlay_macx: Undo intermediate CA workaround for versions of
Mac OS X prior to Snow Leopard.
2061dc1 Fix QString-from-ASCII errors on OS X.
Thorvald Natvig <[email protected]>
9facb12 Fix serverside suggestconf error for versions
2011-03-25
Thorvald Natvig <[email protected]>
94967ab Suggest Config
2011-03-24
Ludwig Nussel <[email protected]>
101bcaf if service name is empty don't pass an empty string
Thorvald Natvig <[email protected]>
35cc9cf ;
2011-03-21
Thorvald Natvig <[email protected]>
4aec112 Add \brief
c06dfbc Create common utility class for fetching from mumble.info
2011-03-20
Benjamin Jemlich <[email protected]>
23f6820 Restore forward declaration in VoiceRecorder.h
c35d093 Fix coding style in PulseAudio code
2011-03-19
Stefan Hacker <[email protected]>
0e1a351 Merge branches 'fwaggle-fix-default-port-on-paste' and
'master'
6de7303 Make text log only scroll automatically when user hasn't
manually used the scrollbar to scroll to something in the
middle (#3220440)
6f079db Fix compilation on Windows.
7bdd779 Update boost to 1.46.1
Jamie Fraser <[email protected]>
b752ea0 Added a macro "DEFAULT_MUMBLE_PORT" in src/Net.h so that its a
one-line change should the default port ever change.
Ludwig Nussel <[email protected]>
e57c008 fix compile error
2011-03-18
Jamie Fraser <[email protected]>
fb9df24 Fixed pasting of port-less URLs into connect dialog
Thorvald Natvig <[email protected]>
f3437a6 Update copyright year ranges of dev team.
2011-03-17
Thorvald Natvig <[email protected]>
0e66a64 Make log rotation more robust
2011-03-14
Thorvald Natvig <[email protected]>
aed9d26 Update binserver git-describe
2011-03-13
Thorvald Natvig <[email protected]>
64f17cf Fix a few warnings
Tsbook <[email protected]>
a3c1eac Updated Czech Translation (#3208772)
2011-03-12
Mike <[email protected]>
20ebcdc Positional audio plugin for Grand Theft Auto IV
Thorvald Natvig <[email protected]>
fb6e0ac And move qobject defs to a header so they will be parsed
ee6bccf Fix speexbuild pro and mysql installer path
973790f Update win32 build paths
2011-03-10
Mark-Willem Jansen <[email protected]>
2f3f6b1 Plugins: Initial setup for the breach plugin
2011-03-09
Stefan Hacker <[email protected]>
fb61d50 Fix Timer includes all over the codebase and fix some pro/pri
buildfiles.
Martijn Stolk <[email protected]>
db2538f Overlay: add sorting options, including ability to sort on
last state change
6d62ae7 Overlay: add support for displaying active users
Ludwig Nussel <[email protected]>
7d2d3ef open log file early so log dir can be root owned
82c4186 fix user switching
c858071 fix build error with capability.h
Thorvald Natvig <[email protected]>
9682d7d Allow some leeway in the timer atomicity test
2011-03-07
Stefan Hacker <[email protected]>
e83cec0 Instead of warning when casting from ASCII to QString in the
client disable it completely.
2011-03-06
Stefan Hacker <[email protected]>
8c952c3 Remove duplicate overlay debug output code.
2011-03-04
ronoc <[email protected]>
e6831d8 Set the correct pulse audio properties, for the icon, app name
and the media role on the pulse connection. This will help
other apps identify mumble at runtime and be able to determine
mumble's purpose.
Stefan Hacker <[email protected]>
b986e84 Fix possible access violation in Overlay
Jamie Fraser <[email protected]>
d2a023e Added "Copy URL" to channel context menu.
e83173c ICE: Add udpPing and tcpPing to User
2011-03-03
Tsbook <[email protected]>
630d712 Czech Translation Update
2011-03-01
Stefan Hacker <[email protected]>
05096f7 Add some comments to hooking code
Jamie Fraser <[email protected]>
188b652 Fixed Ice method getLogLen() requiring write secret instead of
read secret.
2011-02-28
Mark-Willem Jansen <[email protected]>
c245e2d PulseAudio: Fix multi speakers configuration.
2011-02-27
Stefan Hacker <[email protected]>
4774dab Moved windows self detection mechanism into Windows specific
Overlay code instead of special casing it in generic one
3db23e6 Make mumble overlay able to detect mumble independent of
executable name
Jamie Fraser <[email protected]>
296ee6f Fixed typo: "staring" -> "starting" in OSS.cpp
Thorvald Natvig <[email protected]>
2cd9863 Work around broken XI2 master devices
2011-02-26
Mikkel Krautz <[email protected]>
ad3926a Kill the nagging accessibility dialog from GlobalShortcutMac.
Benjamin Jemlich <[email protected]>
e53de87 Fix coding style in the UserInformation dialog
fcc8c2b Split AudioInput::encodeAudioFrame
Thorvald Natvig <[email protected]>
ffbeaa2 XInput 2.0 support
2011-02-22
Stefan Hacker <[email protected]>
ddd9c97 Add no-elevation build-flag to prevent the need of signing
win32 release builds during testing
Matthias Salzeder <[email protected]>
4232dc1 added meta shortcut to toggle channel link state
2011-02-21
Stefan Hacker <[email protected]>
a65bb68 Make message read back user configurable
2011-02-20
Stefan Hacker <[email protected]>
859d7a4 Remove leftover launchCompatibilityClient signature
4188575 mumble:// links without or with invalid version parameter now
refer to 1.2.0 by default. Also remove version hardcoding in
checker and fix version check in general.
cb39dc6 Save current input when using the history
8fa3b10 User ctrl+up/down for chatbar history
ee21456 Fix violation of abstraction in ChatbarTextEdit
127a09c Fix setenv called on windows build
f07d33b Add history to chatbar
ae024c8 Remove obvious "FPS:" text from overlay leaving only the
number
0e155a5 After downloading a new snapshot delete all snapshots older
than 30 days from the snapshot folder
Mikkel Krautz <[email protected]>
91a4fe6 Don't try launch compatibility client anymore.
Thorvald Natvig <[email protected]>
f11d097 Protobuf 2.4.0a on Win32 (and static)
873282b Update ASIO path
064a5a3 Bump version to 1.2.4
d294ccd Fix pch
2b84bd7 Suppress vendor lockin suggestions
2400cae Unify snapshot/release defines
1161c9a Remove 1.1.x - no longer maintained
2011-02-18
Stefan Hacker <[email protected]>
df0f290 Add some other applications to the overlay blacklist
2011-02-17
Stefan Hacker <[email protected]>
520ad96 Add Photoshop, Blender and GoogleEarth to the overlay
blacklist
2011-02-16
Thorvald Natvig <[email protected]>
3ccbe53 Experiment with immediate overlay delete
2011-02-15
Stefan Hacker <[email protected]>
263338e Add Windows Live Suite and Secunia PSI to default overlay
blacklist
Thorvald Natvig <[email protected]>
ed8ab35 No, events from deleted objects are really not ok.
1e74ee5 Upgrade to CELT 0.11.1 in-place
2011-02-12
Thorvald Natvig <[email protected]>
f6b6f21 Don't spam console for release build
9f2c927 No variance without averge
Tuck Therebelos <[email protected]>
2da7fb6 Plugin update run
2011-02-11
Thorvald Natvig <[email protected]>
d694432 Update mumble-overlay script
2011-02-07
karokatona <[email protected]>
3c1d24c Hungarian Translation
Thorvald Natvig <[email protected]>
685809c Remove CELT 0.10.0
Zuko <[email protected]>
e027b3f Updated Polish translation
2011-02-06
Zuko <[email protected]>
1601fb8 Password is now not visible in the Import Certificate window
2011-02-04
Mikkel Krautz <[email protected]>
775165f Add CELT 0.11.0 to OS X dist script.
Benjamin Jemlich <[email protected]>
d256a9f Add missing celt-0.11.0-build dir
04a3fcd Fix overlay editor font dialog opens behind MainWindow
58aba64 Add CELT 0.11.0 support
2011-02-01
Mikkel Krautz <[email protected]>
cd52bf6 Re-add menu roles to Settings and About menu items. The
default (text heuristic) only yields the correct result when
the texts are in English.
4199de4 ShortcutActionWidget: Use default size for OS X. With
AdjustToContents, the QComboBox *is* bigger than the contents.
2011-01-27
Zuko <[email protected]>
cebb2dd Fixed 'nan' in user information (average ping) for newly
connected users
2011-01-26
Zuko <[email protected]>
e067269 User Information improvements
6755b81 Added gg, xmpp, skype and mailto to allowedSchemes
2011-01-23
Benjamin Jemlich <[email protected]>
07ddfc7 Add NOMINMAX define
Thorvald Natvig <[email protected]>
e0ba383 Work around timestamp update for mysql
53e5c75 Fix ID of new server if all servers deleted
4559674 Add Qt 4.6 Guard to QAppMumble::event
c61522e Remove older CELT 0.9.0
2011-01-22
Benjamin Jemlich <[email protected]>
421833e Fix bIsSpeech logic
95d13a5 Style fixes in ACLEditor.cpp
2011-01-21
Joshua Kocinski <[email protected]>
dc662e0 Set bAutoUnmute flag properly when deafening while muted.
Thorvald Natvig <[email protected]>
324338f Iterator oddness in ACL Editor
460e489 Ok, slightly less verbose, then
Spaccaossi <[email protected]>
a7f91b7 Updated italian translation
2011-01-20
Benjamin Jemlich <[email protected]>
c8bd81a Use make_shared in the VoiceRecorder
373cdeb Disable sending Speex encoded audio
342ed0e Use the qBound macro to clip samples
Thorvald Natvig <[email protected]>
1cafc8b Add overly verbose proxy widget adding.
e1b24d2 Clean up a few compiler warnings.
832f5aa Include ancient ice path as well
2011-01-12
Benjamin Jemlich <[email protected]>
1e5cd08 Fix benchmark client to compile on Windows
2011-01-11
Mikkel Krautz <[email protected]>
51223e9 Remove unused AppleEvent parameter hack from os_mac.mm.
db1b92a Update Mac OS X URL handling to be compatible with current Qt.
eeac069 Fix "freeze on launch" issue on OS X. It turns out that
sending blocking AppleEvents to oneself is not such a good
idea.
Benjamin Jemlich <[email protected]>
cd1f4b3 Add a workaround for broken CodecVersion messages on 1.2.2
servers
2011-01-10
Benjamin Jemlich <[email protected]>
08904af Use TLSv1 in the benchmark client
Thorvald Natvig <[email protected]>
82879ed Re-add 0.9.0 to package script
ce85721 Change CELT 0.9.0 to 0.10.0 in package script
2011-01-08
Thorvald Natvig <[email protected]>
41af016 Make active-state of shortcuts be data-dependent
2011-01-07
Stefan Hacker <[email protected]>
194ab56 Fix overlay causing stack overflow when closing vs2010
solution
ce51f28 Prevent random fluke in ip/port readout in bf2 plugin
2011-01-06
B0nuse <[email protected]>
032546b Updated mumble_ru.ts
2011-01-04
Benjamin Jemlich <[email protected]>
c30e964 Create the RecordInfo object before adding a new RecordBuffer
2011-01-03
Benjamin Jemlich <[email protected]>
48c3c07 Set bDisconnectEmitted in the client code
2010-12-30
Antoine Bertin <[email protected]>
d90cf06 Updated french translation for Mumble
2010-12-28
Thorvald Natvig <[email protected]>
f9089d8 Auto-rename tarfiles
2010-12-27
Mikkel Krautz <[email protected]>
f38d1ad Add CELT 0.10 to osxdist.py.
Thorvald Natvig <[email protected]>
5bdf525 Timestamp table upgrades
2010-12-24
Stefan Hacker <[email protected]>
b50a0ac Update bf2 plugin to use json instead of xml for
context/identity representation
357725a Fix AudioWizard focus after invalid shortcut entry
Benjamin Jemlich <[email protected]>
87f41f4 Add CELT 0.10.0 DLLs to the installer
03a8634 Change MySQL table creation statements to work with 5.5.x
ecf3bdd Save last channel on user registration
606658e Always set umtType to the correct version
7c66886 Move bDisconnectEmitted down by one level
2010-12-23
Stefan Hacker <[email protected]>
ee8dcd8 Fix some problems with overlay backlisting not preventing dx
hooking. Improve checking for WPF.
0813b58 Add 'M:' prefix to fods/ods overlay debugging function output
Tuck Therebelos <[email protected]>
90e1f7e Fix unreliable commander state memory address
2010-12-22
Stefan Hacker <[email protected]>
50a136c Fix Timer class for systems with unusually high performance
frequency numbers or long uptime
2010-12-21
Stefan Hacker <[email protected]>
2077aa0 Fix previous wizard patch
Benjamin Jemlich <[email protected]>
83dcdc3 Add CELT 0.10.0
d82a608 Use QElapsedTimer if it's available
2010-12-20
Stefan Hacker <[email protected]>
f642271 Prevent server from forward audio from muted clients
90f5f78 Fix possible client/server mute state mismatch
b36c879 Fix attenuation not being disabled on disconnect
04a5b5c Fix possible crash in MainWindow::talkingChanged()
2010-12-19
Tuck Therebelos <[email protected]>
6d332cb Update Steam support for BC2
09008e6 Fix semicolon omission
120fa9e Plugin updates for release
2010-12-16
Benjamin Jemlich <[email protected]>
4c1e473 Restore Qt < 4.6 compatibility
495c8c3 Remove Qt dependency in the LOTRO plugin
2010-12-13
Mark-Willem Jansen <[email protected]>
283b935 Added information to the warnings, to help trace problems on
windows systems
2010-12-11
Ilmar Kruis <[email protected]>
f8d393c 'November Update' for Lord of the Rings Online plugin
2010-12-05
Benjamin Jemlich <[email protected]>
223d0a9 Unbreak send message on double click
fcb681c Fix another chatbar size bug
be86148 Release the plugin lock before calling about/config on a
plugin
be7ad39 Fix updateMenuPermissions() after context menu change
2010-12-04
Benjamin Jemlich <[email protected]>
079f1ad Remove local variable in getOSVersion
ece6a89 Readd the scrollbar changing to the chatbar in way that
doesn't crash and doesn't break everything
Thorvald Natvig <[email protected]>
c0bf2c2 Update release script
012dfc6 Use bzip2 for static build
2010-12-03
Stefan Hacker <[email protected]>
b8a2745 Fix two signed|unsigned comparison warnings
e8a2bb5 Prepare murmur for user defined server locations
Mikkel Krautz <[email protected]>
c857a99 CoreAudio: Use AudioUnitPropertyListener instead of
AUEventListener to listen for AudioUnit stream format changes.
405ef1a OverlayMac: Don't use NSBundle#objectForInfoDictionaryKey to
determine whether we're up to date.
2010-12-02
Mikkel Krautz <[email protected]>
c85be07 Use Audio::start() and Audio::stop() in ConfigDialogMac.
8366832 CoreAudio: Restart AudioInput/AudioOutput on stream format
changes.
2010-12-01
Mark-Willem Jansen <[email protected]>
da83cdd Overlay: On windows sync the settings to registry when overlay
config is changed
2010-11-29
Finessi Manuel <[email protected]>
ef07a72 Patch for bug: 3117145
Mikkel Krautz <[email protected]>
acf85af Drop the date from Mac OS X snapshots.
2ffa671 Don't include newline character from 'git describe' in
osxdist.py.
Benjamin Jemlich <[email protected]>
8c4abd2 Use default indentation in the treeview
39039c2 Disallow RequestBlob for unauthenticated users
Thorvald Natvig <[email protected]>
1893804 Changing scrollbars in chatbar causes infinite loops. Remove
it for now.
2010-11-28
Mikkel Krautz <[email protected]>
b8cb9d0 Update Boost path for OSX to 1.45.0.
a0207d5 Use 'git describe' in osxdist.py.
Benjamin Jemlich <[email protected]>
4f5089f Fix context menu handling for disconnected users
Thorvald Natvig <[email protected]>
5dfd1f0 Try to be slightly more tolerant of third-party tables in the
DB
2010-11-26
Michael Ziegler <[email protected]>
5072837 work around linux (that is, kde) switching channels on a
single click
2010-11-25
Stefan Hacker <[email protected]>
b38e264 Make TTS link simplification case insensitive
Necromancer <[email protected]>
03b5df8 [translation] Hebrew update
Benjamin Jemlich <[email protected]>
df7dc3a Don't crash if someone tries to add an ACE for an unknown user
id
Thorvald Natvig <[email protected]>
a085d26 Use git describe for server snapshots
2010-11-24
Thorvald Natvig <[email protected]>
35c6e03 Unify link detection regexps
84884ba Boost 1.45
2010-11-23
Ilmar Kruis <[email protected]>
c435d5c Update Lotro plugin to Vol III Book 2
2010-11-22
Mikkel Krautz <[email protected]>
07c0813 TCD -> TCP in Danish translation.
091d9be Fix Group::members() to include members of the channel that
the group is defined on even if it's marked as inheritable.
2010-11-21
Stefan Hacker <[email protected]>
8eb1b7e Fix user sorting in UserEdit form
ac10fe4 Fix muted/deafen indicator offset in overlay default
Benjamin Jemlich <[email protected]>
933a9dd Don't reset the connection timeout until the user is
authenticated
2010-11-20
Stefan Hacker <[email protected]>
1fa0c3c Refactor overlay preset code. Switch default layout. Try to
make new default look better.
ecff17a Set min width for log as first aid to #3109452
cb9dee6 Fix custom TTS setting saving in wizard and make switching to
TTS always enable main TTS switch.
576c9ee Fix regression in user sorting
Kissaki <[email protected]>
2a48fa0 correct ice-doc description for auth-callback idToName()
2010-11-19
Benjamin Jemlich <[email protected]>
6c78711 Print the correct filename in the error message
34ff2e7 More potential a_ucTexture == NULL crash fixes
2010-11-18
Stefan Hacker <[email protected]>
ce8cedf Unify User/ClientUser sorting. Fix "usernames in overlay are
in different order" #3110572 . Fix other sorting issues. Fix
OverlayTest compilation.
2010-11-17
Benjamin Jemlich <[email protected]>
6150084 Add and remove some forward declares from header files
fa7ea52 Fixes for /Zc:wchar_t
4315214 Fix some -Wshadow warnings
d775d5c Remove OpenGL dependency in the audio statistics dialog
426c411 Simplify iIsSpeech logic
c644952 Fix a crash in the overlay if a_ucTexture is NULL
2010-11-15
Stefan Hacker <[email protected]>
c2f0c53 Fix mumble packet image in documentation
Benjamin Jemlich <[email protected]>
907c41f Fix compile without PCH
3994350 Fix #3090083
2010-11-09
Stefan Hacker <[email protected]>
ca23daf Add no-vld and no-plugin qmake flags
2010-11-08
Mikko Rantanen <[email protected]>
77827af Documented no-bundled-celt option in INSTALL with a note
concerning CELT 0.7.x
2131364 Documentation: Added a note concerning the codec requirements
and clarified UDP tunneling. Also some minor float/margin
tweaks.
Benjamin Jemlich <[email protected]>
42930a7 Update CELT 0.9 submodule to get the PLC fixes
2010-11-07
Stefan Hacker <[email protected]>
ec0e463 Add firefox.exe to overlay blacklist
Mikkel Krautz <[email protected]>
42fc791 Don't use DBus for the client on OS X.
409aaa7 Use CELT 0.9 in osxdist script.
2010-11-06
Stefan Hacker <[email protected]>
01e2247 Fix rounding behavior in conjunction with iroundf macro in
lots of places.
Benjamin Jemlich <[email protected]>
11ff9b1 Remove more unused files
7186e61 Replace CELT 0.8.1 with 0.9.0
2010-11-03
Stefan Hacker <[email protected]>
f7aec20 Fix VoiceRecorder::sanitizeFilenameOrPathComponent: When a 255
character filename/path-component ends on '.' infinite
recursion might have occurred on windows machines.
2010-11-02
Arcenciel <[email protected]>
b1340c3 Updated Japanese Translation for 1.2.3
Benjamin Jemlich <[email protected]>
f21ecfa Use the Wix custom action to launch Mumble
7139599 Fix use of uninitialized variables and unused assignments
c865e05 Add swedish Qt translation
bee5338 Readd overlay hook on DLL_THREAD_ATTACH
2010-10-30
Spaccaossi <[email protected]>
2a26a18 Italian translation for 1.2.3
Svenne33 <[email protected]>
97e4bd6 Swedish translation for 1.2.3
Jonathan <[email protected]>
6f7435f Danish translation: small update
2010-10-29
Rafael Correia <[email protected]>
99cc86d rework to improve the quality of the code of the patch (bug
3067616 - DUAL Head PTT)
2010-10-24
Álvaro Manuel Recio Pérez <[email protected]>
f913b99 Updated Spanish translation for 1.2.3
2010-10-22
Arcenciel <[email protected]>
ec2b987 Updated Japanese Translation
Thorvald Natvig <[email protected]>
1d05e6e Patch build patch
2010-10-21
Stefan Hacker <[email protected]>
d84fa5d Add a winpaths_default.pri to contain all windows dependency
paths and make them easily overridable by a custom
winpaths_custom.pri
2010-10-19
Stefan Hacker <[email protected]>
c4211c1 Merge remote branch 'rantanen/master'
Mikko Rantanen <[email protected]>
0b14cb3 Clarified varint encoding
Álvaro Manuel Recio Pérez <[email protected]>
99ddd8f Updated Spanish translation for 1.2.3
morris <[email protected]>
7f3d833 Brazilian Portuguese translation update
Jonathan <[email protected]>
aca189b Updated Danish translation for 1.2.3
2010-10-18
Stefan Hacker <[email protected]>
65e4071 Switch VAD default from SnR to Amplitude and adjust UI
accordingly. Run audio wizard without asking first. Add update
counter to config for future updates. Add abstraction for
Version query/parsing.
Mikko Rantanen <[email protected]>