forked from mumble-voip/mumble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
10196 lines (8275 loc) · 350 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-01-31
Mikkel Krautz <[email protected]>
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
2013-06-01
Stefan Hacker <[email protected]>
5ff038e Update changelog
2013-05-31
Mikkel Krautz <[email protected]>
aab9cdc Server::sendMessage: encode the source IP of outgoing UDP
packets to match the UDP socket's address family.
2013-03-27
Mikkel Krautz <[email protected]>
bc871f6 murmur.pro: add CONFIG(ermine) for the Ermine packaged build.
2013-03-19
Stefan Hacker <[email protected]>
deeeb72 Swedish translation error (#973)
2013-03-18
Martin von Gagern <[email protected]>
d71b2fd Ensure that the MAX macro is always defined.
bogie <[email protected]>
dab8157 Updated BF3 PA plugin to Endgame DLC(b1147186)
2013-02-20
Zuko <[email protected]>
c00b44e Minor fix in pl translation
2013-02-02
Mikkel Krautz <[email protected]>
b115a29 opus-build: build with CONFIG=staticlib on Unix as we do for
our bundled Speex library.
2013-01-27
Mikkel Krautz <[email protected]>
1fa4e82 ConfigDialogDelegate: return fully standalone NSImage in
QIcon_to_AutoreleasedNSImage.
2013-01-20
Mikkel Krautz <[email protected]>
c8b6d69 osxdist.py: create a tarball in addition to the XIP archive
for OS X static Murmur.
2013-01-19
bogie <[email protected]>
fed89ce BF3 PA plugin update: fixed one value
2013-01-16
Stefan Hacker <[email protected]>
f4cc3f0 Fix mumble_ol.dll not being versioned under windows.
2013-01-15
Stefan Hacker <[email protected]>
1a9aec9 mklic.pl run to update in-client license display
8cbf176 Update changelog and LICENSE file.
2013-01-14
Stefan Hacker <[email protected]>
6d67d07 Default disable hide in tray also for Windows 8
2013-01-13
Mikkel Krautz <[email protected]>
8e79041 mumble_qt.qrc: remove nl, he, hu.
8b83aba mumble.pro, mumble.qrc: remove unfinished Hungarian
translation from release.
0ddb922 mumble.pro, mumble.qrc: remove unfinished Hebrew translation
from release.
886e8d1 mumble.qrc: also remove NL from here.
2d1bc76 mumble.pro: exclude unfinished NL translation.
cd8e996 mumble_ja.ts: mark as finished.
09d8fa1 mumble_da.ts: 3. part licenser -> Tredjepartslicenser.
Svenne33 <[email protected]>
e530cab mumble_sv.ts: update for 1.2.4.
2013-01-11
Stefan Hacker <[email protected]>
8678a0c Introduce concept of NULL plugin to retract plugins.
Steve Hill <[email protected]>
4dcd700 Positional audio plugin for Borderlands 2 v1.3.1
zapman <unknown>
d9edcbf Minor fixes for French translation
2013-01-10
Stefan Hacker <[email protected]>
1253532 setLiveConf for opusthreshold and channelnestinglimit didn't
reset on empty string (#938)
2013-01-08
Mikkel Krautz <[email protected]>
acb28e8 GlobalShortcutWin: revert 242af40b to restore keyboard
suppression.
2013-01-07
Mikkel Krautz <[email protected]>
242af40 GlobalShortcutWin: try to make WinHooks do less work.
2013-01-04
Stefan Hacker <[email protected]>
f569e1e Fix typo in mklic.pl
086d4a2 Add back accelerator keys for Cancel in QDialogButtonBox.
2013-01-03
Mikkel Krautz <[email protected]>
a691c40 Murmur: restore old meaning of -fg on Windows: don't write to
the log file.
268ae8d Murmur: remove logfile detach warning on Windows. Detach is a
no-op on Windows.
92206cc Various murmur.ini fixes.
2013-01-02
Mikkel Krautz <[email protected]>
921f6e4 GlobalShortcut_win: log the user's LowLevelHooksTimeout value
2012-12-29
Stefan Hacker <[email protected]>
e87028a Integrate MIT licensed 3rd party Qt translations for missing
locales.
Zuko <[email protected]>
d25c069 Fix for Polish translation
2012-12-28
bogie <[email protected]>
ad1c30a Update for BF3 PA plugin
2012-12-27
Stefan Hacker <[email protected]>
8b74d4b Make analyze config option also apply to release builds
2012-12-24
Stefan Hacker <[email protected]>
0d825b3 WASAPINotificationClient singleton initialization wasn't
threadsafe.
2012-12-22
Mikkel Krautz <[email protected]>
ea221f3 compiler.pri: add CONFIG=clang-analyzer for the clang-checker
slave.
2012-12-21
zapman <unknown>
3fc8861 French and Turkish translation improvements
2012-12-18
Stefan Hacker <[email protected]>
e9ce44a Make sure we don't accidently add spaces to installer paths
24b6148 Add ini creation file for windows build
2012-12-16
bogie <[email protected]>
14f10e5 Update bf3 PA plugin
2012-12-15
Kissaki <[email protected]>
6ad5ea4 add RzSynapse.exe to overlay blacklist to prevent invisible
hooking
Mikkel Krautz <[email protected]>
1eca952 Add Windows Phone IP over USB Service to the overlay
blacklist.
2012-12-13
zapman <unknown>
857b03a Fix swapped string in fr and tr translation
2012-12-10
Stefan Hacker <[email protected]>
305b883 Small fix for French translation.
2012-12-09
Stefan Hacker <[email protected]>
1b2023c Missing two strings for French translation.
Kissaki <[email protected]>
001a5c2 fix bug 924: Server favorites disappear on second Mumble
instance (-m)
2012-12-08
Stefan Hacker <[email protected]>
d14db99 Use same sentence structure for send message to channel/user
in German translation so switching between the two is less
jarring.
7f70a4a Fix typo in config and remote leftover debug statement in
Meta.cpp
f0c94f4 Fix outdated comment on bonjour config option default value.
9988e9a Improve murmur.ini documentation.
8c07c75 Add MetaParams::typeCheckedFromSettings to be able to warn the
user if a default settings value was used because the given
value wasn't in the expected format.
zapman <unknown>
5f46755 Turkish translation update
d2839c8 French translation update
2012-12-06
bogie <[email protected]>
9b0ae8b Updated bf3 PA plugin to Aftermath patch
2012-12-04
Kissaki <[email protected]>
2a469e8 remove duplicate overlay blacklist entry for chrome.exe
2012-12-02
Kissaki <[email protected]>
4ec62f1 add Steam and chrome to (default) overlay blacklist
7d6beed fix bug #933: Double-clicking mumble in the taskbar results in
a blank window
529f666 add version and fn existence checks to the PHP sample scripts
2012-11-30
GoD-Tony <[email protected]>
0bdf4c6 Updated offsets for Counter-Strike: Source.
2012-11-28
Stefan Hacker <[email protected]>
bb76e7a Fix pre 1.2.4 clients receiving Opus warnings unintentionally.
2012-11-27
Stefan Hacker <[email protected]>
07a0e51 Add Adobe Acrobat to overlay blacklist
2012-11-26
Stefan Hacker <[email protected]>
3297416 Fix use of cConnection smart_ptr in ServerHandler
Zuko <[email protected]>
bddefc2 Fixes in Polish translation
2012-11-20
Stefan Hacker <[email protected]>
afa21be Add debug output to client-side SQL queries.
2012-11-18
Stefan Hacker <[email protected]>
338c985 Manual positioning plugin had X-Axis backwards
Zuko <[email protected]>
ab225ea Polish translation for Mumble 1.2.4
2012-11-16
Stefan Hacker <[email protected]>
90599b8 Fix Servers with less than 1 ms latency do not show in the
server list (#926)
Mikkel Krautz <[email protected]>
46d659d overlay/d3d9: pass through IDirect3DDevice9 AddRef/Release
methods to originals on Windows 8.
2012-11-15
Álvaro M. Recio Pérez <[email protected]>
e661969 Updated Spanish translation file for version 1.2.4
2012-11-12
Stefan Hacker <[email protected]>
becbda5 Add a small script to pull translation state from compile
logs.
1922df7 Connection reject messages weren't translated properly
client-side.
2012-11-11
Stefan Hacker <[email protected]>
f96c736 Update German translation and mark already translated strings
as done.
tkmorris <[email protected]>
4316bea Minor tweaks to pt_BR translation
Mikkel Krautz <[email protected]>
071be0f HardHook: add additional opcodes.
2012-11-09
tkmorris <[email protected]>
076f10c Lupdate missed a string in pt_BR translation
2012-11-07
haru_arc <[email protected]>
cb22b39 Update Japanese Translation
2012-11-05
Stefan Hacker <[email protected]>
48646c0 Changing installer components without changing their GUIDs
resulted in shortcuts not getting removed properly on update.
3f252eb Swap "Send Message" and "Copy URL" in channel context menu as
copying a url is rarer and should be easier to hit.
B0nuse <[email protected]>
09f2ec0 Final release mumble_ru.ts for Mumble 1.2.4 with new
translating position 'Copy URL' in channel menu_fix
Zentriple <[email protected]>
46740a2 Minor fixes for Danish translation
2012-11-04
Stefan Hacker <[email protected]>
ce83353 Make opustreshold and channelnestinglimit accept zero values
in setLiveConf.
92152e1 lupdate run with disabled similartext heuristics.
Mikkel Krautz <[email protected]>
a13bb16 ConfigDialogDelegate: memory management and coding style
fixes.
B0nuse <[email protected]>
4f9b332 Final release mumble_ru.ts for Mumble 1.2.4.
2012-11-02
Stefan Hacker <[email protected]>
b933b3d Add WASAPINotificationClient code to reset audio in reaction
to device changes on Windows >= Vista.
2012-10-31
Stefan Hacker <[email protected]>
df56b92 Fix regression in RichTextEditor that prevent it from being
completely emptied.
2012-10-30
Stefan Hacker <[email protected]>
5fdf6e2 Fix drag and drop regression introduced by Qt updated.
Lekensteyn <[email protected]>
ca5d432 Partial Dutch translation for 1.2.4 (#3581588)
Zentriple <[email protected]>
3d543fa Updated Danish translation for 1.2.4 (#3581734)
2012-10-29
Mikkel Krautz <[email protected]>
e430a08 macx: don't add scripts as a subdir, include it instead.
7de07df macx: pro file fixes for release.pl.
286f148 scripts/release.pl: make sure to archive files listed in
OBJECTIVE_SOURCES.
ef07910 scripts/release.pl: add sbcelt directories to fulldirs.
8b226ca scripts/release.pl: special considerations for sbcelt.
2012-10-28
Stefan Hacker <[email protected]>
afd6ca3 Make installer use Mumble* environment variables for
configuration if they are enable. Otherwise fallback to
current buildserver defaults.
Thorvald Natvig <[email protected]>
f4da625 QtMumble path
c6b0e8b Fix build regression with ASIO
2012-10-27
Mikkel Krautz <[email protected]>
752a630 plugins/link: make POSIX link work with Apple clang++ (Xcode
4.5).
c49a17a tests: .pro file cleanup.
d07f38f tests: update TestLink to build on OS X.
2012-10-26
Stefan Hacker <[email protected]>
756f9cf Remove license, readme and uninstaller shortcuts from
application menu.
2012-10-25
Stefan Hacker <[email protected]>
1983ff2 String freeze for 1.2.4.
Kissaki <[email protected]>
b9a0c54 add qt_hu.qm to mumble.pro project file
tkmorris <[email protected]>
9b09608 Fix typos in pt_BR translation after the string freeze
2012-10-19
Kissaki <[email protected]>
9bd10b0 refacs; initialization, var-scope reduction, replace c-style
casts, rm unused
204affd add depend on Hungarian translation of qt
2012-10-18
zapman <unknown>
d74ea83 Update Turkish translation and add installer Translation
16b38b6 Update French translation
2012-10-17
tkmorris <[email protected]>
04592b6 WIX Portuguese Brazil translation update, mostly typos
2012-10-04
Stefan Hacker <[email protected]>
ce65945 Forgot to update language list in Product.wxs
db0fbee Add Portoguese translation to installer.
2012-10-03
Stefan Hacker <[email protected]>
1007d24 WIX msi installer chinese locale (#3565260)
2012-09-27
Stefan Hacker <[email protected]>
5f42a5f Use U+2191 Upwards Arrow to indicate parent channel
relationship for subchannel whisper to prevent "Data" field
truncation.
e69c3c6 Use new constants some more.
bogie <[email protected]>
e4ea4b3 Added possibility to whisper to sub channels of parent
channel(#1-#8)
2012-09-20
tkmorris <[email protected]>
19c9475 Portuguese installer translation.
Mikkel Krautz <[email protected]>
8fd27f6 osxdist.py: use new README for static server; tweak filename.
c71aea2 Add more newbie friendly READMEs to the static servers.
2012-09-17
Kissaki <[email protected]>
e5101f2 Fix debug output for overlay chain notice
ea29bd2 initialize member variable DevState::initRefCount in
constructor
2012-09-16
Mikkel Krautz <[email protected]>
98cacbc osxdist.py: only rmtree if path exists.
b86c3b7 osxdist.py: move to a separate Murmur package on OS X.
58bd65b Murmur: fix static OS X build.
a1eb9cf Mumble: include and export all Qt symbols to plugins (static
OS X)
2012-09-15
Mikkel Krautz <[email protected]>
63c91fa osxdist.py: consistent .dmg naming for releases and snapshots.
e8a28dc compiler.pri: Update OS X Boost to 1.51.0.
Natenom <[email protected]>
95d2137 Translation updates; fix shortcuts for right click on a
channel
2012-09-14
Stefan Hacker <[email protected]>
145d9f9 Introduce channel nesting limit (default=10).
Benjamin Jemlich <[email protected]>
6626e1d OverlayConfig: Hide uninstall button on Windows
bogie <[email protected]>
2aa057d accidentally switched top and front vector, has been fixed and
tested with two people.
2012-09-13
tkmorris <[email protected]>
87bda5c Portuguese Brazilian update
Benjamin Jemlich <[email protected]>
1db5d03 Benchmark: Fix crypt resync handling
2012-09-08
bogie <[email protected]>
2b9233c updated plugins/bf3/bf3.cpp for DLC Armored Kill(build 981420)
2012-08-31
Natenom <[email protected]>
9177738 Update INSTALL
2012-08-30
Natenom <[email protected]>
6602fb6 Updated German translations
Tsbook <[email protected]>
f884680 Czech localization update
2012-08-29
Stefan Hacker <[email protected]>
f178216 Update .ts files
B0nuse <[email protected]>
4d17ba4 Translated new position at RU language file.
morris <[email protected]>
837e037 Updated Brazilian Portuguese translation
2012-08-19
EarlOfWenc <[email protected]>
09d5c07 Replaced last traces of MD5 by SHA-1
Mikkel Krautz <[email protected]>
a0b3706 compiler.pri: fix mistakes from previous commit; use
QMAKE_OBJECTIVE_C(XX)FLAGS for ObjC-flags.
2012-08-18
Piotr Chodań <[email protected]>
752d582 Updated LoL plugin for game version .145
Mikkel Krautz <[email protected]>
beea301 compiler.pri: cleanup -isystem includes, fix ObjC/ObjC++
FLAGS.
f102f56 compiler.pri: mark all external library include paths as
system paths to suppress warnings.
971f0ff macx/osax: fix unused parameter warnings.
2012-08-16
EarlOfWenc <user@localhost>
377c65f Extended recording notification to linked channels
2012-08-15
Piotr Chodań <[email protected]>
2668713 New PA plugin: Blacklight: Retribution (v0.9.8.0) Supports
camera position, front and top vectors and context. No support
for identity and avatar position/top/front vectors
8333ba8 Updated League of Legends plugin (v1.0.0.144). * Moved some
static addresses outside functions for clarity Removed top
vectors retrieval which can be problematic and aren't used at
all in this game * Fixed context support
Kissaki <[email protected]>
92a37af make the overlay exceptions window more elaborative
2012-08-14
Piotr Chodań <[email protected]>
fba76cd Updated gw plugin for game build 36001
Mikkel Krautz <[email protected]>
b6d8bf3 Log_macx: remove Notification Center notifications on click.
Spaccaossi <[email protected]>
18d1b7b Updated Italian translation
de46c7b updated italian translation
2012-08-12
Stefan Hacker <[email protected]>
86383df Modify VersionCheck::fetched to keep last N (currently N=1)
snapshots.
b6f8996 Installer integration for just cause 2 pa plugin.
Mike <[email protected]>
7edc2a2 Add positional audio plugin for Just Cause 2
Benjamin Jemlich <[email protected]>
a01155c Installer: Remove useless Feature element
2012-08-09
Mikkel Krautz <[email protected]>
c2655fc Mumble: allow client to use SBCELT for CELT decoding via
CONFIG(sbcelt).
2012-08-07
Benjamin Jemlich <[email protected]>
f5bac3d Log: Fix compile and logic error for ballon messages
2012-08-06
Stefan Hacker <[email protected]>
f8d57e4 A number of translations were missing from resource files.
aa580f3 Trigger codec re-negotiation also on user disconnect and when
opusthreshold is set.
Mikkel Krautz <[email protected]>
7a0f358 Log: clean up notification handling; add Notification Center
support for OS X.
2c73aeb ConfigDialog: keep a ConfigWidget in expert mode after
defaults have been restored.
2012-08-05
Stefan Hacker <[email protected]>
8a9b532 Shuffle around idle action UI a bit.
Mikkel Krautz <[email protected]>
a331d10 GlobalShortcut: instruct users how to enable full shortcut
functionality on OS X, if they so please.
05c740b macx/osax: bump OS X overlay version.
9001c28 3rdPartyLicenses: add mach_override license.
96fd34d macx/overlay: sync with latest mach_override.
19577ae Only show the annoying 'Drag me' title bars on DockWidgets in
Custom layout mode.
07e232e LookConfig: center layout options.
7154ec5 3rdPartyLicenses: add libogg, libvorbis and libFLAC licenses.
10d4307 3rdPartyLicenses: insert a carefully considered space into the
libsndfile license text.
4d41a6e build: put Objective-C(++) source files into OBJECTIVE_SOURCES
to make qmake shut up.
503c79f Overlay: only consider MumbleOverlay.pkg in app bundle.
7ad4569 Overlay: simplify OS X overlay installation.
dbe199e Overlay: disable auto-updating.
cfa5125 Boost 1.50.0 for OS X.
2012-08-04
Stefan Hacker <[email protected]>
54384d7 Fix some strings.
c088699 Redesign idle action configuration and add a mute idle action.
f8c1b92 Make displaying users above channels default.
f58dbc1 Make sure to send initial ping right after connect to
establish UDP connection.
cde04dc Fix Opus encoding for end of speech frames as well as
bandwidth display.
Benjamin Jemlich <[email protected]>
3b1a6c0 ServerHandler: Fix Opus handling via TCP
2012-08-03
Stefan Hacker <[email protected]>
e7f8f0d Add CELT kill switch to configuration. (g.s.bDisableCelt @
audio/disablecelt)
27a98c0 Remove some now outdated references to CELT.
069b01f Use Opus in CBR mode to prevent bandwidth spikes.
Benjamin Jemlich <[email protected]>
139c625 Add Opus license to the about dialog
2012-08-02
Thorvald Natvig <[email protected]>
6c9694d 'Fix' release script for opus
2012-07-23
Natenom <[email protected]>
2ba6f00 Updated German translations
2012-07-22
Mikkel Krautz <[email protected]>
9e23320 Plugins: make manual plugin load in static Mumble builds;
still needs a few symbols to actually run, though.
c3a86b8 Opus: switch submodule back to d060dd7c; last commit
accidently changed it.
c6c63fc Mumble: add Apple anchor library requirement to OS X codesign
requirements.
08af6c2 Mumble: properly specify designated requirements for OS X
Developer ID code signing.
2012-07-21
Mikkel Krautz <[email protected]>
cf0d1d1 Mumble: don't explicitly set codesign signature size in
osxdist.py anymore (not needed for Developer ID).
f2253cf Mumble: optimize osxdist.py for Developer ID signing.
723dd79 Mumble: simplify osxdist.py script, now that our OS X builds
are static.
805e22d Mumble: more force-shared library builds.
ab15cc0 Mumble: build shared CELT libraries, even for CONFIG(static).
Benjamin Jemlich <[email protected]>
924114f More translation updates
7dcaf46 Update translation files
2012-07-20
Mikkel Krautz <[email protected]>
3d63fb9 Mumble: allow static client builds
2012-07-16
Benjamin Jemlich <[email protected]>
994e130 Murmur: Fix message type detection in Server::processMsg and
add a few more comments
ab940f1 Mumble: Add Windows 7 compatibility keys to the manifest
ddd3f61 Update Opus submodule and don't change the library version on
Windows
2012-07-15
Piotr Chodań <[email protected]>
442a9fd Further updates and optimizations to the LoL plugin - made the
code simplier, less nested in fetch(). - strings are now
ensured to be zero-terminated - replaced calcout() call from
trylock() with fetch call that can actually fail. - Disabled
identity support since it still needs some work.
cb4b040 Fixed plugin for v1.0.0.142, added identity support added
avatar top vector support added helpful arrays of bytes in
case someone wants to update this plugin faster than me - if
necessary, I can record a video-tutorial for this changed the
way trylock function is executed since we don't need all these
checks (and important ones are checked in refreshPointers()
function anyway)
Stefan Hacker <[email protected]>
7d9d54a Minor modifications for lol plugin.
e5c5649 Fix zero terminations.
2012-07-11
Stefan Hacker <[email protected]>
d39892e Minor fixes for bf3 plugin
1ba3a8b Clarify audio processing option: 'Amplification' -> 'Max.
Amplification'
Mikkel Krautz <[email protected]>
5e4c61c OS X: use clang++ for QMAKE_CXX.
105c72e OS X: update build for Xcode 4.4.
2012-07-10
Benjamin Jemlich <[email protected]>
d2fb4e3 Fix code style
2012-07-09
Stefan Hacker <[email protected]>
08f0d24 Modify Ice logging to only output on action and verify all
callback adding functions are fine with being called multiple
times with the same proxy.
Benjamin Jemlich <[email protected]>
e0d031d Add (no-)bundled-opus config options
115c352 Build libopus.so.0 instead of libopus.so.1
ceab493 Installer: Add Opus DLLs
2012-07-06
Stefan Hacker <[email protected]>
3bcc83e More comments for HardHook code
ab155bd Ensure Mumble will actually crash on callback crashes on
Windows
2012-07-05
Mikkel Krautz <[email protected]>
03dbaa5 Embed install name in Opus dylib so OS X dist script knows
where to look.
Benjamin Jemlich <[email protected]>
e5ea4a2 Really enable Opus by default...
2012-07-04
Benjamin Jemlich <[email protected]>
1368cbb Enable Opus by default
2012-06-28
Benjamin Jemlich <[email protected]>
2e74b1b Move some variable declarations
2012-06-24
Bojan <[email protected]>
d8cbd6f BF3 plugin update. Added context + identity support.
2012-06-23
Stefan Hacker <[email protected]>
fea97c7 Unreal Tournament PA plugin: Installer integration + Some
fixes.
2012-06-17
QuirB <[email protected]>
1b20395 New PA plugin: UT99 with context support.
2012-06-10
Kissaki <[email protected]>
f432047 Update German translation
2012-06-08
Benjamin Jemlich <[email protected]>
7ec4f6a Murmur: Add codec warnings and ignore non-Opus packets if Opus
is enabled
1443478 CELTCodec: Fix compile error if PLUGIN_PATH is set
f0c16f3 Murmur: add Opus threshold option
2012-06-06
Benjamin Jemlich <[email protected]>
3c2dec5 Audio: Move CELT code
99c4e21 Audio: Remove unused CELT loading code
2012-06-05
Kissaki <[email protected]>
01fc4bf WolfET: set context data in JSON format
833c02e WolfET: fix string buffer termination and use more efficient
peeking
Benjamin Jemlich <[email protected]>
852d346 AudioOutputSpeech: Fix noise problems in Opus mode
Ryan Austin <[email protected]>
e16ee9a Updated BF3 PA plugin for BF3 v944019
2012-06-03
Stefan Hacker <hast@hast-desktop.(none)>
a2a3836 PTT hold feature that can virtually "hold" down the PTT key
for up to 5s after releasing it. (#3380557)
2012-05-31
Benjamin Jemlich <[email protected]>
5c353d2 Update Opus submodule
81caf1c GW plugin: break it because it doesn't work
611abe5 GW plugin: style fixes
6633ea0 MainWindow: Manually minimize the window
441d06f ChatBar: Always use the current channel by default
d7f03ab MainWindow: Remove annoying connect/disconnect shortcuts
315b5f5 mumble.pro: Enable Opus on Linux if it's installed
2012-05-27
Kissaki <[email protected]>
5f2096a Update WolfET positional audio plugin - fix Z and add context
2012-05-18
Benjamin Jemlich <[email protected]>
814ae5e AudioInput: Add codec switching code which supports Opus
f27ad36 Remove Speex encoding code
13a97b4 ... and another #ifdef USE_OPUS
69fe654 Add some more #ifdef USE_OPUS checks
ed06d82 UserInformation: Fix Opus status display
f86012e MainWindow: Display current codec in the server information
dialog
7c700a4 AudioInput: let's use the correct limits and constants
8aa681c AudioInput: Fix float to short conversion
2012-05-16
Piotr Chodań <[email protected]>
317f5a0 New positional audio plugin: Guild Wars Supports context and
identity
Benjamin Jemlich <[email protected]>
1807da3 MainWindow: Restore MainWindow if someone clicks on a
notification message
52e27ef Murmur: Disallow mute/deafen status changes in temporary
channels
4bc8782 LOL plugin: code style fixes and optimization :)
f7afaec Add VS files to .gitignore
2012-05-15
Benjamin Jemlich <[email protected]>
fff96fa ConnectDialogEdit: fix tab order
0f70781 Update translation files
9550c3b MainWindow: View comment should change the seen state for
comments
fd796db UserView: fix comment icon click target if ignore text
messages is enabled
2012-05-14
Piotr Chodań <[email protected]>
840487d context support for League of Legends plugin
Benjamin Jemlich <[email protected]>
2ff3d34 Unify .gitignore files
a919a56 Installer: More plugin installation fixes
2012-05-13
Piotr Chodań <[email protected]>
eef9a67 updated plugin for Team Fortress 2 b4934
f81049d Added context support for the l4d2 plugin. Changed global
pointers to static (as thorvald requested in one of my
previous commits. Context contains provides ipport as json
attribute.
2012-05-12
Stefan Hacker <[email protected]>
3c2dd60 Add missing build/installer integration for LeageOfLegends PA
plugin.
2012-05-10
Piotr Chodań <[email protected]>
56fcebb New plugin for one of my favorite games, League of Legends.
Supports ingame detection (based on a pointer being NULL or
not), reports camera and avatar independent position, front
and top vectors.
2012-05-09
Piotr Chodań <[email protected]>
84b897c Fixed l4d2 pa plugin for build 4777, re-enabled states support
2012-05-01
Benjamin Jemlich <[email protected]>
f90c6e3 More plugin touching
2012-04-30
Benjamin Jemlich <[email protected]>
2026dfa Comment changes to the plugin headers
2012-04-29
Thorvald Natvig <[email protected]>
4653fd8 Upgrade boost
2012-04-28
Ryan Austin <[email protected]>
3503cd2 Updated BF3 PA plugin for BF3 v936211
2012-04-02
Ryan Austin <[email protected]>
2047c9f Updated BF3 PA plugin for BF3 v925790
2012-03-23
Benjamin Jemlich <[email protected]>
1a3b3b0 ClientUser: remove getByHash
2012-03-22
jgeboski <[email protected]>
0c51fbd MainWindow: directly set the window icon
2012-03-20
Benjamin Jemlich <[email protected]>
e5c4657 Save one more byte in the Opus terminator
b498613 Reset Opus encoder state on stream start
e1b5710 Fix Opus frame counter in AudioInput
bd195cd Improve Opus terminator flag
2012-03-13
Harry Gabriel <[email protected]>
c707cad Update slice path for Ice 3.4.2
Ilmar Kruis <[email protected]>
7e5e7f9 Lotro Update 6
2012-03-12
Benjamin Jemlich <[email protected]>
c17ca26 Murmur: Add workaround for databases that contain channel_info
rows for channels that don't exist
2012-02-26
Benjamin Jemlich <[email protected]>
88e9e6a Link benchmark test to QtXml
b2258e6 Fix GCC compile error
491cd1e Misc fixes
0bba55b Check correct key usage in the Win cert verify function
2012-02-25
Benjamin Jemlich <[email protected]>
74d9ccd Fix Win cert validation code for hostname mismatches
6f7f05e Empty server response in WebFetch::fetched is not an error
07d5679 Use a more correct way to get the application data path on
Windows
ea121b6 Validate server certificates using the Windows API
06f0d18 Fix Windows installer build
2012-02-24
Patrick Matthäi <[email protected]>
5f79a1b Unified spelling of of writable (s/writeable/writable)
2012-02-23
Mikkel Krautz <[email protected]>
442d19e GlobalShortcut_macx: add EventTap listing when pressing
Ctrl-Alt-Cmd.
1d0ed05 GlobalShortuct_macx: TailAppend instead of HeadInsert.
fe25495 GlobalShortcut: allow users to disable global shortcuts
without removing all of their shortcuts (for supported
engines).
2012-02-22
Mikkel Krautz <[email protected]>
370c2d3 OS X: move upgrade variables to upgrade.xml for new
productbuild overlay installer.
114c201 Overlay_macx: mv-to-tmp-based uninstall.
30b94b7 OS X: productbuild-based overlay installer.
2012-02-19
Mikkel Krautz <[email protected]>
46b8cd4 OCD.
Benjamin Jemlich <[email protected]>
d16876d Fix certificate validation with QT 4.8
2012-02-18
Mikkel Krautz <[email protected]>
4ad6ccf OS X: Add more licenses to disk image.
da7f5b7 Include <stdint.h> instead of the HAVE_STDINT_H hack.
6c7d8dc OS X: Update dist scripts, add --no-server option.
9446e3e OS X: Build fixes for Xcode 4.3 (mostly PCH-related)
fa9aed8 OS X: Update compiler.pri to new Lion toolchain
Benjamin Jemlich <[email protected]>
079bba8 More G15 SDK path fixes
2d9d78a Remove hardcoded CA certificates
a3c55c4 Update Opus submodule
9a7470f Fix G15 SDK path
2012-02-05
Mikkel Krautz <[email protected]>
cde6c68 Revert back to mumble-g15-helper-based G15 support on Windows.
Benjamin Jemlich <[email protected]>
98f4ac1 Fix user what's this help icon -> text mapping
586cd61 Load update check option using the correct variable
70c3af0 Fix G15 helper program installation
2012-01-15
Mikkel Krautz <[email protected]>
ca8b25c Re-enable uiAccess=true
2012-01-14
Mikkel Krautz <[email protected]>
f77936b Allow hooks in GlobalShortcut to be disabled on Windows via
hidden setting.
Benjamin Jemlich <[email protected]>
63018bd Temporarily disable uiAccess=true
7300338 Try to read system-wide ini files first if running as root
zapman <unknown>
63a384d Updated french translation
6b3a97e Turkish translation
2012-01-11
Mikkel Krautz <[email protected]>
133a83f Build fixes for universal OS X.
Benjamin Jemlich <[email protected]>
6289931 Added more logging for Ice callbacks
cc8e245 Mark Server::log as const
2012-01-09
Natenom <[email protected]>
314132a Updated German translations
2012-01-08
Benjamin Jemlich <[email protected]>
8667e6d Fix Speak ACL for users entering a channel
2b9e094 Allow using ChanACL::hasPermission without a cache
Thorvald Natvig <[email protected]>
9bd726a Parse \ in pro files
2012-01-07
Benjamin Jemlich <[email protected]>
fc322ea Fix compile error