forked from mumble-voip/mumble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
11584 lines (9386 loc) · 395 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
2014-12-26
Stefan Hacker <[email protected]>
c5e427d Revert "Use TLS 1.2 when built with Qt 5."
Mikkel Krautz <[email protected]>
ef9ffea Fix qtaccessiblewidgets removal logic to be compatible with Qt
4 as well.
2014-12-25
Mikkel Krautz <[email protected]>
75843b6 Use TLS 1.2 when built with Qt 5.
78ac468 Murmur: fix override of TcpSocket::incomingConnection(). it
takes a qintptr (and not an int) in Qt 5.
7ecf4b3 Define Qt 4 no-ops for Q_DECL_OVERRIDE and Q_DECL_FINAL on the
command line.
a24b566 Only use $$shell_path on Qt 5.
MumbleTransifexBot <[email protected]>
5f3a2d6 Transifex translation update Mode: default Minimum percent
translated: 0 Matched 31 languages
2014-12-24
Mikkel Krautz <[email protected]>
fc0ab93 Do not use the qtaccessiblewidgets plugin on Qt 5.4 and
greater.
d2dbfed Remove -Zc:strictStrings flag that Qt 5.4 adds when using MSVS
2013.
124b1ce Make os_win.cpp strictStrings-safe.
630a17b Use $$shell_path to ensure QMAKE_LRELEASE is formatted
correctly regardless of the OS.
2014-12-22
Andreas Sinz <[email protected]>
ad19d15 Display the native language name in the language chooser
rather than the locale
Stefan Hacker <[email protected]>
2438f31 Fix Esperanto entry in language list and display cc in
parentheses behind name.
2014-12-07
MumbleTransifexBot <[email protected]>
442fef9 Transifex translation update
2014-11-09
Stefan Hacker <[email protected]>
78d7198 Fix typo in AudioEchoWidget regression fix
ef6353b Fix Qt5 transition regression in AudioEchoWidget.
Mikkel Krautz <[email protected]>
1bd6c88 Add RC files for CELT 0.7.0 and CELT 0.11.0.
56e7e5a Add rc file for mumble_ol.dll.
d6ba8cf Fix mumble_dll.rc to identify as a DLL.
82a8e7d Update .gitignore to ignore more of Qt 5's auto-generated
plugin importer .cpp files.
2014-11-08
MumbleTransifexBot <[email protected]>
921c073 Transifex translation update Mode: default Minimum percent
translated: 0 Matched 31 languages
2014-11-07
Jamie Fraser <[email protected]>
b9baebb Update WoW Plugin to build #19116
2014-11-05
Stefan Hacker <[email protected]>
b78f34d Calculate peak and max microphone level in the same loop.
996a3df Reset buffered frames count on encoding failure.
2014-11-04
Stefan Hacker <[email protected]>
2682987 Fix sequence counter becoming invalid for end-of-speech
frames.
dennisschagt <[email protected]>
cc0533c Fixed typo in the main README
Mikkel Krautz <[email protected]>
2c0bfa0 Fix compilation of Overlay.cpp. It was accidentally broken by
fd782c3c.
2014-11-02
Mikkel Krautz <[email protected]>
f1dbd92 Ensure up-to-date built-in overlay blacklist.
e5b6dac Add Spotify to the overlay blacklist. It can cause Mumble to
freeze/hang for multiple seconds.
fd782c3 Overlay, OverlayClient: add PID and process name diagnostics
to 'Dead client detected' notice.
2014-11-01
MumbleTransifexBot <[email protected]>
09f6813 Transifex translation update
2014-10-30
Stefan Hacker <[email protected]>
7d434bb Revert "Fix issue with tray icon double clicking."
a120c8e Fix issue with tray icon double clicking.
Jamie Fraser <[email protected]>
d2a1b5c Update WoW plugin to build 19103
2014-10-28
MumbleTransifexBot <[email protected]>
f678550 Transifex translation update
2014-10-27
Stefan Hacker <[email protected]>
f35ef65 Fix compilation failure on OSX due to missing include.
MumbleTransifexBot <[email protected]>
6f44613 Transifex translation update Mode: default Minimum percent
translated: 0 Matched 31 languages
Natenom <[email protected]>
23899b4 Extended icon theming options.
2014-10-26
Stefan Hacker <[email protected]>
cbe3956 Fix more ApplicationPalette aspects.
b923e06 Use real-name in copyright line.
38807be Integrate some feedback to ApplicationPalette
291ed48 Add ApplicationPalette class which allows theming the
QApplication::palette.
Jamie Fraser <[email protected]>
cde294f Fix assert when viewing legacy user registration lists
2014-10-25
Stefan Hacker <[email protected]>
7fbd9d4 Switch from fixing width to height for "What's this".
2014-10-24
Stefan Hacker <[email protected]>
fac902d Translation update
2014-10-23
Stefan Hacker <[email protected]>
4a149f8 Update man pages author to "the Mumble team" and bump dates.
71ff77b Add placeholder texts to connect dialog.
2014-10-21
Stefan Hacker <[email protected]>
c664b98 Fix more coding guideline violations.
cebcbd3 Fix RAND_bytes return value checking.
c9f170e Revert recent installer changes as they create more issues
than they fixed.
acf73f5 Drop unused files and icon.
2014-10-20
Stefan Hacker <[email protected]>
7a18851 Make AudioInputDialog and AudioOutputDialog use own icons.
8aa125f Fix issues found in review of PR #1422
MumbleTransifexBot <[email protected]>
fa5188c Transifex translation update
2014-10-19
Stefan Hacker <[email protected]>
6f2552d Fix Qt 5 transition bug making certificate wizard access out
of bounds.
54ec595 Update Opus to version 1.1.1 beta
Bas Wijnen <[email protected]>
dc87fa2 Fix crash on Linux when trying to configure shortcuts.
2014-10-17
Joël Troch <[email protected]>
236e987 Added Windows 10 in OS detection and manifest file.
Jamie Fraser <[email protected]>
8ab0c4a Update WoW Plugin to build 19034
2014-10-16
MumbleTransifexBot <[email protected]>
a0fd5e9 Transifex translation update Mode: default Minimum percent
translated: 0 Matched 31 languages
2014-10-15
scapula <[email protected]>
6e9a7e7 Disable vertex attrib arrays in overlay_gl (fixes #1298)
2014-10-12
MumbleTransifexBot <[email protected]>
78b6cc4 Transifex translation update
2014-10-11
Stefan Hacker <[email protected]>
1749ef4 Resolve installer upgrade issues.
fc0e20b Fix recording timer not properly displaying in Qt 5 version of
Mumble.
2014-10-08
Stefan Hacker <[email protected]>
7647538 Change Pulseaudio Role.
2014-10-04
Stefan Hacker <[email protected]>
06d9f7e Drop minimize functionality from tray icon.
2014-10-03
Stefan Hacker <[email protected]>
bf5693b Remove special case for allowing override on Qt 4 for windows.
5131d9e Review and refactor of PBKDF2 support patch.
2014-10-02
MumbleTransifexBot <[email protected]>
e313d73 Transifex translation update Mode: default Minimum percent
translated: 0 Matched 28 languages
2014-10-01
MumbleTransifexBot <[email protected]>
8097c08 Transifex translation update Mode: default Minimum percent
translated: 0 Matched 28 languages
2014-09-26
Stefan Hacker <[email protected]>
17d95c0 Update URLs in installer and add a comment.
2014-09-25
Stefan Hacker <[email protected]>
e728205 Do not allow installing x86 and x64 side by side.
bc11185 Update murmur.ini and scripts to disable dbus by default and
enable ice.
2014-09-24
Stefan Hacker <[email protected]>
491789c Restore old log timestamp format.
MumbleTransifexBot <[email protected]>
a61d67d Transifex translation update Mode: default Minimum percent
translated: 0 Matched 24 languages
2014-09-22
Stefan Hacker <[email protected]>
3c280a6 Add poor man's padding to last column in connect dialog.
MumbleTransifexBot <[email protected]>
6151814 Transifex translation update Mode: default Minimum percent
translated: 0 Matched 24 languages
2014-09-21
Stefan Hacker <[email protected]>
4eba193 Add "Uninstall" shortcut to start menu folder with windows
installer.
9f5b01b Make the Windows install create desktop shortcuts again.
b4f0c66 Update product manufacturer to be "The Mumble team"
7c5a9fb Fix murmur handling all groups starting with "sub" as special.
47a81f7 Do not use non-standard tool window for minimal mode.
bc5056c Update LICENSE file
qwestduck <[email protected]>
1c1dac5 Fix FTBFS regression from
dd7cc7caa7257d2d1525daebbcc070cbb0983915
Mikkel Krautz <[email protected]>
754fc00 MainWindow: don't use custom flags for MinimalView - keep
standard Close, Minimize and Maximize buttons.
dedf841 GlobalShortcut: remove margins on the Mac Event Tap warning's
layout container.
1375022 Make 'Close' the default for the AskOnQuit message box.
731d863 GlobalShortcut: do not require expert mode for Mac event tap
warning message in GlobalShortcutConfig.
dd7cc7c Improve the look of Mumble on Retina Display Macs.
e9e2680 Add mumble_pch.hpp include to various .mm files.
2014-09-20
Stefan Hacker <[email protected]>
570a1f2 Translation update
916dcc0 Special case the Unity desktop to also default to not minimize
to tray
694dca8 Replace hacky hide/show handling with more straight-forward
implementation.
4a67eeb Fix ServerView::mimeData not actually overriding base class
function.
7c4fbee Fix hide in tray on windows.
ddab6ed Replace overlooked QT_VERSION_CHECKs with explicit version.
8cf4e14 Introduce use of Q_DECL_OVERRIDE and Q_DECL_FINAL into the
codebase.
2014-09-19
Stefan Hacker <[email protected]>
edaca2e Fix hide in tray default value for Windows 8.1
2014-09-15
MumbleTransifexBot <[email protected]>
90925af Transifex translation update
2014-09-14
Steve Hill <[email protected]>
5e7706a Update Borderlands 2 plugin for version 1.8.3
MumbleTransifexBot <[email protected]>
d84a2dc Transifex translation update Mode: default Minimum percent
translated: 0 Matched 24 languages
2014-09-13
Stefan Hacker <[email protected]>
6095134 Fix Mumble build failing on OSX due to missing include.
MumbleTransifexBot <[email protected]>
0c8c158 Transifex translation update Mode: default Minimum percent
translated: 0 Matched 24 languages
2014-09-07
Mikkel Krautz <[email protected]>
8ad8812 MainWindow: only trigger link tooltips of Mumble is the
frontmost program.
2014-09-06
Mikkel Krautz <[email protected]>
ace1917 Add QMAKE_TARGET_BUNDLE_PREFIX to the manual plugin's
.qmake.cache file.
2014-08-27
MumbleTransifexBot <[email protected]>
09d6de1 Transifex translation update Mode: default Minimum percent
translated: 0 Matched 24 languages
2014-08-26
Michael Pavlyshko <[email protected]>
2c0c0ed Add Microsoft Visual Studio to overlay blacklist
2014-08-24
Mikkel Krautz <[email protected]>
67fc74f Build fixes for the debug variant of the
win32-static/win64-static build envs.
2014-08-23
MumbleTransifexBot <[email protected]>
282b289 Transifex translation update Mode: default Minimum percent
translated: 0 Matched 24 languages
2014-08-22
Stefan Hacker <[email protected]>
12eb264 Replace all uses of QT_VERSION_CHECK with explicit version.
4efabce Fix Qt 4 compilation.
Mikkel Krautz <[email protected]>
fc5fd45 Delete MumbleApplication.cpp.autosave
2014-08-21
Natenom <[email protected]>
83218f1 Update project url and copyright info
2014-08-19
MumbleTransifexBot <[email protected]>
4c5e0ec Transifex translation update Mode: default Minimum percent
translated: 0 Matched 24 languages
2014-08-18
Stefan Hacker <[email protected]>
b5d3758 Fix channel filtering not working.
2014-08-17
Stefan Hacker <[email protected]>
34daf71 Split up long HEADERS, SOUCES and FORMS lines to improve
readability.
f1e3e09 Fix Qt 5 upgrade broke shutdown ask on quit suppression
(#1362)
Mikkel Krautz <[email protected]>
9d668eb Use QStandardPaths's DataLocation instead of
GenericDataLocation when looking up AppData directory.
d299360 Log, TextMessage: remove $ as an illegal character in our
simple URL regexp.
MumbleTransifexBot <[email protected]>
37c768d Transifex translation update Mode: default Minimum percent
translated: 0 Matched 24 languages
2014-08-16
Stefan Hacker <[email protected]>
7cfc2e5 Split out translation resources from mumble.qrc.
MumbleTransifexBot <[email protected]>
75761f9 Transifex translation update Mode: default Minimum percent
translated: 0 Matched 24 languages
2014-08-09
Stefan Hacker <[email protected]>
880e126 Split out translations list from mumble.pro.
Mikkel Krautz <[email protected]>
d1a19d4 Cert: drop OpenSSL 0.9.7 compatibility code.
2014-08-08
Stefan Hacker <[email protected]>
90d7546 Translation update
2014-08-01
Jan Klass <[email protected]>
ed2bf49 Change default overlay avatar alignment to centered as per
#1325
Mikkel Krautz <[email protected]>
19996c5 g15helper, macx/compat: fix OS X i386 targetting when using Qt
5.
2014-07-29
Mikkel Krautz <[email protected]>
c0d7aad scripts/gen-mumble_app-qt-def.py: add Python 3 compatibility.
2014-07-28
Mikkel Krautz <[email protected]>
340c7b6 ASIOInput: use MumbleHWNDForQWidget() to get HWND for Qt 5
compatibility.
2014-07-27
Mikkel Krautz <[email protected]>
094ab1e Ensure "syslog" string literal in murmur's main.cpp is wrapped
in QLatin1String.
08d7cb3 UnixMurmur: ensure logToSyslog is initialized to false.
2014-07-25
Mikkel Krautz <[email protected]>
0faf8fa .gitignore: add .qmake.cache, .qmake.stash, and
murmurd_plugin_import.cpp.
3fe7ff4 OverlayEditorScene: include QtGlobal before QT_VERSION check
in header.
68fb468 UserListModel: add mumble_pch.hpp header instead of directly
using Qt headers in order to fix Qt::escape on Qt 5.
64d28eb mumble.pro: when using Qt 5, use its bundled icns plugin
instead of our own qicnsicon.
21554c6 3rdparty/fx11-build: remove DX_SDK include dir, we get it from
the environment.
c84e9b7 mumble, murmur: add a 'Qt::escape' for Qt 5 to avoid ifdef
hell.
434087c SSL: make CA filter code compatible with Qt 5.
2014-07-23
Mikkel Krautz <[email protected]>
63f35d6 PulseAudio: don't call pa_stream_drop() for empty
pa_stream_peek().
2014-07-22
Jan Klass <[email protected]>
47d8a4f Update gmod PA plugin with updated addresses.
2014-07-20
Mikkel Krautz <[email protected]>
840a31d macx/scripts: fix osxdist.py and build-installer-overlay to
work in a source tree path with spaces in it.
e740ea5 PulseAudio: stricter pa_stream_peek() validation.
2014-07-19
Mikkel Krautz <[email protected]>
322ed8a Murmur: pass a format string to syslog(3).
2014-07-18
main() <[email protected]>
30023c5 Support logging to syslog in Murmur
2014-07-17
main() <[email protected]>
dc3b78c Add "forceExternalAuth" config option to Murmur
Mikkel Krautz <[email protected]>
cf51bf3 OverlayConfig: hide the Overlay in Settings on winx64, since
it's not enabled at the moment.
1e30fc6 installer: remove vccorlib120.dll from the installer.
2014-07-16
Mikkel Krautz <[email protected]>
8ffe90a installer: make WiX produce a working x64 installer.
f657478 installer: fix whitespace issue in Plugins.wxs.
be8f932 installer: additional update to the .sln file for x64.
9482cc8 installer: add x64 platform to the installer.
2e5c8a5 Overlay_win: move early-return on WinX64 below variable
initializations.
19efac3 plugins: temporarily disable game plugins on Windows/amd64.
the 'link' and 'manual' plugins are still built.
8540e08 Set mumble_app.dll's version to 1.3.0.
2014-07-15
Mikkel Krautz <[email protected]>
6d96281 OSInfo: use 'WinX64' as the OS identifier for Windows/amd64
builds.
769855b Use set the 'os' query parameter to 'WinX64' when doing
version checks and plugin updates on Windows/amd64.
2014-07-14
Jan Klass <[email protected]>
cdcf77c Adjust method comment to match usage
2014-07-13
Mikkel Krautz <[email protected]>
c31269a Make Mumble and Murmur build on Windows/amd64.
2014-07-12
Mikkel Krautz <[email protected]>
50206ce celt-0.7.0-src, .gitmodules: point the submodule to our own
CELT 0.7.0 code base to fix Windows/amd64 build of celt-0.7.0.
e31b716 plugins: add missing 'elif'; fix indentation of MSVS2008 'if'
block.
9f327be plugins: add magic values for all previously supported ABIs
(and a couple of new ones) to mumble_plugin.h.
2014-07-04
Stefan Hacker <[email protected]>
e438a05 Comment memcpy from #1305
2014-07-02
Mikkel Krautz <[email protected]>
01a5e83 PulseAudio: fix access to protected enums in AudioInput and
AudioOutput.
77314f4 installer: add the ability to use a custom bzip2 directory in
the Win32 installer.
9ecdc0f installer: fix ability to use a custom OpenSslDir when
building the Win32 installer.
2014-06-14
Bernhard M. Wiedemann <[email protected]>
527d24e Make sure exported certs are not world readable
2014-06-13
Mikkel Krautz <[email protected]>
7141a05 Add CA certificate filter to MumbleSSL::addSystemCA() to work
around issue 1271.
2014-06-08
Peter Vágner <[email protected]>
800947e Messages: fix conversion from protobuf uint64 to
ChanACL::Permissions when building against Qt 5.
2bc61db OverlayEditorScene: fix header to allow building with Qt 5.
2014-05-30
Tim Cooper <[email protected]>
2b8fc35 Fix issue where the chat box does not scroll down when an
image is loaded (#1258)
2014-05-24
Jamie Fraser <[email protected]>
82f95c6 Update World of Warcraft Plugin to build 18291
2014-05-15
Mikkel Krautz <[email protected]>
f91386b mumble: fix Mumble-SA-2014-005.
2014-05-12
Mikkel Krautz <[email protected]>
d9ff1e9 ConnectDialog: HTML-escape name in ServerItem::toMimeData().
17fa695 MainWindow: HTML-escape host in Server Information dialog to
state our intention.
9837c4d MainWindow: HTML-escape hostname in 'Connecting to...'
message.
b6e17ca Log: HTML-escape QDateTime's Qt::DefaultLocaleShortDate string
representation.
d58990c CertView: do not use Qt::PlainText for qlExpiry - it needs
HTML for its expiry warning color.
73a1a98 AudioOutputSample: HTML-escape filename in QMessageBox.
1f6ddaf ASIOInput: use Qt::PlainText for QLabels.
Tim Cooper <[email protected]>
4f7ede5 Removed g.uiSession from ServerHandler::joinChannel
abdb5ac Added setTokens to ServerHandler
22d8740 Add doxygen output directory to .gitignore
c52dedc Remove unneeded Qt::escape.
a0ebded CertView: remove incorrect use of an HTML line break for
qlSubjectEmail.
2014-05-11
Mikkel Krautz <[email protected]>
1caaec7 CertView: explicitly use plain-text QLabels for
subject/issuer/email/expiry labels.
2014-04-28
Christian Krause <[email protected]>
3494362 Avoid "jump to label crosses initialization" error.
2014-04-27
Stefan Hacker <[email protected]>
abad339 Remove flawed MX host existence check for cert wizard (#1178)
a429c76 Add transifex client configuration for project.
d366065 Translation update
b3cf94f Add translation update script with transifex issue workaround
(#1195)
2014-04-26
Stefan Hacker <[email protected]>
e562e92 Exclude files with DFSG licensing issues from tar balls
(#1230)
2014-04-24
Jamie Fraser <[email protected]>
fb3d6c6 Update WoW plugin to build 18019.
2014-04-13
Tim Cooper <[email protected]>
02ddd91 Allow user renames via UserList without requiring a reconnect.
2014-04-12
Mikkel Krautz <[email protected]>
2d2509f UserListModel: fix non-PCH build by including QTextDocument
header for Qt::escape.
Tim Cooper <[email protected]>
52d19ac Allow admins to clear user avatars/textures.
2014-04-07
Philip Cass <[email protected]>
9946dc7 Reorder Mumble.proto to match ordering in Message.h.
2014-04-06
Tim Cooper <[email protected]>
01a7c58 MainWindow: fix a bug where user/channel actions were enabled
even though no user or channel was selected.
2014-04-05
Mikkel Krautz <[email protected]>
c897c56 installer: drop InstallerVersion back to 300. add note about
InstallerVersion requirements for VC12 redist to
MergeModuleDir setting.
8aafb6c installer: automatically embed VCRedist 12.0 DLLs when env var
MumbleNoMergeModule is set.
0e44742 installer: change InstallerVersion to 405 to be able to merge
with MSVS2013 VCRedist.
1b3f199 installer: update Product.wxs to refer to the VC120 CRT.
689f4c1 Bump version to 1.3.0
53daac8 mumble_plugin.h: change plugin magic values in preparation of
the MSVS 2013 switch-over.
b20d9e9 Plugins: add support for the 'path' attribute in plugin
auto-update XML.
Tim Cooper <[email protected]>
b7d9387 Be more stringent about properly escaping external strings in
HTML ('rich text' in Qt-speak).
2014-04-04
Mikkel Krautz <[email protected]>
af37749 compiler.pri: explicitly specify -ARCH:SSE for MSVS 2012 and
2013.
724d9e9 compiler.pri: explicitly target Windows XP when specifying
output binary's subsystem.
2014-03-29
Tim Cooper <[email protected]>
1256386 Fix auto-reconnect behavior when kicked or banned.
306e1f7 Log: fix typo in 'image too big' warning.
13c6e58 Fix incorrect handling of mumble:// links
2014-03-27
Stefan Hacker <[email protected]>
b252959 Missed DIST dependency on mkini.sh results.
2014-03-25
Stefan Hacker <[email protected]>
a7ae275 Make paths in fx11-build.pro case sensitive
2014-03-23
Stefan Hacker <[email protected]>
c03d8fc Drastically simplify release.pl.
2014-03-13
Stefan Hacker <[email protected]>
6a345f5 Added hidden option to disable add/edit in connect dialog (FR
#1120)
fd5a9b1 Add hidden option to disable pubserver list (FR #1120)
f2bfe2f L4D2 PA plugin update to game version 2.1.3.5 (#1184)
2014-02-24
Mikkel Krautz <[email protected]>
487fcab mumble: fix Mac build after the overlay header refactoring.
2014-02-23
Stefan Hacker <[email protected]>
d41c148 Refactor ClientUser to UserModel/MainWindow signal & slot
connections.
12eac3c Fix client freeze due to deadlock (#1167)
Jan Klass <[email protected]>
00392d1 Fix: Add forward declaration and include
2014-02-22
Jan Klass <[email protected]>
640b532 Refactor code: Create headers for cpp files
2014-02-19
Jan Klass <[email protected]>
207f66c Add entries to default overlay blacklist
2014-02-18
bendem <[email protected]>
cd2a5e5 Update french translation
Zuko <[email protected]>
221a5d7 Updated Polish translation
2014-02-17
Stefan Hacker <[email protected]>
c377cea Update translations for #1164
2014-02-16
Jan Klass <[email protected]>
f789386 Overlay: Introduce D3D call result logging
2014-02-15
Stefan Hacker <[email protected]>
d3e00de Remove 'About' action from tray context menu (#1161)
2014-02-12
Stefan Hacker <[email protected]>
ea165cd Prevent adding to VoiceRecorder buffer after recording was
stopped.
2014-02-11
Stefan Hacker <[email protected]>
2ca559b Fix assumptions in alignment fix by reintroducing silence
heuristic.
2014-02-10
Spaccaossi <[email protected]>
fbaadc4 Updated italian translation
2014-02-09
Stefan Hacker <[email protected]>
afa6ee4 Make banlist filter case insensitive (#1011)
2014-02-08
Mikkel Krautz <[email protected]>
90963a1 compiler.pri: tweak OS X SDK detection when building with Qt
4.
d55d944 g15helper: update G15 SDK paths for OS X.
2014-02-07
Mikkel Krautz <[email protected]>
229f041 Merge v1.2.5 into master.
2014-01-31
Mikkel Krautz <[email protected]>
d3be3d7 mumble: fix Mumble-SA-2014-002 (CVE-2014-0045).
8506492 mumble: fix Mumble-SA-2014-001 (CVE-2014-0044).
c3c13f9 Update changelog
269e93e mumble: fix Mumble-SA-2014-002 (CVE-2014-0045).
7e31c32 mumble: fix Mumble-SA-2014-001 (CVE-2014-0044).
f5ebe9d Bump version to 1.2.5
2014-01-25
Mikkel Krautz <[email protected]>
1bd57bd TextToSpeech_macx: selectively conform to
NSSpeechSynthesizerDelegate protocol.
3e0112d README.static.osx: remove Linux references.
2014-01-21
Zorg <[email protected]>
c2f75bb TextToSpeech_macx: fix 10.4 compatibility.
15f7610 TextToSpeech_macx: reimplement using NSSpeechSynthesizer.
2014-01-18
Natenom <[email protected]>
d9785f9 Shows move message if you moved a user from another channel
into another channel
2014-01-17
Jan Klass <[email protected]>
0285e3b Adjust build error text (missing submodule dir)
Natenom <[email protected]>
9cc1c0a Add -limits to help text and improve man page
2014-01-12
Mikkel Krautz <[email protected]>
44a5bd1 scripts: remove unused svn2cl scripts.
97b75de scripts: remove old Ermine build scripts.
6da40b8 winpaths_static.pri: remove executable bit.
64abcb3 scripts: set +x bit for the files people are expected to run.
f623a69 scripts/mkini-win32.bat: use ',' as substitution delimiter;
also fix regexp.
4323a21 scripts/release.pl: remove slicer-specific deployment
functionality.
Piratonym <[email protected]>
29a65c6 AudioOutput: add an 'attenuate others' option for priority
speakers.
2014-01-11
Mikkel Krautz <[email protected]>
1d0b1c8 OSInfo: fix display of Windows service packs in
getOSDisplayableVersion.
9521471 plugins/borderlands2: fix version check.
Rafael Lopez <[email protected]>
d9d81a9 MainWindow: add Cancel button to the "Minimize or Close?"
message box.
Zuko <[email protected]>
8f0ae69 OSInfo: use full Windows version when version string is
user-facing.
2014-01-10
Mikkel Krautz <[email protected]>
00b3686 scripts/release.pl: add vpath special-case for fx11.
2014-01-08
Natenom <[email protected]>
44a0846 Show messages for priority speaker status
b2d938b Messages: use actual username (instead of the ConnectDialog
username) in msgPermissionDenied.
2014-01-01
Kyle Smith <[email protected]>
da6c244 New approach using a QHash to track PTT events per whisper.
2013-12-30
Mikkel Krautz <[email protected]>
2ac3b67 AudioInput: make a copy of the EncodingOutputBuffer when
calling flushCheck.
2013-12-29
Stefan Hacker <[email protected]>
5fa918b Fix accidental CBR limit for large Opus frames.
2013-12-17
Mikkel Krautz <[email protected]>
338f024 opus-build: revert ff9086e3 and error out if built with
CONFIG(sbcelt) instead.
ff9086e opus-build: build as C++ on Unix-like systems.
2013-12-15
Mikkel Krautz <[email protected]>
b5ee1f4 mumble: add os=MacOSX-Universal to VersionCheck.cpp and
Plugins.cpp.
6918c9d scripts/release.pl: add dirs new to Opus 1.1 to fix
from-tarball build.
2013-12-14
Mikkel Krautz <[email protected]>
3a47d99 mumble: allow Log_macx.mm to build against the OS X 10.4 SDK
(for universal builds).
2013-12-06
Stefan Hacker <[email protected]>
61391ae Update to Opus 1.1
Jan Klass <[email protected]>
67914c3 Logtextfix. Logically format code.
2013-12-05
Stefan Hacker <[email protected]>
fb56112 Fix crash of target application due to failures in
D10State::init.
2013-12-04
Stefan Hacker <[email protected]>
c148aaf Update Opus to 1.1-rc3
2013-11-30
Stefan Hacker <[email protected]>
ab12d35 Fix handling of failed shared data map creation in overlay.
Jan Klass <[email protected]>
9544bec Overlay: Add Direct3D 11 support
2013-11-26
Stefan Hacker <[email protected]>
d322ad1 Update Opus to 1.1-rc
Jan Klass <[email protected]>
71e6ab1 Overlay: Resolve d3d9 hook TODO. Fix naming.
80a9350 Overlay: Code improvements
2013-11-24
Jan Klass <[email protected]>
cd4e835 Overlay: Changes as per PR-comments
2013-11-16
Jan Klass <[email protected]>
250835e Overlay: Rework Code.
Mikkel Krautz <[email protected]>
087e38a overlay: fix blacklist debug ods call.
2013-11-11
Tristan Matthews <[email protected]>
f514107 AGC: remove redundant speex_preprocess_ctl call
2013-11-10
Mikkel Krautz <[email protected]>
7f976ed mumble, mumble_exe: fix overlay self-detection for the
mumble_app.dll build.
192135d Add x-scheme-handler support to the Mumble .desktop file.
2013-11-08
Stefan Hacker <[email protected]>
8e22f9a Fix "Inverted samples in WAV recording when clipping" #971
Tim Burke <[email protected]>
1eefaab mumble.appcompat.manifest: add Windows 8 and Windows 8.1
entries.
Zuko <[email protected]>
f459c5b Updated Polish translation
2013-11-06
Stefan Hacker <[email protected]>
ed424af Modify VoiceRecorder to be able to properly abort a recording.
2013-11-05
Stefan Hacker <[email protected]>
a0aa1bc Refactoring of VoiceRecord.h/cpp according to new coding
guidelines.
fc4e1e3 Fix recorder crash due to use after free on user object.
2013-11-04
Stefan Hacker <[email protected]>
9a47e05 Fix multi-track recordings going out of alignment on long
recordings
Artem Vorotnikov <[email protected]>
829d4c6 Russian translation fixes
zapman <unknown>
807dd4c Update Turkish translation
2013-10-23
Stefan Hacker <[email protected]>
2c892fe Fix various compiler warnings with VS2010
e51921e Fix bug and formating in subrosa PA plugin.
3af1651 Fix warning due to implicit BOOL to bool conversion.
07e055f Fix overlay regression that in some cases prevented injection
into devices in myCreateDevice(/Ex)
2013-10-22
Stefan Hacker <[email protected]>
a6f7610 Fix mixup between printf and QString format character in
VoiceRecorder error message
Zuko <[email protected]>
75976ec Fix two GUI issues
2013-10-21
Mikkel Krautz <[email protected]>
35765f6 mumble: use ConfigDialog_macx on Qt5/macx.
2013-10-20
Mikkel Krautz <[email protected]>
915fe15 mumble: allow GlobalShortcut_macx.mm to build using the OS X
10.9 SDK.
d59a3b1 compiler.pri: use default OS X SDK instead of hard-coding it.
1509f56 mumble: fix UserListModel.h includes to work without PCH.
2013-10-16
Timo Gurr <[email protected]>
d2ed7d2 Update slice path for Ice 3.5.1
2013-10-01
Natenom <[email protected]>
f07f0c8 Show channelid to ACLEditor
2013-09-21
Stefan Hacker <[email protected]>
cde5610 Make userlist filter case-insensitive
5b9e899 Fix application shortcuts not working in minimal mode.
2013-09-20
Stefan Hacker <[email protected]>
15ff072 Remove event handler for retired global channel filter
shortcut
198f45a Update Opus to v1.1 beta release
d35468c Make sure filter never hides the channel the user resides in.
983b6db Expand "What's this" and tooltip for filter action
15afc05 Default enable hide empty channel behavior for filter
499b3f5 Add Ctrl+F shortcut for quickly enabling/disabling channel
filtering
2013-09-17
Stefan Hacker <[email protected]>
42d74df Fix channel flag handling with filter patch
2013-09-15
Mikkel Krautz <[email protected]>
bcf1a3e build: add support for building against Qt 5 from the
win32-static build env.
2013-09-14
Stefan Hacker <[email protected]>
39697c7 Re-implement UserEdit using Model/View paradigm to resolve
various problems with the old implementation.
860ec5c Reduce probability for possible race until a real fix can be
implemented
2013-09-13
Mikkel Krautz <[email protected]>
b25a906 mumble_exe: do not add mumble.exe's parent directory to PATH.
bcaa10a mumble_exe: add user-visible alert dialogs for error states.
2013-09-12
Frank Mueller <[email protected]>
5b3a406 Fixed leaving channel message not being sent when leaving the
server
2013-09-06
Mikkel Krautz <[email protected]>
442b46e installer: automatically build a static installer when in the
win32-static build env.
2013-09-01
Stefan Hacker <[email protected]>
8f30d0c First set of fixes for filter patch