-
Notifications
You must be signed in to change notification settings - Fork 55
/
ChangeLog.txt
2633 lines (2076 loc) · 117 KB
/
ChangeLog.txt
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
ChangeLog for AVS -- latest on top!
==============================================================================
AVS Release 9.10
Date: November 5, 2024
GIT: https://github.com/wireapp/wire-avs/tree/release-9.10
Android: Android NDK r27
iOS: iOS SDK 18.0
OSX: MacOS SDK 14.5
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Add simulcast support
ChangeLog for AVS -- latest on top!
==============================================================================
AVS Release 9.10
Date: October 30, 2024
GIT: https://github.com/wireapp/wire-avs/tree/release-9.10
Android: Android NDK r27
iOS: iOS SDK 18.0
OSX: MacOS SDK 14.5
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Bump webrtc version to M130
ChangeLog for AVS -- latest on top!
==============================================================================
AVS Release 9.1
Date: February 16, 2022
GIT: https://github.com/wireapp/wire-avs/tree/release-9.1
Android: Android NDK r22b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Bump webrtc version to M102
- webrtc M102 requires Android NDK r22b
==============================================================================
==============================================================================
AVS Release 8.1
Date: March 2, 2022
GIT: https://github.com/wireapp/wire-avs/tree/release-8.1
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Addition of reconnection indicator in conf calls
- Redirect web/desktop logs through AVS for address masking
Hotfixes: - Fix issue with network recovering while reconnecting conf calls
- Improvements to connection handling on poor networks
- Improvement to speaker indicator on web/desktop
==============================================================================
AVS Release 8.0
Date: November 30, 2021
GIT: https://github.com/wireapp/wire-avs/tree/release-8.0
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Support for federated conference calls
Hotfixes:
==============================================================================
AVS Release 7.2
Date: May 10, 2021
GIT: https://github.com/wireapp/wire-avs/tree/release-7.2
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Selective forwarding of video
- Android: Video rotation for landscape support
Hotfixes:
==============================================================================
AVS Release 7.1
Date: April 29, 2021
GIT: https://github.com/wearezeta/avs/tree/release-7.1
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Include SSRC/CSRC in frame header
- Experimental: CBR always on for conference calls
Hotfixes: - Improvements to active speaker detection
- Android: Memory leak for video fixed
==============================================================================
AVS Release 7.0
Date: Feburary 02 2021
GIT: https://github.com/wearezeta/avs/tree/release-7.0
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Selective forwarding of audio
- 1-participant conference timeout
Hotfixes: - Tuning of active speaker detection
- iOS: Improve quality of screen share
==============================================================================
AVS Release 6.7
Date: Feburary 02 2021
GIT: https://github.com/wearezeta/avs/tree/release-6.7
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Better handling of speaker activity
- Improved threading for wasm encryption
Hotfixes:
==============================================================================
AVS Release 6.6
Date: November 19 2020
GIT: https://github.com/wearezeta/avs/tree/release-6.6
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Detect active speakers
- Bug fixes and improvements
Hotfixes: - Capturer sends black frames when requested to do so
==============================================================================
AVS Release 6.6
Date: November 19 2020
GIT: https://github.com/wearezeta/avs/tree/release-6.6
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Detect active speakers
- Bug fixes and improvements
Hotfixes:
==============================================================================
AVS Release 6.5
Date: November 10 2020
GIT: https://github.com/wearezeta/avs/tree/release-6.5
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Fixed hashing of user ID's with random component
Hotfixes:
==============================================================================
AVS Release 6.4
Date: September 23 2020
GIT: https://github.com/wearezeta/avs/tree/release-6.4
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Security updates
- Calls time out gracefully when SFT is not online
- Request key when not available at start of call
- Default to group calls when no SFT is advertised
Hotfixes: - Avoid infinite leave/join loops
- Improved key distribution
- Automatic reconnect in case a problem is detected
- Allow to join calls without an audio device
- Improved logging
==============================================================================
AVS Release 6.3
Date: September 03 2020
GIT: https://github.com/wearezeta/avs/tree/release-6.3
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Additional devices stop ringing when answered elseshere
- Additional devices stop ringing when rejected on one device
- Fix audio interruption when audio calls are escalated to video
- Performance improvements for conference calls
- iOS: Unify displaying of video for remote and self clients
- OpenSSL update
- Bug fixes
Hotfixes:
==============================================================================
AVS Release 6.2
Date: July 09 2020
GIT: https://github.com/wearezeta/avs/tree/release-6.2
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Enable e2ee for next generation conference calling
Hotfixes:
==============================================================================
AVS Release 6.1
Date: June 26 2020
GIT: https://github.com/wearezeta/avs/tree/release-6.1
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - WebRTC Update (commit: 301eb5370b150ee4c25ffc380a9064e48373bf27)
Hotfixes:
==============================================================================
AVS Release 6.0
Date: March 12 2020
GIT: https://github.com/wearezeta/avs/tree/release-6.0
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Enable next generation conference calling
Hotfixes: - Fixed https://github.com/wireapp/wire-audio-video-signaling/security/advisories/GHSA-v7c5-r8hh-wjp7
==============================================================================
AVS Release 5.6
Date: February 21 2020
GIT: https://github.com/wearezeta/avs/tree/release-5.6
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - API Update
- Network quality indicator for missing relay candiates
- Add CBR to web
Hotfixes:
- Security fix
==============================================================================
AVS Release 5.5
Date: January 22 2020
GIT: https://github.com/wearezeta/avs/tree/release-5.5
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - WebRTC update
- CBR detection
- Improved SDP handling of CBR
- Fix missing BT on Android emulator
- Bug fixes
Hotfixes:
==============================================================================
AVS Release 5.4
Date: 28. November 2019
GIT: https://github.com/wearezeta/avs/tree/release-5.4
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Keep old flows until new one has started (to avoid media interruptio
- More aggressive UPDATE strategy
- Remove forced audio to allow to share screen to more clients
- Increase number of supported TURN configurations to 16
- Bug fixes
Hotfixes:
==============================================================================
AVS Release 5.3
Date: 08. October 2019
GIT: https://github.com/wearezeta/avs/tree/release-5.3
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Add support for multiple devices in group calls
- Add back privacy mode
- Mediaflow refactoring
Hotfixes:
==============================================================================
AVS Release 5.2
Date: 04. September 2019
GIT: https://github.com/wearezeta/avs/tree/release-5.2
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - New function to add proxy for media transport
- New function to query AVS version number
- Improvement of UPDATE functionality
- Improvement of call setup time on iOS
- Start group calls with 40ms packets
- Various bug fixes
Hotfixes:
==============================================================================
AVS Release 5.1
Date: 12. June 2019
GIT: https://github.com/wearezeta/avs/tree/release-5.1
Android: Android NDK r14b
iOS: iOS SDK 12.2
OSX: MacOS SDK 10.14
Linux: Ubuntu x86_64 18.04 (LTS)
Summary: - Providing WebAssembly AVS for web client
- API changes: See ./docs/api/api_changes_5.1.txt
Hotfixes:
==============================================================================
AVS Release 5.0
Date: 02. April 2019
GIT: https://github.com/wearezeta/avs/tree/release-5.0
Android: Android NDK r14b
iOS: iOS SDK 11.0
OSX: MacOS SDK 10.13
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Update to WebRTC peerconnection API
Hotfixes:
==============================================================================
AVS Release 4.9
Date: 15. January 2019
GIT: https://github.com/wearezeta/avs/tree/release-4.9
Android: Android NDK r14b
iOS: iOS SDK 11.0
OSX: MacOS SDK 10.13
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Fix for AUDIO-1580
- Fix for AUDIO-1476
- iOS: Fixed crash due to mf_gather_handler
- Added error return in case new calling type is unknown
Hotfixes:
==============================================================================
AVS Release 4.8
Date: 19. November 2018
GIT: https://github.com/wearezeta/avs/tree/release-4.8
Android: Android NDK r14b
iOS: iOS SDK 11.0
OSX: MacOS SDK 10.13
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Refactor of handling of call types
Hotfixes: - Removed check for end-of-candidate during ICE
- Add support for openSL ES for Google Pixel 3
- Fix for muting output when silenced
- Fix for iOS crypto not supporting GCM
- Fix for iOS incorrectly setting videosend in group calls
==============================================================================
AVS Release 4.7
Date: 14. November 2018
GIT: https://github.com/wearezeta/avs/tree/release-4.7
Android: Android NDK r14b
iOS: iOS SDK 11.0
OSX: MacOS SDK 10.13
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Bug fixing
- Improvements to DNS lookup
- Improvements to network quality indicator
Hotfixes:
==============================================================================
AVS Release 4.6
Date: 26. July 2018
GIT: https://github.com/wearezeta/avs/tree/release-4.6
Android: Android NDK r14b
iOS: iOS SDK 11.0
OSX: MacOS SDK 10.13
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Enable DNS lookup for TURN configurations (fixes IPv6 issues)
- Use TURN via TCP or TLS (requires calls/config/v2 BE endpoint)
- Bug fixes:
- iOS: AUDIO-1560
Hotfixes:
Aug 03, 2018 - Patched security issue in VP8
- Android: Fixed AUDIO-1486
- iOS: Crash fix when no outputs were available
Sep 05, 2018 - SDP patch for Firefox compatibility
- Network quality handler
- bug fixes
==============================================================================
AVS Release 4.5
Date: 20. June 2018
GIT: https://github.com/wearezeta/avs/tree/release-4.5
Android: Android NDK r14b
iOS: iOS SDK 11.0
OSX: MacOS SDK 10.13
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Resolve TURN hostnames for both IPv4 and IPv6
- Add support for AES-GCM
- Add Netprobe functionality
- Bug fixes:
- Fix some incompatibilities with webapp
- Audio routing fixes
- More bug fixes
Hotfixes:
Jul 10, 2018 - Android: Fixes AUDIO-1512
- Android: Fixes AUDIO-1559
- Fixes logging issue
==============================================================================
AVS Release 4.4
Date: 27. April 2018
GIT: https://github.com/wearezeta/avs/tree/release-4.4
Android: Android NDK r14b
iOS: iOS SDK 11.0
OSX: MacOS SDK 10.13
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Signal video call at start of group call
- Support for audio only calls
- Support for DNS lookup of TURN severs
- Upgrade of libre
Hotfixes:
May 25, 2018 - Make protocol robust against join-leave-join in quick succession
- AUDIO-1474: UPDATE conflict is missed while gathering for UPDATE
- AUDIO-1515: GROUPSTART ignored for client when waiting for UPDATE response
May 28, 2018 - Sending of DTLS packets to all peers
==============================================================================
AVS Release 4.3
Date: 12. April 2018
GIT: https://github.com/wearezeta/avs/tree/release-4.3
Android: Android NDK r14b
iOS: iOS SDK 11.0
OSX: MacOS SDK 10.13
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - TURN via TLS enabled
- Handle unknown TURN schemes
- Remove support for SHA-1 dtls fingerprints
- Enable multiple SRTP cipher suites
- Update OpenSSL to 1.1.0h
- Update rew
Hotfixes: - Android: Support for multiple renderers
- iOS: Fix audio message recording issue on simulator
- Remove all private information from log files
==============================================================================
AVS Release 4.2
Date: 28. Febrary 2018
GIT: https://github.com/wearezeta/avs/tree/release-4.2
Android: Android NDK r14b
iOS: iOS SDK 11.0
OSX: MacOS SDK 10.13
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Roaming between different networks
- iOS: Support for different audio buffer sizes
- Android NDK update to r14b
Hotfixes:
Apr 09, 2018 - Fix to failed calls reported to CS
- CBR is not enabled
- Potential crash while calling and cancelling quickly after
==============================================================================
AVS Release 4.1
Date: 29. January 2018
GIT: https://github.com/wearezeta/avs/tree/release-4.1
Android: Android NDK r12b
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Improved BT handling (both iOS and Android)
- Increased ptime for group calling (also with Webapp)
- bug fixes
Hotfixes:
==============================================================================
AVS Release 4.0
Date: 08. January 2018
GIT: https://github.com/wearezeta/avs/tree/release-4.0
Android: Android NDK r12b
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Hydra
- ALERT method added
- Improvements to video handling
- openssl update
- usrsctp update
- generic-message-proto update
- libre update
- bug fixes
Hotfixes:
Jan 16, 2018 - Increase ptime for group calls
Jan 10, 2018 - iOS: Recording API added for audio messages
==============================================================================
AVS Release 3.8
Date: 06. November 2017
GIT: https://github.com/wearezeta/avs/tree/release-3.8
Android: Android NDK r12b
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - SSL update
- Added support for multiple TURN servers
- DCE improvements
- bug fixes
==============================================================================
AVS Release 3.7
Date: 27. October 2017
GIT: https://github.com/wearezeta/avs/tree/release-3.7
Android: Android NDK r12b
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Refactor of generic media manager
- Refactor of iOS media manager
==============================================================================
AVS Release 3.6
Date: 07. August 2017
GIT: https://github.com/wearezeta/avs/tree/release-3.6
Android: Android NDK r12b
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Support for multiple (team) accounts
- Make GROUPCHECK messages transient
- Make calling messages targeted messages
- Updated Opus to version 1.2.1
Hotfixes:
Sep 29, 2017 - Rollback of WebRTC to AVS 3.5 version
- Refactor of CBR handling
==============================================================================
AVS Release 3.5
Date: 04. May 2017
GIT: https://github.com/wearezeta/avs/tree/release-3.5
Android: Android NDK r12b
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Speed up of call setup time (Crypto KASE or DH-SDES)
- Provide API for privacy mode
- Improved tracking and metrics
- Move playing of some audio notifications into AVS (AUDIO-918)
- Bug fixes
- iOS: Audio routing (AUDIO-1278)
- iOS: Crash fix (AUDIO-1277)
- various more
Hotfixes:
Aug 04, 2017 - Add more robustness for "fake" group and 1:1 call mixup
Jul 28, 2017 - Make "join" button more stable
==============================================================================
AVS Release 3.4
Date: 24. April 2017
GIT: https://github.com/wearezeta/avs/tree/release-3.4
Android: Android NDK r12b
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Version 3 group calling
- BE switch removed for 1:1 C3 calls
- Update of VPx to fix potential security issue
- Update of WebRTC
- Bug fixes:
- BT on iOS
- Missing ringtone on Android
- More robust handling of calls/config
- many more
==============================================================================
AVS Release 3.3
Date: 24. February 2017
GIT: https://github.com/wearezeta/avs/tree/release-3.3
Android: Android NDK r12b
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Roaming / SDP Update support for calling3
- Use SDES between avs clients for faster call setup
- API for using constant bitrate audio
- mediaflow refactor
==============================================================================
AVS Release 3.2
Date: 02. February 2017
GIT: https://github.com/wearezeta/avs/tree/release-3.2
Android: Android NDK r12b
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - DTLS optimizations
- mediaflow refactor
- C3: Forking and ICE checks
- Bug fixes
==============================================================================
AVS Release 3.1
Date: 05. January 2017
GIT: https://github.com/wearezeta/avs/tree/release-3.1
Android: Android NDK r12b
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Bug fixes for CallKit (from 2.9 branch)
- Adjustment to AGC for conference calls (normalizer vs. digital AGC)
- C3 fixes: prop-sync, requested API changes/extensions,
call states, callbacks, etc.
- Bug fixes
==============================================================================
AVS Release 3.0
Date: 28. October 2016
GIT: https://github.com/wearezeta/avs/tree/release-3.0
Android: Android NDK r12b
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Implementation of Calling 3 protocol
==============================================================================
AVS Release 2.9
Date: 21. September 2016
GIT: https://github.com/wearezeta/avs/tree/release-2.9
Android: Android NDK r12b
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Increased video quality (less frozen video)
- More stable call setup (less hanging in "connecting" state)
- TURN improvements (Call setup reliability)
- ICE improvements (Call setup reliability)
- Fixes to IPv6 handling (still known issue for NAT64 though)
- Data channel added (but not enabled yet)
- Improved audio filter (new effects + more intelligible robot voice)
==============================================================================
AVS Release 2.8
Date: 12. August 2016
GIT: https://github.com/wearezeta/avs/tree/release-2.8
Android: Android NDK r12b
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Android now uses NDK r12b.
- Use desktop digital AGC on mobile, to reduce noise amplification.
- Added option for audio effects in calls.
- Added new audio effects. Auto-tune and pitch up_down.
- Android MM made more robust to avoid rare crashes.
==============================================================================
AVS Release 2.7
Date: 04. July 2016
GIT: https://github.com/wearezeta/avs/tree/release-2.7
Android: Android NDK r10d
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Improved DTLS performance in bad networks
- Removed switching off of video for low network bandwidth
- Improved network bandwidth estimation
- Fix for RTX PT Chrome bug
- Tuning of audio filters
- Open SSL update
- Improved metrics
Closed Jira tickets:
AUDIO-974 - Siims call dropped when he changed network
AUDIO-946 - Consider switching to BoringSSL
AUDIO-942 - DTLS re-transmission
QA Review:
AUDIO-986 - Squashed video sent from wrapper side
AUDIO-982 - DTLS Setup
AUDIO-971 - RTX pt not set correctly when calling wrapper to zcall
AUDIO-963 - vie memory leaks
AUDIO-962 - Provide a warning message if your own device's cameras are not working
AUDIO-961 - Improve selection of videoCaptureDevice to make camera switching smoother for devices with 3 cameras
AUDIO-959 - Frequent hold up of camera resource between calls
AUDIO-951 - webrtc crash on linux
AUDIO-947 - Update WebRTC
AUDIO-944 - OpenSSL 1.0.2h upgrade
AUDIO-938 - Enabled digital AGC for iOS and Android
AUDIO-936 - Unsatisfied Link on Android N
AUDIO-935 - Add ZCall feature for making a call with conversation ID
AUDIO-932 - TURN over TLS
AUDIO-930 - Video resolution switching
AUDIO-929 - Double Metrics
AUDIO-928 - crash if TURN client allocation fails
AUDIO-926 - I want to use Wire with hand-free car kit bluetooth during calls and not break anything otherwise
AUDIO-925 - Add metrics keys
AUDIO-915 - Provide information about audio network interruption indication (beeping) to UI
AUDIO-883 - Enable TURN Channels
AUDIO-873 - iOS: No ringback for video calls when silent switch is on
AUDIO-857 - Video Calling: one way audio
AUDIO-840 - Static image and poor network message during video call
AUDIO-829 - Provide a blurred image of the video stream last frame
==============================================================================
AVS Release 2.6
Date: 16. June 2016
GIT: https://github.com/wearezeta/avs/tree/release-2.6
Android: Android NDK r10d
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - WebRTC Update
- Audio Filters
Closed Jira tickets:
AUDIO-967 - Add metrics keys - speaker phone
AUDIO-965 - voe memory leaks
AUDIO-964 - webrtc logging to stderr
AUDIO-960 - Video stream occupies quarter of the screen
AUDIO-957 - Multiple metrics per call
AUDIO-952 - ztest: add vie/video tests
AUDIO-934 - RTP dump module
AUDIO-933 - Enable TLS monitoring of TURN Server
AUDIO-594 - glitches in NetEQ output
AUDIO-953 - Latency builds up on ios with updated webrtc
QA Review:
AUDIO-971 - RTX pt not set correctly when calling wrapper to zcall
AUDIO-963 - vie memory leaks
AUDIO-962 - Provide a warning message if your own device's cameras are not working
AUDIO-961 - Improve selection of videoCaptureDevice to make camera switching smoother for devices with 3 cameras
AUDIO-959 - Frequent hold up of camera resource between calls
AUDIO-951 - webrtc crash on linux
AUDIO-947 - Update WebRTC
AUDIO-938 - Enabled digital AGC for iOS and Android
AUDIO-936 - Unsatisfied Link on Android N
AUDIO-935 - Add ZCall feature for making a call with conversation ID
AUDIO-932 - TURN over TLS
AUDIO-930 - Video resolution switching
AUDIO-929 - Double Metrics
AUDIO-928 - crash if TURN client allocation fails
AUDIO-926 - I want to use Wire with hand-free car kit bluetooth during calls and not break anything otherwise
AUDIO-925 - Add metrics keys
AUDIO-915 - Provide information about audio network interruption indication (beeping) to UI
AUDIO-883 - Enable TURN Channels
AUDIO-873 - iOS: No ringback for video calls when silent switch is on
AUDIO-857 - Video Calling: one way audio
AUDIO-848 - iOS: Audio Routing
AUDIO-840 - Static image and poor network message during video call
AUDIO-829 - Provide a blurred image of the video stream last frame
AUDIO-735 - Adaptive digital gain control increases gain on background noise.
==============================================================================
AVS Release 2.5
Date: 01. June 2016
GIT: https://github.com/wearezeta/avs/tree/release-2.5
Android: Android NDK r10d
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - TURN channels added
- Clean-up on mediaflow
- Fixes to AVS metrics (new metrics + formatting changes)
- General clean-up and bug fixing
Hotfixes: - Android: create/releaseVideo(Pre)view calls removed
- Android: setVideoPreview(null) stops capture
- Android: Don't attempt to start camera during process of destroying
- iOS: ZIOS-6597, add registerUrl:forMedia method so UI can set alternative ringtones
- iOS: Fix for AUDIO-956, crash in vie_bandwidth_allocation_changed
- Interface for audio effects added (mostly iOS)
- Audio effects edited
Closed Jira tickets:
AUDIO-956 - Fix crash in vie_bandwidth_allocation_changed(vie*, unsigned int, unsigned int), line 426
AUDIO-954 - Seg Fault in zcall at end of call
AUDIO-948 - Call did not connect - mobile data to mobile data
AUDIO-927 - Allow custom Uri's for Media categories
AUDIO-895 - Feedback from the field
AUDIO-891 - Enable speaker during ringing phase
AUDIO-811 - Extend metrics with video parameters
QA Review:
AUDIO-951 - webrtc crash on linux
AUDIO-938 - Enabled digital AGC for iOS and Android
AUDIO-936 - Unsatisfied Link on Android N
AUDIO-935 - Add ZCall feature for making a call with conversation ID
AUDIO-932 - TURN over TLS
AUDIO-930 - Video resolution switching
AUDIO-929 - Double Metrics
AUDIO-928 - crash if TURN client allocation fails
AUDIO-926 - I want to use Wire with hand-free car kit bluetooth during calls and not break anything otherwise
AUDIO-915 - Provide information about audio network interruption indication (beeping) to UI
AUDIO-883 - Enable TURN Channels
AUDIO-873 - iOS: No ringback for video calls when silent switch is on
AUDIO-857 - Video Calling: one way audio
AUDIO-840 - Static image and poor network message during video call
AUDIO-829 - Provide a blurred image of the video stream last frame
==============================================================================
AVS Release 2.4
Date: 19. May 2016
GIT: https://github.com/wearezeta/avs/tree/release-2.4
Android: Android NDK r10d
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Adaptive resolution change for video
- Adding digital AGC for iOS + Android for 1:1 calls
- TURN via TLS
- API added for registering custom audio notifications (Android only)
Closed Jira tickets:
AUDIO-939 - Call cannot be connected - AVS 2.4.1
AUDIO-937 - Update AVS open source
AUDIO-920 - Fix RuntimeException in com.waz.avs.VideoRenderer.initGL, line 221
AUDIO-904 - Group call with Autocall 2.1 and Chrome 49 - Connection timed out - no bytes
AUDIO-903 - Limit video (receive) network bandwidth in SDP
AUDIO-888 - Fix crash in mediaflow_set_video_send_active, line 3809
AUDIO-882 - iOS cannot join group call, connecting
AUDIO-868 - Call does not connect
AUDIO-864 - Fix crash in mem_deref, line 322
AUDIO-812 - Allow Localytics upload of metrics
AUDIO-749 - Replace ICE by TURN-only routing
AUDIO-624 - AVS should add more notifications when to play sounds on the client-side
AUDIO-591 - [Group-Call] One participant changed from 3G to 4G and causing the group call ended
AUDIO-587 - Add Call-Disconnect reason to Technical Report
AUDIO-924 - ICE Privacy mode
AUDIO-923 - Enable EC certificate for Android
QA Review:
AUDIO-938 - Enabled digital AGC for iOS and Android
AUDIO-932 - TURN over TLS
AUDIO-930 - Video resolution switching
AUDIO-929 - Double Metrics
AUDIO-928 - crash if TURN client allocation fails
AUDIO-927 - Allow custom Uri's for Media categories
AUDIO-926 - I want to use Wire with hand-free car kit bluetooth during calls and not break anything otherwise
AUDIO-915 - Provide information about audio network interruption indication (beeping) to UI
AUDIO-891 - Enable speaker during ringing phase
AUDIO-873 - iOS: No ringback for video calls when silent switch is on
AUDIO-857 - Video Calling: one way audio
AUDIO-840 - Static image and poor network message during video call
AUDIO-829 - Provide a blurred image of the video stream last frame
AUDIO-811 - Extend metrics with video parameters
==============================================================================
AVS Release 2.3
Date: 21. April 2016
GIT: https://github.com/wearezeta/avs/tree/release-2.3
Android: Android NDK r10d
iOS: iOS SDK 8.0
OSX: OSX SDK 10.9
Linux: Ubuntu x86_64 14.04 (LTS)
Summary: - Improved metrics (extended audio + added video)
- Signal audio network interruption to UI
- Increase of maximum video bit rate to 800 kbit/s
- bug fixes
Closed Jira tickets: