forked from shaka-project/shaka-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.md
5156 lines (4501 loc) · 252 KB
/
CHANGELOG.md
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
## [4.2.0](https://github.com/shaka-project/shaka-player/compare/v4.1.0...v4.2.0) (2022-08-16)
### Features
* add Amazon Fire TV platform support ([#4375](https://github.com/shaka-project/shaka-player/issues/4375)) ([5102dac](https://github.com/shaka-project/shaka-player/commit/5102dac96cb1a749fefeb1f6b7a24c13f6b1077b))
* Add support for Modern EME and legacy Apple Media Keys for FairPlay ([#4309](https://github.com/shaka-project/shaka-player/issues/4309)) ([5441f93](https://github.com/shaka-project/shaka-player/commit/5441f932fd3da20f26da162cc0d49d0470689b41))
* Automatic ABR quality restrictions based on size ([#4404](https://github.com/shaka-project/shaka-player/issues/4404)) ([cfe8af5](https://github.com/shaka-project/shaka-player/commit/cfe8af5ff928fe7466b103429a6325917579ce70)), closes [#2333](https://github.com/shaka-project/shaka-player/issues/2333)
* **hls:** Support AES-128 in HLS ([#4386](https://github.com/shaka-project/shaka-player/issues/4386)) ([6194021](https://github.com/shaka-project/shaka-player/commit/6194021a3d4ea5dae22ade6713bb077875a4ee9d)), closes [#850](https://github.com/shaka-project/shaka-player/issues/850)
* Improve gap-detection robustness ([#4399](https://github.com/shaka-project/shaka-player/issues/4399)) ([4293a14](https://github.com/shaka-project/shaka-player/commit/4293a1421ada4b189d64b8c3f87a7599bc7b1a8f))
* Upgrade eme-encryption-scheme-polyfill to support ChromeCast version of PlayReady ([#4378](https://github.com/shaka-project/shaka-player/issues/4378)) ([e6b6d7c](https://github.com/shaka-project/shaka-player/commit/e6b6d7c24bee4138b6bb2735e3c9a4dc885a6cf6))
* **webvtt:** add support for karaoke style text in WebVTT ([#4274](https://github.com/shaka-project/shaka-player/issues/4274)) ([60af516](https://github.com/shaka-project/shaka-player/commit/60af5165207d39ebe26d536b009521192ab8cad9))
### Bug Fixes
* Add fallback to TextDecoder and TextEncoder [#4324](https://github.com/shaka-project/shaka-player/issues/4324) ([5b18069](https://github.com/shaka-project/shaka-player/commit/5b180694309f1cc01b2997cd0366154135f8acd8))
* add strictMissingProperties suppressions to unblock strict missing properties on union types. ([#4371](https://github.com/shaka-project/shaka-player/issues/4371)) ([b361948](https://github.com/shaka-project/shaka-player/commit/b36194878e26a22b522a6cf1dba07e9fc5cd341d))
* Debug buffer placement ([#4345](https://github.com/shaka-project/shaka-player/issues/4345)) ([47fa309](https://github.com/shaka-project/shaka-player/commit/47fa3093e1462d0bcca87238dc4886b9e2c1f8f4))
* **demo:** allow switch between UITextDisplayer and SimpleTextDisplayer ([#4275](https://github.com/shaka-project/shaka-player/issues/4275)) ([28689f3](https://github.com/shaka-project/shaka-player/commit/28689f38fb7cc8f3b85b6b1eb2337a1779e8ee95))
* **demo:** erroneous FairPlay keysystem in demo ([#4276](https://github.com/shaka-project/shaka-player/issues/4276)) ([8719bdc](https://github.com/shaka-project/shaka-player/commit/8719bdc0defd7956ec9fad934525477a603744a0))
* exception if on early adError ([#4362](https://github.com/shaka-project/shaka-player/issues/4362)) ([3c92f05](https://github.com/shaka-project/shaka-player/commit/3c92f0598e6c1628ff50d980a842dd40b2b56813)), closes [#4004](https://github.com/shaka-project/shaka-player/issues/4004)
* Fix EOS set-top box being identified as Apple. ([#4310](https://github.com/shaka-project/shaka-player/issues/4310)) ([7c2c4be](https://github.com/shaka-project/shaka-player/commit/7c2c4be2ae946c4cf270717f852b0d95b498266e))
* Fix getVideoPlaybackQuality in WebOS 3 ([#4316](https://github.com/shaka-project/shaka-player/issues/4316)) ([5561111](https://github.com/shaka-project/shaka-player/commit/556111143dfccbc7348fc15792df75bc35fea465))
* Fix key ID byteswapping for PlayReady on PS4 ([#4377](https://github.com/shaka-project/shaka-player/issues/4377)) ([25fd4f4](https://github.com/shaka-project/shaka-player/commit/25fd4f4af6ddd8953c4bc2da4a2d9eb1144c3fb9))
* Fix MediaCapabilities polyfill on Playstation 4 ([#4320](https://github.com/shaka-project/shaka-player/issues/4320)) ([0335b2a](https://github.com/shaka-project/shaka-player/commit/0335b2af2efea6ceda83e536e12094e4cc942a25))
* Fix MediaCapabilities polyfill on Tizen and WebOS ([#4396](https://github.com/shaka-project/shaka-player/issues/4396)) ([eb2aed8](https://github.com/shaka-project/shaka-player/commit/eb2aed825e84142f9fb9ddb3e69ebc333127c295)), closes [#4383](https://github.com/shaka-project/shaka-player/issues/4383) [#4357](https://github.com/shaka-project/shaka-player/issues/4357)
* Fix segment index assertions with DAI ([#4348](https://github.com/shaka-project/shaka-player/issues/4348)) ([c2b3853](https://github.com/shaka-project/shaka-player/commit/c2b3853a56e816c97fab57f961f295b7272e410e))
* Fix TextDecoder fallback and browser support check ([#4403](https://github.com/shaka-project/shaka-player/issues/4403)) ([04fc0d4](https://github.com/shaka-project/shaka-player/commit/04fc0d47c3895f294401b588ed49cc4360f31be1))
* Fix UI captions icon state ([#4384](https://github.com/shaka-project/shaka-player/issues/4384)) ([d462633](https://github.com/shaka-project/shaka-player/commit/d46263333ba3de68707d521b997c40c5ba492fda)), closes [#4358](https://github.com/shaka-project/shaka-player/issues/4358)
* Fix VP9 codec checks on Mac Firefox ([#4391](https://github.com/shaka-project/shaka-player/issues/4391)) ([b6ab769](https://github.com/shaka-project/shaka-player/commit/b6ab76976211852e96b2883562166a5e1e4dd0f2))
* **hls:** Fix AV sync issues, fallback to sequence numbers if PROGRAM-DATE-TIME ignored ([#4289](https://github.com/shaka-project/shaka-player/issues/4289)) ([314a987](https://github.com/shaka-project/shaka-player/commit/314a987ecf85b47cc8a6cef08f390ef817e11c49)), closes [#4287](https://github.com/shaka-project/shaka-player/issues/4287)
* New EME polyfill fixes EME/MCap issues on some smart TVs ([#4279](https://github.com/shaka-project/shaka-player/issues/4279)) ([db1b20e](https://github.com/shaka-project/shaka-player/commit/db1b20ec77f74472dd24f493f2a26c02b17927bc))
* Populate track's spatialAudio property ([#4291](https://github.com/shaka-project/shaka-player/issues/4291)) ([713f461](https://github.com/shaka-project/shaka-player/commit/713f461c62b23680557f8d6c4b9c3126bb604f9e))
* Remove IE 11 from default browsers for Windows ([#4272](https://github.com/shaka-project/shaka-player/issues/4272)) ([490b06c](https://github.com/shaka-project/shaka-player/commit/490b06cd45d09c7567056535f4b8dc6f3e2e5733)), closes [#4271](https://github.com/shaka-project/shaka-player/issues/4271)
* **text:** Fix cue region rendering in UI ([#4412](https://github.com/shaka-project/shaka-player/issues/4412)) ([b1f46db](https://github.com/shaka-project/shaka-player/commit/b1f46dbc3a685b0216600835e24fd13c504e1b62)), closes [#4381](https://github.com/shaka-project/shaka-player/issues/4381)
* **text:** Fix TTML render timing and line break issues for native display ([122f223](https://github.com/shaka-project/shaka-player/commit/122f223d19732bf5977ab8a5c93bbc4d934da1d7))
* Update main branch Cast receiver ID ([#4364](https://github.com/shaka-project/shaka-player/issues/4364)) ([46b27f1](https://github.com/shaka-project/shaka-player/commit/46b27f19e099d44ab3929222da7a3bcb41bdb230))
* Use middle segment when guessing MIME type on HLS ([#4269](https://github.com/shaka-project/shaka-player/issues/4269)) ([#4270](https://github.com/shaka-project/shaka-player/issues/4270)) ([3d27d2a](https://github.com/shaka-project/shaka-player/commit/3d27d2a2cfeb8fa21f3415baaf013567dcccf480))
* VTT Cue Parsing On PlayStation 4 ([#4340](https://github.com/shaka-project/shaka-player/issues/4340)) ([b5da41e](https://github.com/shaka-project/shaka-player/commit/b5da41ed80b96e8edae970c39dd5fac7348a9a55)), closes [#4321](https://github.com/shaka-project/shaka-player/issues/4321)
## [4.1.0](https://github.com/shaka-project/shaka-player/compare/v4.0.0...v4.1.0) (2022-06-02)
### Features
* Add Id to chapters ([#4184](https://github.com/shaka-project/shaka-player/issues/4184)) ([5ca3271](https://github.com/shaka-project/shaka-player/commit/5ca32712e375ba875be86827ea1efaaa5e3c0035))
* Add keySystemsMapping to drm config ([#4254](https://github.com/shaka-project/shaka-player/issues/4254)) ([5e107d5](https://github.com/shaka-project/shaka-player/commit/5e107d584f824e66ab3e5e07f9d833f6dc456d14)), closes [#4243](https://github.com/shaka-project/shaka-player/issues/4243)
* add listenable events for playback stall detection and gap jumping ([#4249](https://github.com/shaka-project/shaka-player/issues/4249)) ([5987458](https://github.com/shaka-project/shaka-player/commit/5987458e445cf21f91bf4833396edd63d5f69765))
* Add support to text-shadow in VTT parser ([#4257](https://github.com/shaka-project/shaka-player/issues/4257)) ([62bda2c](https://github.com/shaka-project/shaka-player/commit/62bda2cd36c6d49d08c10757bfe5869b5be54b88))
* **cast:** Add Android receiver support ([#4183](https://github.com/shaka-project/shaka-player/issues/4183)) ([dbba571](https://github.com/shaka-project/shaka-player/commit/dbba571c6bb7e99a99469ffb695f59a590d44118))
* **hls:** Add support for EXT-X-GAP ([#4208](https://github.com/shaka-project/shaka-player/issues/4208)) ([14e61a7](https://github.com/shaka-project/shaka-player/commit/14e61a7368ddbd66c4b10f3b0475840cc50512bd)), closes [#1308](https://github.com/shaka-project/shaka-player/issues/1308)
* Temporarily disable the active variant from NETWORK HTTP_ERROR ([#4189](https://github.com/shaka-project/shaka-player/issues/4189)) ([b57279d](https://github.com/shaka-project/shaka-player/commit/b57279d39c24d3b2568c4b62338524ecc23423ad)), closes [#4121](https://github.com/shaka-project/shaka-player/issues/4121) [#1542](https://github.com/shaka-project/shaka-player/issues/1542) [#2541](https://github.com/shaka-project/shaka-player/issues/2541)
* **UI:** Added keyboardSeekDistance config to UI ([#4246](https://github.com/shaka-project/shaka-player/issues/4246)) ([6084ca6](https://github.com/shaka-project/shaka-player/commit/6084ca6395fbe3d5a97fa92137b8bb51f15c89f8))
### Bug Fixes
* **abr:** use Network Info API in ABR getBandwidthEstimate ([#4263](https://github.com/shaka-project/shaka-player/issues/4263)) ([4fc7a48](https://github.com/shaka-project/shaka-player/commit/4fc7a4893fd081d4dafa26a2034361afd7b7e6ed))
* Do not report MANIFEST RESTRICTIONS_CANNOT_BE_MET error twice ([#4194](https://github.com/shaka-project/shaka-player/issues/4194)) ([08589e8](https://github.com/shaka-project/shaka-player/commit/08589e8fb27f3f73f64204e7d3a2387f3c197d84)), closes [#4190](https://github.com/shaka-project/shaka-player/issues/4190)
* Don't send drmsessionupdate after unload ([#4248](https://github.com/shaka-project/shaka-player/issues/4248)) ([60af9ad](https://github.com/shaka-project/shaka-player/commit/60af9ad596e5c2cb31d1e7bb616e415cf46ca761))
* **fairplay:** Re-add initDataTransform config ([#4231](https://github.com/shaka-project/shaka-player/issues/4231)) ([ff310e9](https://github.com/shaka-project/shaka-player/commit/ff310e91e564bcc4be340c47bf1be81a5323765a))
* Fix audio mime type in multiplexed HLS stream ([#4241](https://github.com/shaka-project/shaka-player/issues/4241)) ([4e4e92e](https://github.com/shaka-project/shaka-player/commit/4e4e92e98da357285547859a98e6b3fe75d1904f))
* Fix event listener leaks in Player ([#4229](https://github.com/shaka-project/shaka-player/issues/4229)) ([a5d3568](https://github.com/shaka-project/shaka-player/commit/a5d356874ba90069ca5a86be1979a5904a1150e8))
* Fix exception with streaming.startAtSegmentBoundary ([#4216](https://github.com/shaka-project/shaka-player/issues/4216)) ([426a19c](https://github.com/shaka-project/shaka-player/commit/426a19c8e7ff188390e7430fb02f3cfcb79cc017)), closes [#4188](https://github.com/shaka-project/shaka-player/issues/4188)
* Fix PERIOD_FLATTENING_FAILED error when periods have different base sample types ([#4206](https://github.com/shaka-project/shaka-player/issues/4206)) ([b757a81](https://github.com/shaka-project/shaka-player/commit/b757a81902a2159b217e7cb6a1445ab6d4d69bf4)), closes [#4202](https://github.com/shaka-project/shaka-player/issues/4202)
* Fix VTT cue timing in HLS ([#4217](https://github.com/shaka-project/shaka-player/issues/4217)) ([5818260](https://github.com/shaka-project/shaka-player/commit/58182605a7da3c18a7331828c319c88446a13d52)), closes [#4191](https://github.com/shaka-project/shaka-player/issues/4191)
* **hls:** Fix av1 codec selection in HLS. ([#4203](https://github.com/shaka-project/shaka-player/issues/4203)) ([5e13495](https://github.com/shaka-project/shaka-player/commit/5e1349570d64c17e6ca1fcdc5ffde1076ea9a999))
* **HLS:** Fix duplicate hinted segments ([#4258](https://github.com/shaka-project/shaka-player/issues/4258)) ([9171f73](https://github.com/shaka-project/shaka-player/commit/9171f733e8de0b811ebac71d5ddbe0cb1ff7c75b)), closes [#4223](https://github.com/shaka-project/shaka-player/issues/4223)
* **hls:** Fix X-PRELOAD-HINT failure with LL mode off ([#4212](https://github.com/shaka-project/shaka-player/issues/4212)) ([86497a5](https://github.com/shaka-project/shaka-player/commit/86497a5089e272ed682f017f5ed9135108be5a65)), closes [#4185](https://github.com/shaka-project/shaka-player/issues/4185)
* **ui:** Widen touchable button area ([#3249](https://github.com/shaka-project/shaka-player/issues/3249)) ([6c0283e](https://github.com/shaka-project/shaka-player/commit/6c0283e7d040fd0df9383454b174a7ceb2678c89))
* Upgrade mux.js to version that emits partial ID3 when malformed ([#4259](https://github.com/shaka-project/shaka-player/issues/4259)) ([dc88fe0](https://github.com/shaka-project/shaka-player/commit/dc88fe0814f82aa447a3fa8f7098c85621faf9c6)), closes [#3761](https://github.com/shaka-project/shaka-player/issues/3761)
* Wait for chapters track to be loaded ([#4228](https://github.com/shaka-project/shaka-player/issues/4228)) ([80e81f1](https://github.com/shaka-project/shaka-player/commit/80e81f139129dbe1c797ee07fedc1217b8790b53)), closes [#4186](https://github.com/shaka-project/shaka-player/issues/4186)
## [4.0.0](https://github.com/shaka-project/shaka-player/compare/v3.3.0...v4.0.0) (2022-04-30)
### ⚠ BREAKING CHANGES
* Remove small/large gap config, always jump gaps (#4125)
* **config:** `manifest.dash.defaultPresentationDelay` has been replaced by `manifest.defaultPresentationDelay` (deprecated in v3.0.0)
* **config:** Configuration of factories should be plain factory functions, not constructors; these will not be invoked with `new` (deprecated in v3.1.0)
* **player:** `shaka.Player.prototype.addTextTrack()` has been replaced by `addTextTrackAsync()`, which returns a `Promise` (deprecated in v3.1.0)
* **ui:** `shaka.ui.TrackLabelFormat` has been renamed to `shaka.ui.Overlay.TrackLabelFormat` (deprecated in v3.1.0)
* **ui:** `shaka.ui.FailReasonCode` has been renamed to `shaka.ui.Overlay.FailReasonCode` (deprecated in v3.1.0)
* **offline:** `shaka.offline.Storage.prototype.store()` returns `AbortableOperation` instead of `Promise` (deprecated in v3.0.0)
* **offline:** `shaka.offline.Storage.prototype.getStoreInProgress()` has been removed; concurrent operations are supported, so callers don't need to check this (deprecated in v3.0.0)
* `shaka.util.Uint8ArrayUtils.equal` has been replaced by `shaka.util.BufferUtils.equal`, which can handle multiple types of buffers (deprecated in v3.0.0)
* **manifest:** `shaka.media.SegmentIndex.prototype.destroy()` has been replaced by `release()`, which is synchronous (deprecated in v3.0.0)
* **manifest:** `shaka.media.SegmentIterator.prototype.seek()`, which mutates the iterator, has been replaced by `shaka.media.SegmentIndex.getIteratorForTime()` (deprecated in v3.1.0)
* **manifest:** `shaka.media.SegmentIndex.prototype.merge()` has become private; use `mergeAndEvict()` instead (deprecated in v3.2.0)
* **plugin:** `AbrManager` plugins must implement the `playbackRateChanged()` method (deprecated in v3.0.0)
* **plugin:** `shaka.extern.Cue.prototype.spacer` has been replaced by the more clearly-named `lineBreak` (deprecated in v3.1.0)
* **plugin:** `IUIElement` plugins must have a `release()` method (not `destroy()`) (deprecated in v3.0.0)
* Remove deprecated features, update upgrade guides (#4089)
* Remove support for Safari 12 and iOS 12 (#4112)
* **hls:** HLS disabled in old browsers/platforms due to incompatibilities (#3964)
### Features
* `shaka.util.Uint8ArrayUtils.equal` has been replaced by `shaka.util.BufferUtils.equal`, which can handle multiple types of buffers (deprecated in v3.0.0) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* Add Dockerfile and docker build instructions ([925de19](https://github.com/shaka-project/shaka-player/commit/925de1995eeb22863e8d4e92d720465834619288))
* add modern EME support for FairPlay ([#3776](https://github.com/shaka-project/shaka-player/issues/3776)) ([6d76a13](https://github.com/shaka-project/shaka-player/commit/6d76a135e5128dfd47653acea025d0a264d121d5))
* add new methods to FairPlayUtils ([#4029](https://github.com/shaka-project/shaka-player/issues/4029)) ([f1eeac1](https://github.com/shaka-project/shaka-player/commit/f1eeac1efb618aa7202b17b67c43056714f8da2f))
* add option for segment-relative VTT timings ([#4083](https://github.com/shaka-project/shaka-player/issues/4083)) ([f382cc7](https://github.com/shaka-project/shaka-player/commit/f382cc702be6cc28266fe61a33e43573cb22be57))
* Add separate audio and video MIME types to Track API ([#3892](https://github.com/shaka-project/shaka-player/issues/3892)) ([74c491d](https://github.com/shaka-project/shaka-player/commit/74c491d2e0042f62385813f04e74517cf00fcade)), closes [#3888](https://github.com/shaka-project/shaka-player/issues/3888)
* Allow WebP and AVIF image streams ([#3856](https://github.com/shaka-project/shaka-player/issues/3856)) ([9f3fb46](https://github.com/shaka-project/shaka-player/commit/9f3fb46d371d52f58bc9a7fc5beefe51890879ed)), closes [#3845](https://github.com/shaka-project/shaka-player/issues/3845)
* **config:** `manifest.dash.defaultPresentationDelay` has been replaced by `manifest.defaultPresentationDelay` (deprecated in v3.0.0) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* **config:** Configuration of factories should be plain factory functions, not constructors; these will not be invoked with `new` (deprecated in v3.1.0) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* **dash:** Construct ClearKey PSSH based on MPD ContentProtection ([#4104](https://github.com/shaka-project/shaka-player/issues/4104)) ([b83b412](https://github.com/shaka-project/shaka-player/commit/b83b4120f46ae94e3ce194f43b13517b7a736f07))
* **dash:** Parse ClearKey license URL in MPD ([#4066](https://github.com/shaka-project/shaka-player/issues/4066)) ([19e24b1](https://github.com/shaka-project/shaka-player/commit/19e24b1d741b4ba6946011748be8b759b4b71773))
* **demo:** Add Apple Advanced HLS Stream (TS) with raw AAC ([#3933](https://github.com/shaka-project/shaka-player/issues/3933)) ([1becadf](https://github.com/shaka-project/shaka-player/commit/1becadfc93ca06d64d0c9ace37c80213268a1675))
* **demo:** Added demo asset with raw AAC. ([014c7b3](https://github.com/shaka-project/shaka-player/commit/014c7b302b292a22f62d4e01230b927b33bc51da)), closes [#2337](https://github.com/shaka-project/shaka-player/issues/2337)
* **DRM:** add drmInfo to license requests ([#4030](https://github.com/shaka-project/shaka-player/issues/4030)) ([abe846e](https://github.com/shaka-project/shaka-player/commit/abe846e1a3456b029822ea42eb0520dec547fda6))
* **DRM:** add initData and initDataType to license requests ([#4039](https://github.com/shaka-project/shaka-player/issues/4039)) ([bdc5ea7](https://github.com/shaka-project/shaka-player/commit/bdc5ea767ebe55bb0b18dd106e269ab3fecd6d00))
* **HLS:** Containerless format support ([36d0b54](https://github.com/shaka-project/shaka-player/commit/36d0b5484fad68dc1d640fbddf2fae3e1eb7169b)), closes [#2337](https://github.com/shaka-project/shaka-player/issues/2337)
* **hls:** HLS disabled in old browsers/platforms due to incompatibilities ([#3964](https://github.com/shaka-project/shaka-player/issues/3964)) ([0daa00f](https://github.com/shaka-project/shaka-player/commit/0daa00fc7f074c1c86968ed0fcd84bc30254ee6d))
* **hls:** make a head request if hls subtitles have no extension ([#4140](https://github.com/shaka-project/shaka-player/issues/4140)) ([19e12b5](https://github.com/shaka-project/shaka-player/commit/19e12b5e282e661a9a17a6bfbb87c565faf2bc6e))
* **hls:** parse EXT-X-GAP ([#4134](https://github.com/shaka-project/shaka-player/issues/4134)) ([42eecc8](https://github.com/shaka-project/shaka-player/commit/42eecc84f992ca6a680c3a5fd46d1c300fe92a72))
* **HLS:** Re-add TS support to Safari ([#4097](https://github.com/shaka-project/shaka-player/issues/4097)) ([8a3bed7](https://github.com/shaka-project/shaka-player/commit/8a3bed710c104c9729fec2072318e50f9fe15ab2))
* **hls:** Read EXT-X-PROGRAM-DATE-TIME ([#4034](https://github.com/shaka-project/shaka-player/issues/4034)) ([89409ce](https://github.com/shaka-project/shaka-player/commit/89409cee3eaeb6764dbc191b7408bf45eecdced3)), closes [#2337](https://github.com/shaka-project/shaka-player/issues/2337)
* **manifest:** `shaka.media.SegmentIndex.prototype.destroy()` has been replaced by `release()`, which is synchronous (deprecated in v3.0.0) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* **manifest:** `shaka.media.SegmentIndex.prototype.merge()` has become private; use `mergeAndEvict()` instead (deprecated in v3.2.0) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* **manifest:** `shaka.media.SegmentIterator.prototype.seek()`, which mutates the iterator, has been replaced by `shaka.media.SegmentIndex.getIteratorForTime()` (deprecated in v3.1.0) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* **offline:** `shaka.offline.Storage.prototype.getStoreInProgress()` has been removed; concurrent operations are supported, so callers don't need to check this (deprecated in v3.0.0) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* **offline:** `shaka.offline.Storage.prototype.store()` returns `AbortableOperation` instead of `Promise` (deprecated in v3.0.0) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* **offline:** improve the speed of offline downloads ([#4168](https://github.com/shaka-project/shaka-player/issues/4168)) ([73f6de3](https://github.com/shaka-project/shaka-player/commit/73f6de3e01ae4ed3b86302add7ee16c86c3b9b78))
* only polyfill MCap for non Android-based Cast devices. ([#4170](https://github.com/shaka-project/shaka-player/issues/4170)) ([11321d8](https://github.com/shaka-project/shaka-player/commit/11321d8f26b01412fa5173aa6efcf777186fa7a0))
* **player:** `shaka.Player.prototype.addTextTrack()` has been replaced by `addTextTrackAsync()`, which returns a `Promise` (deprecated in v3.1.0) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* **plugin:** `AbrManager` plugins must implement the `playbackRateChanged()` method (deprecated in v3.0.0) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* **plugin:** `IUIElement` plugins must have a `release()` method (not `destroy()`) (deprecated in v3.0.0) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* **plugin:** `shaka.extern.Cue.prototype.spacer` has been replaced by the more clearly-named `lineBreak` (deprecated in v3.1.0) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* Public release of Sindarin (sjn) translation easter egg ([#4033](https://github.com/shaka-project/shaka-player/issues/4033)) ([9029d06](https://github.com/shaka-project/shaka-player/commit/9029d0677e0e0325e0dbe939907ba60ecec74c92))
* Remove deprecated features, update upgrade guides ([#4089](https://github.com/shaka-project/shaka-player/issues/4089)) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* Remove small/large gap config, always jump gaps ([#4125](https://github.com/shaka-project/shaka-player/issues/4125)) ([0fd1999](https://github.com/shaka-project/shaka-player/commit/0fd19997dde7b03bad7464a82dc86d7b2cd8a304))
* Remove support for Safari 12 and iOS 12 ([#4112](https://github.com/shaka-project/shaka-player/issues/4112)) ([8bb7044](https://github.com/shaka-project/shaka-player/commit/8bb70449d33c31a0e7fc312260dc001cc9e3a792))
* **ui:** `shaka.ui.FailReasonCode` has been renamed to `shaka.ui.Overlay.FailReasonCode` (deprecated in v3.1.0) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* **ui:** `shaka.ui.TrackLabelFormat` has been renamed to `shaka.ui.Overlay.TrackLabelFormat` (deprecated in v3.1.0) ([ac5acc8](https://github.com/shaka-project/shaka-player/commit/ac5acc80cb8d2bcb58455e8f66f7e1c2d18b0a3a))
* **ui:** Add quality selection for audio-only content ([#3649](https://github.com/shaka-project/shaka-player/issues/3649)) ([adc3502](https://github.com/shaka-project/shaka-player/commit/adc3502d55f39eaca30f3c42e17961ec7d681c80)), closes [#2071](https://github.com/shaka-project/shaka-player/issues/2071)
* **UI:** Add video fullscreen support for iOS ([#3853](https://github.com/shaka-project/shaka-player/issues/3853)) ([8d1b5e6](https://github.com/shaka-project/shaka-player/commit/8d1b5e6b07e979bd641da0b2b53c5f8e872422ad)), closes [#3832](https://github.com/shaka-project/shaka-player/issues/3832)
### Bug Fixes
* Add explicit release() for FakeEventTarget ([#3950](https://github.com/shaka-project/shaka-player/issues/3950)) ([f1c1585](https://github.com/shaka-project/shaka-player/commit/f1c1585afb2cfa3eb6b7465c8b32c9bad8e62d15))
* Add missing module export in generated typescript defs ([feefd7b](https://github.com/shaka-project/shaka-player/commit/feefd7b7d1cc318800c8d83de8cce81c57939f7d))
* Avoid WebCrypto randomUUID when CMCD disabled ([4731c76](https://github.com/shaka-project/shaka-player/commit/4731c7677f4f179f19ae647d3bb1edfda40dac53))
* **cea:** make a more robust CEA MP4 parser ([#3965](https://github.com/shaka-project/shaka-player/issues/3965)) ([2687b95](https://github.com/shaka-project/shaka-player/commit/2687b95d5830179c53914a7e903ecfbaced429cc))
* Clear buffer on seek if mediaState is updating ([#3795](https://github.com/shaka-project/shaka-player/issues/3795)) ([9705639](https://github.com/shaka-project/shaka-player/commit/9705639f4514d8d2dbfe5d81a31388f99e6be507)), closes [#3299](https://github.com/shaka-project/shaka-player/issues/3299)
* **cmcd:** Fix Symbol usage in CMCD on Xbox One ([#4073](https://github.com/shaka-project/shaka-player/issues/4073)) ([4005754](https://github.com/shaka-project/shaka-player/commit/400575498f34cf252aaba0bc1367953b8cf44537)), closes [#4072](https://github.com/shaka-project/shaka-player/issues/4072)
* **css:** Fix missing % in calculation ([#4157](https://github.com/shaka-project/shaka-player/issues/4157)) ([1c86195](https://github.com/shaka-project/shaka-player/commit/1c8619582319c46c524807aa4bdff1191b2efc91))
* **dash:** Account for bandwidth before filtering text stream ([#3765](https://github.com/shaka-project/shaka-player/issues/3765)) ([0b04aec](https://github.com/shaka-project/shaka-player/commit/0b04aecdd7ad4184a72b8cf562318b28128344bf)), closes [#3724](https://github.com/shaka-project/shaka-player/issues/3724)
* **dash:** Fix performance regression ([#4064](https://github.com/shaka-project/shaka-player/issues/4064)) ([298b604](https://github.com/shaka-project/shaka-player/commit/298b60481d34bd9d776874fe1b9a8eea05b533d9))
* **dash:** Fix playback of Dolby Atmos ([#4173](https://github.com/shaka-project/shaka-player/issues/4173)) ([d51fe23](https://github.com/shaka-project/shaka-player/commit/d51fe23b7fab99501818c18cc76586e1ec4abcdd)), closes [#4171](https://github.com/shaka-project/shaka-player/issues/4171)
* Fix broken deps file generation on Windows ([#4086](https://github.com/shaka-project/shaka-player/issues/4086)) ([9660ce8](https://github.com/shaka-project/shaka-player/commit/9660ce85df48856b964eebc330c28beba2e3068a)), closes [#4085](https://github.com/shaka-project/shaka-player/issues/4085)
* Fix CMCD property mangling ([#3842](https://github.com/shaka-project/shaka-player/issues/3842)) ([fa5932c](https://github.com/shaka-project/shaka-player/commit/fa5932ca8f604952590734bf8bdc27ad8e69e8d8)), closes [#3839](https://github.com/shaka-project/shaka-player/issues/3839)
* Fix CMCD top bitrate reporting ([#3852](https://github.com/shaka-project/shaka-player/issues/3852)) ([922778a](https://github.com/shaka-project/shaka-player/commit/922778a5ebd2d58ca0c1e804745ca40cda1228bc)), closes [#3851](https://github.com/shaka-project/shaka-player/issues/3851)
* Fix compiler error introduced in [#3864](https://github.com/shaka-project/shaka-player/issues/3864) ([#3906](https://github.com/shaka-project/shaka-player/issues/3906)) ([0635e2c](https://github.com/shaka-project/shaka-player/commit/0635e2c055c13a405048c7696389c1dfc039902f))
* Fix download of some HLS assets ([#3934](https://github.com/shaka-project/shaka-player/issues/3934)) ([36ca820](https://github.com/shaka-project/shaka-player/commit/36ca820877965db8bcc8b9c4b2a428317301bb95))
* Fix duplicate CMCD parameters in HLS live content ([#3875](https://github.com/shaka-project/shaka-player/issues/3875)) ([f27401c](https://github.com/shaka-project/shaka-player/commit/f27401cc151a435ae8fb12be4e86d672c331e1e5)), closes [#3862](https://github.com/shaka-project/shaka-player/issues/3862)
* Fix encryption detection to work around broken platforms ([#4169](https://github.com/shaka-project/shaka-player/issues/4169)) ([c5f474e](https://github.com/shaka-project/shaka-player/commit/c5f474ef983169e6ff29f1594d15a9b50b12d316))
* Fix exception in StreamingEngine for EMSG with HLS ([#3887](https://github.com/shaka-project/shaka-player/issues/3887)) ([48433ab](https://github.com/shaka-project/shaka-player/commit/48433abe74c5f603cf06097e391ffdfa22d64256)), closes [#3886](https://github.com/shaka-project/shaka-player/issues/3886)
* Fix exceptions when quickly shutting down src= on Safari ([#4088](https://github.com/shaka-project/shaka-player/issues/4088)) ([ca08230](https://github.com/shaka-project/shaka-player/commit/ca08230fbe85d66176c7fa1fb4f9782d0ab364fc)), closes [#4087](https://github.com/shaka-project/shaka-player/issues/4087)
* Fix MediaCapabilities polyfill on Safari ([0201f2b](https://github.com/shaka-project/shaka-player/commit/0201f2b7604e76062b68b8b1acbf098faf71d019)), closes [#3696](https://github.com/shaka-project/shaka-player/issues/3696) [#3530](https://github.com/shaka-project/shaka-player/issues/3530)
* Fix memory leak in DASH live streams with inband EventStream ([#3957](https://github.com/shaka-project/shaka-player/issues/3957)) ([b7f04cb](https://github.com/shaka-project/shaka-player/commit/b7f04cb36bda664ec9cf23a081d237793907eaae))
* Fix misdetection of HEVC support on MS Edge ([#3897](https://github.com/shaka-project/shaka-player/issues/3897)) ([dfb3699](https://github.com/shaka-project/shaka-player/commit/dfb369935b9e84fe69a7d38c7904fb0e00dc064a)), closes [#3860](https://github.com/shaka-project/shaka-player/issues/3860)
* Fix missing throughput in CMCD for HLS live ([#3874](https://github.com/shaka-project/shaka-player/issues/3874)) ([df55944](https://github.com/shaka-project/shaka-player/commit/df55944e8f49bdf8e34a679219cd6596ba46c777)), closes [#3873](https://github.com/shaka-project/shaka-player/issues/3873)
* Fix playback failure due to rounding errors ([1cc99c1](https://github.com/shaka-project/shaka-player/commit/1cc99c1241c89b5fb5a989dd52ff0b9a9753b65f)), closes [#3717](https://github.com/shaka-project/shaka-player/issues/3717)
* Fix playRangeEnd for certain content ([#4068](https://github.com/shaka-project/shaka-player/issues/4068)) ([5c81f3b](https://github.com/shaka-project/shaka-player/commit/5c81f3bddb9e48431556f4d622364043fee4ea80)), closes [#4026](https://github.com/shaka-project/shaka-player/issues/4026)
* Fix support for TTAF1 namespace (old version of TTML) ([#3864](https://github.com/shaka-project/shaka-player/issues/3864)) ([771619f](https://github.com/shaka-project/shaka-player/commit/771619ff0ef8ba0e3da9569ded3894b428d03c58)), closes [#3009](https://github.com/shaka-project/shaka-player/issues/3009)
* Fix usage of Shaka without polyfills ([dfc44cb](https://github.com/shaka-project/shaka-player/commit/dfc44cbca6b95eb137882075cb8bf02cfc73a9d3))
* **hls:** Fixed buffering issue with live HLS ([#4002](https://github.com/shaka-project/shaka-player/issues/4002)) ([c438e85](https://github.com/shaka-project/shaka-player/commit/c438e857f2f122eb45899148e067d68ffec3477c))
* **HLS:** skip whitespace in attributes ([#3884](https://github.com/shaka-project/shaka-player/issues/3884)) ([ea6c02a](https://github.com/shaka-project/shaka-player/commit/ea6c02aece1510598a898c235e66335d20eabedb))
* **hls:** Support playing media playlists directly ([#4080](https://github.com/shaka-project/shaka-player/issues/4080)) ([48dd205](https://github.com/shaka-project/shaka-player/commit/48dd20562c2226f61cc753a922629e44c1866f6d)), closes [#3536](https://github.com/shaka-project/shaka-player/issues/3536)
* **image:** Fix HLS image track issues ([264c842](https://github.com/shaka-project/shaka-player/commit/264c84249684ee809f53fd4117f9aab4e0a599ac)), closes [#3840](https://github.com/shaka-project/shaka-player/issues/3840)
* **image:** Fix thumbnails issues ([#3858](https://github.com/shaka-project/shaka-player/issues/3858)) ([087a9b4](https://github.com/shaka-project/shaka-player/commit/087a9b489b030aa0dc80011ca4e0a0c7a4124ecd))
* **offline:** Clean up orphaned segments on abort ([#4177](https://github.com/shaka-project/shaka-player/issues/4177)) ([c07447f](https://github.com/shaka-project/shaka-player/commit/c07447f00e9095020890366695561b71b045e55a))
* **offline:** Speed up offline storage by ~87% ([#4176](https://github.com/shaka-project/shaka-player/issues/4176)) ([c1c9613](https://github.com/shaka-project/shaka-player/commit/c1c96135120480afc9615713812eecc4a51f153b)), closes [#4166](https://github.com/shaka-project/shaka-player/issues/4166)
* **performance:** Eliminate use of ES6 generators ([#4092](https://github.com/shaka-project/shaka-player/issues/4092)) ([57c7324](https://github.com/shaka-project/shaka-player/commit/57c73241a0e8ce1615f7b3aca4c3ad8f69b7e8c2)), closes [#4062](https://github.com/shaka-project/shaka-player/issues/4062)
* Revert "Add missing module export in generated typescript defs" ([#4175](https://github.com/shaka-project/shaka-player/issues/4175)) ([fe4f5c6](https://github.com/shaka-project/shaka-player/commit/fe4f5c6e19214d6cf4d42da9430de03040532bab)), closes [#4167](https://github.com/shaka-project/shaka-player/issues/4167)
* Select first of identical audio streams ([#3869](https://github.com/shaka-project/shaka-player/issues/3869)) ([a6d8610](https://github.com/shaka-project/shaka-player/commit/a6d8610241dc7c8abd56cf7f0d48993d6139dcae))
* Support multiple chapter tracks with same language ([#3868](https://github.com/shaka-project/shaka-player/issues/3868)) ([8c626ae](https://github.com/shaka-project/shaka-player/commit/8c626aec238c01ebad7ccd06c9313e4f2e99d383)), closes [#3597](https://github.com/shaka-project/shaka-player/issues/3597)
* **text:** Fix caption overlap. ([bf67d87](https://github.com/shaka-project/shaka-player/commit/bf67d87387b1dfc4d3d8e0661bfe4efb1e4083b2)), closes [#3850](https://github.com/shaka-project/shaka-player/issues/3850) [#3741](https://github.com/shaka-project/shaka-player/issues/3741)
* **text:** Fix webvtt offset in sequence mode ([#3955](https://github.com/shaka-project/shaka-player/issues/3955)) ([a4e9267](https://github.com/shaka-project/shaka-player/commit/a4e926772e1b754fe968ee6f97490f08a40fe535)), closes [#2337](https://github.com/shaka-project/shaka-player/issues/2337)
* **text:** Inherit alignment from regions. ([e9df8fb](https://github.com/shaka-project/shaka-player/commit/e9df8fb10c3752cb833e89c8ac793241497e29b6))
* **text:** Made nested cues inherit region ([#3837](https://github.com/shaka-project/shaka-player/issues/3837)) ([3ff48cb](https://github.com/shaka-project/shaka-player/commit/3ff48cba9b28a29e8decc11898e326d7918bc8f4)), closes [#3743](https://github.com/shaka-project/shaka-player/issues/3743)
* **text:** Remove caption wrapper bgColor ([#3838](https://github.com/shaka-project/shaka-player/issues/3838)) ([0117441](https://github.com/shaka-project/shaka-player/commit/0117441bb06e0325b84666d2a5a76c0c2de81725)), closes [#3745](https://github.com/shaka-project/shaka-player/issues/3745)
* **ttml:** Center subtitles by default ([#4023](https://github.com/shaka-project/shaka-player/issues/4023)) ([f2f24d5](https://github.com/shaka-project/shaka-player/commit/f2f24d528f71e59c81d6172c24da2f412ca18d70))
* **UI:** Add cursor pointer to range elements ([#4059](https://github.com/shaka-project/shaka-player/issues/4059)) ([33e8400](https://github.com/shaka-project/shaka-player/commit/33e84009dc9f6d48884ecfc2f66eeb285f60d05a)), closes [#3220](https://github.com/shaka-project/shaka-player/issues/3220)
* **UI:** Fix text UI not updating when text is disabled ([#3867](https://github.com/shaka-project/shaka-player/issues/3867)) ([9f53d39](https://github.com/shaka-project/shaka-player/commit/9f53d394279066f29a2d391b6964cba11c4a3e1e)), closes [#3728](https://github.com/shaka-project/shaka-player/issues/3728)
## 3.3.1 (2022-01-28)
Bugfixes:
- Fix duplicate CMCD parameters in HLS live content
- https://github.com/shaka-project/shaka-player/issues/3862
- https://github.com/shaka-project/shaka-player/pull/3875
- Inherit alignment from regions
- Fix support for TTAF1 namespace (old version of TTML)
- https://github.com/shaka-project/shaka-player/issues/3009
- https://github.com/shaka-project/shaka-player/pull/3864
- https://github.com/shaka-project/shaka-player/pull/3906
- Fix misdetection of HEVC support on MS Edge
- https://github.com/shaka-project/shaka-player/pull/3897
- Fix caption overlap
- https://github.com/shaka-project/shaka-player/issues/3850
- https://github.com/shaka-project/shaka-player/issues/3741
- Fix missing throughput in CMCD for HLS live
- https://github.com/shaka-project/shaka-player/issues/3873
- https://github.com/shaka-project/shaka-player/pull/3874
- Support multiple chapter tracks with same language
- https://github.com/shaka-project/shaka-player/issues/3597
- https://github.com/shaka-project/shaka-player/pull/3868
- Fix text UI not updating when text is disabled
- https://github.com/shaka-project/shaka-player/issues/3728
- https://github.com/shaka-project/shaka-player/pull/3867
- Clear buffer on seek if mediaState is updating
- https://github.com/shaka-project/shaka-player/issues/3299
- https://github.com/shaka-project/shaka-player/pull/3795
- Fix thumbnails issues
- https://github.com/shaka-project/shaka-player/pull/3858
- Made nested cues inherit region
- https://github.com/shaka-project/shaka-player/issues/3743
- https://github.com/shaka-project/shaka-player/pull/3837
- Fix CMCD top bitrate reporting
- https://github.com/shaka-project/shaka-player/issues/3851
- https://github.com/shaka-project/shaka-player/pull/3852
- Fix MediaCapabilities polyfill on Safari
- https://github.com/shaka-project/shaka-player/issues/3696
- https://github.com/shaka-project/shaka-player/issues/3530
- Fix usage of Shaka without polyfills
- https://github.com/shaka-project/shaka-player/issues/3843
- Fix playback failure due to rounding errors
- https://github.com/shaka-project/shaka-player/issues/3717
- Fix HLS image track issues
- https://github.com/shaka-project/shaka-player/issues/3840
- Fix CMCD property mangling
- https://github.com/shaka-project/shaka-player/issues/3839
- https://github.com/shaka-project/shaka-player/pull/3842
- Remove caption wrapper bgColor
- https://github.com/shaka-project/shaka-player/issues/3745
- https://github.com/shaka-project/shaka-player/pull/3838
- Avoid WebCrypto randomUUID when CMCD disabled
## 3.2.3 (2022-01-28)
Bugfixes:
- Fix support for TTAF1 namespace (old version of TTML)
- https://github.com/shaka-project/shaka-player/issues/3009
- https://github.com/shaka-project/shaka-player/pull/3864
- https://github.com/shaka-project/shaka-player/pull/3906
- Fix misdetection of HEVC support on MS Edge
- https://github.com/shaka-project/shaka-player/pull/3897
- Fix caption overlap
- https://github.com/shaka-project/shaka-player/issues/3850
- https://github.com/shaka-project/shaka-player/issues/3741
- Support multiple chapter tracks with same language
- https://github.com/shaka-project/shaka-player/issues/3597
- https://github.com/shaka-project/shaka-player/pull/3868
- Fix text UI not updating when text is disabled
- https://github.com/shaka-project/shaka-player/issues/3728
- https://github.com/shaka-project/shaka-player/pull/3867
- Clear buffer on seek if mediaState is updating
- https://github.com/shaka-project/shaka-player/issues/3299
- https://github.com/shaka-project/shaka-player/pull/3795
- Fix thumbnails issues
- https://github.com/shaka-project/shaka-player/pull/3858
- Made nested cues inherit region
- https://github.com/shaka-project/shaka-player/issues/3743
- https://github.com/shaka-project/shaka-player/pull/3837
- Fix MediaCapabilities polyfill on Safari
- https://github.com/shaka-project/shaka-player/issues/3696
- https://github.com/shaka-project/shaka-player/issues/3530
- Fix usage of Shaka without polyfills
- https://github.com/shaka-project/shaka-player/issues/3843
- Fix playback failure due to rounding errors
- https://github.com/shaka-project/shaka-player/issues/3717
- Fix HLS image track issues
- https://github.com/shaka-project/shaka-player/issues/3840
- Remove caption wrapper bgColor
- https://github.com/shaka-project/shaka-player/issues/3745
- https://github.com/shaka-project/shaka-player/pull/3838
- Support "forced-subtitle" role
- https://github.com/shaka-project/shaka-player/issues/3767
- https://github.com/shaka-project/shaka-player/pull/3807
- Fix time element height on Safari
- https://github.com/shaka-project/shaka-player/issues/3739
- https://github.com/shaka-project/shaka-player/pull/3809
## 3.1.5 (2022-01-28)
Bugfixes:
- Fix support for TTAF1 namespace (old version of TTML)
- https://github.com/shaka-project/shaka-player/issues/3009
- https://github.com/shaka-project/shaka-player/pull/3864
- https://github.com/shaka-project/shaka-player/pull/3906
- Fix misdetection of HEVC support on MS Edge
- https://github.com/shaka-project/shaka-player/pull/3897
- Fix caption overlap
- https://github.com/shaka-project/shaka-player/issues/3850
- https://github.com/shaka-project/shaka-player/issues/3741
- Fix text UI not updating when text is disabled
- https://github.com/shaka-project/shaka-player/issues/3728
- https://github.com/shaka-project/shaka-player/pull/3867
- Clear buffer on seek if mediaState is updating
- https://github.com/shaka-project/shaka-player/issues/3299
- https://github.com/shaka-project/shaka-player/pull/3795
- Made nested cues inherit region
- https://github.com/shaka-project/shaka-player/issues/3743
- https://github.com/shaka-project/shaka-player/pull/3837
- Fix MediaCapabilities polyfill on Safari
- https://github.com/shaka-project/shaka-player/issues/3696
- https://github.com/shaka-project/shaka-player/issues/3530
- Fix usage of Shaka without polyfills
- https://github.com/shaka-project/shaka-player/issues/3843
- Fix playback failure due to rounding errors
- https://github.com/shaka-project/shaka-player/issues/3717
- Remove caption wrapper bgColor
- https://github.com/shaka-project/shaka-player/issues/3745
- https://github.com/shaka-project/shaka-player/pull/3838
- Support "forced-subtitle" role
- https://github.com/shaka-project/shaka-player/issues/3767
- https://github.com/shaka-project/shaka-player/pull/3807
- Fix time element height on Safari
- https://github.com/shaka-project/shaka-player/issues/3739
- https://github.com/shaka-project/shaka-player/pull/3809
## 3.3.0 (2022-01-07)
New Features:
- Adds singleClickForPlayAndPause config
- https://github.com/shaka-project/shaka-player/issues/3821
- Add media quality change events
- https://github.com/shaka-project/shaka-player/pull/3700
- Add Common Media Client Data (CMCD) logging support
- https://github.com/shaka-project/shaka-player/issues/3619
- https://github.com/shaka-project/shaka-player/pull/3662
- Adds advanced ABR config options
- https://github.com/shaka-project/shaka-player/issues/3422
- https://github.com/shaka-project/shaka-player/pull/3706
- Integrate with non-linear IMA CS ads
- https://github.com/shaka-project/shaka-player/pull/3639
- Add a config to dispatch all emsg boxes
- https://github.com/shaka-project/shaka-player/issues/3348
- https://github.com/shaka-project/shaka-player/pull/3653
- Added Loop and PIP to context menu, and Statistics to overflow menu
- https://github.com/shaka-project/shaka-player/pull/3578
- Export LanguageUtils
- https://github.com/shaka-project/shaka-player/issues/3692
- Add randomUUID polyfill
- https://github.com/shaka-project/shaka-player/pull/3669
- Export individual polyfill install methods
- https://github.com/shaka-project/shaka-player/pull/3660
- Make default HLS audio/video codecs configurable
- https://github.com/shaka-project/shaka-player/pull/3651
- Add response HTTP status to Networking engine responses
- https://github.com/shaka-project/shaka-player/issues/3640
- https://github.com/shaka-project/shaka-player/pull/3641
- Create segment index only when used
- Partially support tts:textOutline
- https://github.com/shaka-project/shaka-player/issues/3612
- Add tooltips to control panel buttons
- https://github.com/shaka-project/shaka-player/pull/3572
- Add configurable rates
- https://github.com/shaka-project/shaka-player/pull/3579
- Add blob-url support
- https://github.com/shaka-project/shaka-player/issues/1481
- https://github.com/shaka-project/shaka-player/pull/3583
- Add updateStartTime method to play
- https://github.com/shaka-project/shaka-player/pull/3491
- Add right-click context menu, statistics button
- https://github.com/shaka-project/shaka-player/issues/2607
- https://github.com/shaka-project/shaka-player/pull/3548
- Added events for download lifecycle
- https://github.com/shaka-project/shaka-player/issues/3533
- Add Quality, Language, Playback, Captions buttons to control panel
- https://github.com/shaka-project/shaka-player/pull/3465
- Add goToLive method
- https://github.com/shaka-project/shaka-player/pull/3527
## 3.2.2 (2022-01-06)
Bugfixes:
- Allow comments in the TTML parser
- https://github.com/shaka-project/shaka-player/issues/3766
- https://github.com/shaka-project/shaka-player/pull/3827
- Fix HDR signalling via essential or supplemental property
- https://github.com/shaka-project/shaka-player/issues/3726
- https://github.com/shaka-project/shaka-player/pull/3727
- Fix MediaCapabilities polyfill on Playstation 5
- https://github.com/shaka-project/shaka-player/issues/3582
- https://github.com/shaka-project/shaka-player/pull/3808
- Add DASH MIME type mapping for src= playback
- https://github.com/shaka-project/shaka-player/pull/3805
- Fix captions not working after a period transition on live DASH streams
- https://github.com/shaka-project/shaka-player/issues/3783
- https://github.com/shaka-project/shaka-player/pull/3801
- Fix timestamp offset of CEA-608 cues
- https://github.com/shaka-project/shaka-player/issues/3782
- Force caption update when removing cues
- Fixes parsing of HLS 'DEFAULT' attribute
- https://github.com/shaka-project/shaka-player/issues/3769
- https://github.com/shaka-project/shaka-player/pull/3771
- support stpp.ttml codec in Mp4TtmlParser
- https://github.com/shaka-project/shaka-player/pull/3754
- Fix Russian translation
- https://github.com/shaka-project/shaka-player/pull/3751
- Fix HLS VOD duration
- https://github.com/shaka-project/shaka-player/issues/3733
- Query HDR transfer function
- https://github.com/shaka-project/shaka-player/issues/3729
- https://github.com/shaka-project/shaka-player/pull/3730
- Fix styling of UI text cues
- https://github.com/shaka-project/shaka-player/issues/3521
- https://github.com/shaka-project/shaka-player/issues/3600
- https://github.com/shaka-project/shaka-player/issues/3713
- Fix seek range issues on transition from live to VOD
- https://github.com/shaka-project/shaka-player/issues/3675
- Enforce string-format of event data keys
- https://github.com/shaka-project/shaka-player/issues/3710
- Fix vp09 playback on webOS
- https://github.com/shaka-project/shaka-player/pull/3566
- Dedupe DRM init data
- https://github.com/shaka-project/shaka-player/pull/3695
- Failover in geo-redundant streams
- https://github.com/shaka-project/shaka-player/pull/3587
- Update Cast receiver ID for v3.2
Demo App:
- Fix 'Tears of Steel (live, DASH, Server Side ads)'
- https://github.com/shaka-project/shaka-player/pull/3758
Docs:
- Fix typo in Fairplay tutorial
- https://github.com/shaka-project/shaka-player/pull/3714
## 3.1.4 (2022-01-06)
Bugfixes:
- Allow comments in the TTML parser
- https://github.com/shaka-project/shaka-player/issues/3766
- https://github.com/shaka-project/shaka-player/pull/3827
- Fix HDR signalling via essential or supplemental property
- https://github.com/shaka-project/shaka-player/issues/3726
- https://github.com/shaka-project/shaka-player/pull/3727
- Fix MediaCapabilities polyfill on Playstation 5
- https://github.com/shaka-project/shaka-player/issues/3582
- https://github.com/shaka-project/shaka-player/pull/3808
- Add DASH MIME type mapping for src= playback
- https://github.com/shaka-project/shaka-player/pull/3805
- Fix captions not working after a period transition on live DASH streams
- https://github.com/shaka-project/shaka-player/issues/3783
- https://github.com/shaka-project/shaka-player/pull/3801
- Fix timestamp offset of CEA-608 cues
- https://github.com/shaka-project/shaka-player/issues/3782
- Force caption update when removing cues
- Fixes parsing of HLS 'DEFAULT' attribute
- https://github.com/shaka-project/shaka-player/issues/3769
- https://github.com/shaka-project/shaka-player/pull/3771
- support stpp.ttml codec in Mp4TtmlParser
- https://github.com/shaka-project/shaka-player/pull/3754
- Fix Russian translation
- https://github.com/shaka-project/shaka-player/pull/3751
- Fix HLS VOD duration
- https://github.com/shaka-project/shaka-player/issues/3733
- Query HDR transfer function
- https://github.com/shaka-project/shaka-player/issues/3729
- https://github.com/shaka-project/shaka-player/pull/3730
- Fix styling of UI text cues
- https://github.com/shaka-project/shaka-player/issues/3521
- https://github.com/shaka-project/shaka-player/issues/3600
- https://github.com/shaka-project/shaka-player/issues/3713
- Fix seek range issues on transition from live to VOD
- https://github.com/shaka-project/shaka-player/issues/3675
- Enforce string-format of event data keys.
- https://github.com/shaka-project/shaka-player/issues/3710
- Fix vp09 playback on webOS
- https://github.com/shaka-project/shaka-player/pull/3566
- Dedupe DRM init data
- https://github.com/shaka-project/shaka-player/pull/3695
- Failover in geo-redundant streams
- https://github.com/shaka-project/shaka-player/pull/3587
Demo App:
- Fix 'Tears of Steel (live, DASH, Server Side ads)'
- https://github.com/shaka-project/shaka-player/pull/3758
Docs:
- Fix typo in Fairplay tutorial
- https://github.com/shaka-project/shaka-player/pull/3714
## 3.0.15 (2022-01-06)
Bugfixes:
- Allow comments in the TTML parser
- https://github.com/shaka-project/shaka-player/issues/3766
- https://github.com/shaka-project/shaka-player/pull/3827
- Add DASH MIME type mapping for src= playback
- https://github.com/shaka-project/shaka-player/pull/3805
- Fix captions not working after a period transition on live DASH streams
- https://github.com/shaka-project/shaka-player/issues/3783
- https://github.com/shaka-project/shaka-player/pull/3801
- Force caption update when removing cues
- Fixes parsing of HLS 'DEFAULT' attribute
- https://github.com/shaka-project/shaka-player/issues/3769
- https://github.com/shaka-project/shaka-player/pull/3771
- support stpp.ttml codec in Mp4TtmlParser
- https://github.com/shaka-project/shaka-player/pull/3754
- Fix Russian translation
- https://github.com/shaka-project/shaka-player/pull/3751
- Made HLS notify segments after fit
- https://github.com/shaka-project/shaka-player/issues/3733
- Fix seek range issues on transition from live to VOD
- https://github.com/shaka-project/shaka-player/issues/3675
- Enforce string-format of event data keys
- https://github.com/shaka-project/shaka-player/issues/3710
- Dedupe DRM init data
- https://github.com/shaka-project/shaka-player/pull/3695
- Failover in geo-redundant streams
- https://github.com/shaka-project/shaka-player/pull/3587
Demo App:
- Fix 'Tears of Steel (live, DASH, Server Side ads)'
- https://github.com/shaka-project/shaka-player/pull/3758
Docs:
- Fix typo in Fairplay tutorial
- https://github.com/shaka-project/shaka-player/pull/3714
## 3.2.1 (2021-10-13)
Bugfixes:
- Work around override of MediaCapabilities polyfill in Apple browsers
- https://github.com/shaka-project/shaka-player/issues/3530
- https://github.com/shaka-project/shaka-player/pull/3668
- Fix video poster when autoplay is disabled
- https://github.com/shaka-project/shaka-player/pull/3645
- Fix tracking of active variant track in live streams
- Fixes updating of nested cues
- https://github.com/shaka-project/shaka-player/issues/3524
- https://github.com/shaka-project/shaka-player/issues/3643
- Fix ttml erroneously dismissing cues
- https://github.com/shaka-project/shaka-player/issues/3643
- Fix control panel alignment in UI
- https://github.com/shaka-project/shaka-player/pull/3650
- Export missing polyfill install methods
- https://github.com/shaka-project/shaka-player/pull/3660
- Dispose of ad manager on player detach
- https://github.com/shaka-project/shaka-player/pull/3665
- Add ResizeObserver to CS ad manager
- https://github.com/shaka-project/shaka-player/pull/3652
- Avoid seeking on src when start time is 0
- https://github.com/shaka-project/shaka-player/issues/3518
- https://github.com/shaka-project/shaka-player/pull/3644
- Tolerate misaligned TS files
- https://github.com/shaka-project/shaka-player/issues/3580
- Account for server-side ad cue points in external text tracks
- https://github.com/shaka-project/shaka-player/pull/3617
- Fix stopping of Server Side Ad manager
- https://github.com/shaka-project/shaka-player/pull/3611
- Fix DRM workaround for Tizen and Xbox with ac-3 boxes
- https://github.com/shaka-project/shaka-player/issues/3589
- https://github.com/shaka-project/shaka-player/pull/3631
- Fix DRM workaround for Tizen and Xbox with avc3 boxes
- https://github.com/shaka-project/shaka-player/pull/3625
- Fix `BUFFER_READ_OUT_OF_BOUNDS` error when CEA caption packets are empty
- https://github.com/shaka-project/shaka-player/issues/3608
- https://github.com/shaka-project/shaka-player/pull/3609
- Fix error when un-storing DRM asset
- https://github.com/shaka-project/shaka-player/issues/3534
- Fix CC parsing of EPB and v1 TKHD boxes
- https://github.com/shaka-project/shaka-player/issues/3502
- https://github.com/shaka-project/shaka-player/pull/3610
- Always polyfill MediaCapabilities for Apple browsers
- https://github.com/shaka-project/shaka-player/pull/3588
- Add Support to iOS 12 in MediaCapabilities polyfill
- https://github.com/shaka-project/shaka-player/pull/3573
- Add support to file type in MediaCapabilities implementation
- https://github.com/shaka-project/shaka-player/pull/3570
- Display captions with forward slashes
- https://github.com/shaka-project/shaka-player/issues/3555
- https://github.com/shaka-project/shaka-player/pull/3556
- Add support to file type in MediaCapabilities polyfill
- https://github.com/shaka-project/shaka-player/pull/3569
- Use "undetermined" for missing CC language
- Fix FairPlay playback
- https://github.com/shaka-project/shaka-player/pull/3531
- Exit PiP when destroying UI
- https://github.com/shaka-project/shaka-player/issues/3553
Docs:
- Add FAQ entry for common Vue problem
- https://github.com/shaka-project/shaka-player/issues/3155
## 3.1.3 (2021-10-13)
Bugfixes:
- Work around override of MediaCapabilities polyfill in Apple browsers
- https://github.com/shaka-project/shaka-player/issues/3530
- https://github.com/shaka-project/shaka-player/pull/3668
- Add support to file type in MediaCapabilities implementation
- https://github.com/shaka-project/shaka-player/pull/3570
- Fix video poster when autoplay is disabled
- https://github.com/shaka-project/shaka-player/pull/3645
- Fix tracking of active variant track in live streams
- Fixes updating of nested cues
- https://github.com/shaka-project/shaka-player/issues/3524
- https://github.com/shaka-project/shaka-player/issues/3643
- Fix ttml erroneously dismissing cues
- https://github.com/shaka-project/shaka-player/issues/3643
- Fix control panel alignment in UI
- https://github.com/shaka-project/shaka-player/pull/3650
- Export missing polyfill install methods
- https://github.com/shaka-project/shaka-player/pull/3660
- Dispose of ad manager on player detach
- https://github.com/shaka-project/shaka-player/pull/3665
- Add ResizeObserver to CS ad manager
- https://github.com/shaka-project/shaka-player/pull/3652
- Avoid seeking on src when start time is 0
- https://github.com/shaka-project/shaka-player/issues/3518
- https://github.com/shaka-project/shaka-player/pull/3644
- Tolerate misaligned TS files
- https://github.com/shaka-project/shaka-player/issues/3580
- Fix stopping of Server Side Ad manager
- https://github.com/shaka-project/shaka-player/pull/3611
- Fix DRM workaround for Tizen and Xbox with ac-3 boxes
- https://github.com/shaka-project/shaka-player/issues/3589
- https://github.com/shaka-project/shaka-player/pull/3631
- Fix DRM workaround for Tizen and Xbox with avc3 boxes
- https://github.com/shaka-project/shaka-player/pull/3625
- Fix `BUFFER_READ_OUT_OF_BOUNDS` error when CEA caption packets are empty
- https://github.com/shaka-project/shaka-player/issues/3608
- https://github.com/shaka-project/shaka-player/pull/3609
- Fix error when un-storing DRM asset
- https://github.com/shaka-project/shaka-player/issues/3534
- Fix CC parsing of EPB and v1 TKHD boxes
- https://github.com/shaka-project/shaka-player/issues/3502
- https://github.com/shaka-project/shaka-player/pull/3610
- Always polyfill MediaCapabilities for Apple browsers
- https://github.com/shaka-project/shaka-player/pull/3588
- Add Support to iOS 12 in MediaCapabilities polyfill
- https://github.com/shaka-project/shaka-player/pull/3573
- Display captions with forward slashes
- https://github.com/shaka-project/shaka-player/issues/3555
- https://github.com/shaka-project/shaka-player/pull/3556
- Add support to file type in MediaCapabilities polyfill
- https://github.com/shaka-project/shaka-player/pull/3569
- Use "undetermined" for missing CC language
- Exit PiP when destroying UI
- https://github.com/shaka-project/shaka-player/issues/3553
Docs:
- Add FAQ entry for common Vue problem
- https://github.com/shaka-project/shaka-player/issues/3155
## 3.0.14 (2021-10-13)
Bugfixes:
- Fix video poster when autoplay is disabled
- https://github.com/shaka-project/shaka-player/pull/3645
- Fix tracking of active variant track in live streams
- Fix control panel alignment in UI
- https://github.com/shaka-project/shaka-player/pull/3650
- Export missing polyfill install methods
- https://github.com/shaka-project/shaka-player/pull/3660
- Dispose of ad manager on player detach
- https://github.com/shaka-project/shaka-player/pull/3665
- Add ResizeObserver to CS ad manager
- https://github.com/shaka-project/shaka-player/pull/3652
- Avoid seeking on src when start time is 0
- https://github.com/shaka-project/shaka-player/issues/3518
- https://github.com/shaka-project/shaka-player/pull/3644
- Tolerate misaligned TS files
- https://github.com/shaka-project/shaka-player/issues/3580
- Fix stopping of Server Side Ad manager
- https://github.com/shaka-project/shaka-player/pull/3611
- Fix DRM workaround for Tizen and Xbox with ac-3 boxes
- https://github.com/shaka-project/shaka-player/issues/3589
- https://github.com/shaka-project/shaka-player/pull/3631
- Fix DRM workaround for Tizen and Xbox with avc3 boxes
- https://github.com/shaka-project/shaka-player/pull/3625
- Fix error when un-storing DRM asset
- https://github.com/shaka-project/shaka-player/issues/3534
- Exit PiP when destroying UI
- https://github.com/shaka-project/shaka-player/issues/3553
Docs:
- Add FAQ entry for common Vue problem
- https://github.com/shaka-project/shaka-player/issues/3155
## 3.2.0 (2021-07-14)
New Features:
- MediaCapabilities support: configs for preferred codecs, decoding
attributes, and key systems
- https://github.com/shaka-project/shaka-player/pull/3424
- https://github.com/shaka-project/shaka-player/issues/1391
- https://github.com/shaka-project/shaka-player/issues/3002
- Support more frequent segment updates during streaming
- https://github.com/shaka-project/shaka-player/pull/3483
- Add callback for apps to pre-process DASH manifests
- https://github.com/shaka-project/shaka-player/issues/3339
- https://github.com/shaka-project/shaka-player/pull/3480
- Add chapters support
- https://github.com/shaka-project/shaka-player/pull/2972
- Add support for HLS Image Media Playlists
- https://github.com/shaka-project/shaka-player/pull/3365
- Add align and vertical settings to WebVttGenerator
- https://github.com/shaka-project/shaka-player/pull/3413
- Add a buffer fullness method
- https://github.com/shaka-project/shaka-player/issues/3389
- https://github.com/shaka-project/shaka-player/pull/3392
- Progress toward FairPlay DRM w/ MSE
- https://github.com/shaka-project/shaka-player/pull/3347
- Add serverCertificateUri in DRM advanced config
- https://github.com/shaka-project/shaka-player/issues/1906
- https://github.com/shaka-project/shaka-player/pull/3358
- Add goToLive method
- https://github.com/shaka-project/shaka-player/pull/3527
## 3.1.2 (2021-07-14)
Bugfixes:
- Fix choosing tracks from streaming event
- https://github.com/shaka-project/shaka-player/issues/3448
- https://github.com/shaka-project/shaka-player/pull/3459
- Fix multiperiod without consistent thumbnails
- https://github.com/shaka-project/shaka-player/issues/3383
- Fix failure with multiple thumbnails per period
- https://github.com/shaka-project/shaka-player/issues/3383
- Update Play icon after seeking from end
- https://github.com/shaka-project/shaka-player/pull/3515
- Reset forced subs between loads
- Fix thumbnail position calculation
- https://github.com/shaka-project/shaka-player/issues/3511
- https://github.com/shaka-project/shaka-player/pull/3516
- Fix thumbnail duration, expose start time and duration
- https://github.com/shaka-project/shaka-player/pull/3517
- Fix enforcement of cue alignment styles
- https://github.com/shaka-project/shaka-player/issues/3379
- Fix DASH transition from dynamic to static
- https://github.com/shaka-project/shaka-player/pull/3497
- Fix ARIA label on replay button
- https://github.com/shaka-project/shaka-player/pull/3513
- Fix audio language switching while using AirPlay
- https://github.com/shaka-project/shaka-player/issues/3125
- https://github.com/shaka-project/shaka-player/pull/3472
- Show captions with rapid seek when ignoreTextStreamFailures is true
- https://github.com/shaka-project/shaka-player/pull/3476
- Fix clearing buffer when requested for already-selected variant
- https://github.com/shaka-project/shaka-player/pull/3477
- Fix hung playback on rapid seek
- https://github.com/shaka-project/shaka-player/pull/3479
- Don't show AirPlay button if unavailable
- https://github.com/shaka-project/shaka-player/issues/3471
- Fix bogus debug logs
Docs:
- Update upgrade guides
- https://github.com/shaka-project/shaka-player/issues/3487
## 3.0.13 (2021-07-14)
Bugfixes:
- Fix choosing tracks from streaming event
- https://github.com/shaka-project/shaka-player/issues/3448
- https://github.com/shaka-project/shaka-player/pull/3459
- Update Play icon after seeking from end
- https://github.com/shaka-project/shaka-player/pull/3515
- Fix DASH transition from dynamic to static
- https://github.com/shaka-project/shaka-player/pull/3497
- Fix ARIA label on replay button
- https://github.com/shaka-project/shaka-player/pull/3513
- Fix audio language switching while using AirPlay
- https://github.com/shaka-project/shaka-player/issues/3125
- https://github.com/shaka-project/shaka-player/pull/3472
- Show captions with rapid seek when ignoreTextStreamFailures is true
- https://github.com/shaka-project/shaka-player/pull/3476
- Fix clearing buffer when requested for already-selected variant
- https://github.com/shaka-project/shaka-player/pull/3477
- Fix hung playback on rapid seek
- https://github.com/shaka-project/shaka-player/pull/3479
## 3.1.1 (2021-06-17)
Bugfixes:
- Fix buffering due to re-fetch in multi-period DASH
- https://github.com/shaka-project/shaka-player/pull/3419
- https://github.com/shaka-project/shaka-player/issues/3354
- Prioritize AVERAGE-BANDWIDTH over BANDWIDTH in HLS
- https://github.com/shaka-project/shaka-player/pull/3428
- Fix EC-3 box support in DRM workaround on smart TVs
- https://github.com/shaka-project/shaka-player/pull/3427
- Fix exception in UI on devices that do not support fullscreen
- https://github.com/shaka-project/shaka-player/issues/3441
- Fix caption positioning and sizing when the container resizes
- https://github.com/shaka-project/shaka-player/pull/3426
- https://github.com/shaka-project/shaka-player/pull/3425
- https://github.com/shaka-project/shaka-player/pull/3414
- Fix exceptions thrown in content with trick-mode tracks
- https://github.com/shaka-project/shaka-player/issues/3423
- Filter unsupported H.264 streams in Xbox
- https://github.com/shaka-project/shaka-player/pull/3411
- Fix out-of-bounds exception in LL-DASH
- https://github.com/shaka-project/shaka-player/issues/3402
- https://github.com/shaka-project/shaka-player/pull/3403
- Fix failures and gaps in LL-DASH
- https://github.com/shaka-project/shaka-player/issues/3404
- https://github.com/shaka-project/shaka-player/pull/3405
- Allow muxjs to be loaded after Shaka
- https://github.com/shaka-project/shaka-player/issues/3407
- Choose the configured preferred text role at start
- https://github.com/shaka-project/shaka-player/pull/3399
- Fix STORAGE_LIMIT_REACHED error masked by DOWNLOAD_SIZE_CALLBACK_ERROR
- https://github.com/shaka-project/shaka-player/pull/3396
- Fix "details" field in shaka-ui-load-failed event
- https://github.com/shaka-project/shaka-player/issues/3388
- Ignore network changes if ABR is disabled
- https://github.com/shaka-project/shaka-player/pull/3387
- Fix ClearKey+WebM+src= playback failure
- https://github.com/shaka-project/shaka-player/issues/3366
Docs:
- Document disabling Range header requests in HLS
- https://github.com/shaka-project/shaka-player/pull/3442
- Add Angular integration link
- https://github.com/shaka-project/shaka-player/pull/3409
Demo App:
- Add MIME type and extra config to custom assets
## 3.0.12 (2021-06-17)
Bugfixes:
- Fix buffering due to re-fetch in multi-period DASH
- https://github.com/shaka-project/shaka-player/pull/3419
- https://github.com/shaka-project/shaka-player/issues/3354
- Prioritize AVERAGE-BANDWIDTH over BANDWIDTH in HLS
- https://github.com/shaka-project/shaka-player/pull/3428
- Fix EC-3 box support in DRM workaround on smart TVs
- https://github.com/shaka-project/shaka-player/pull/3427
- Fix exception in UI on devices that do not support fullscreen
- https://github.com/shaka-project/shaka-player/issues/3441
- Fix caption positioning and sizing when the container resizes
- https://github.com/shaka-project/shaka-player/pull/3426
- https://github.com/shaka-project/shaka-player/pull/3425
- https://github.com/shaka-project/shaka-player/pull/3414
- Fix exceptions thrown in content with trick-mode tracks
- https://github.com/shaka-project/shaka-player/issues/3423
- Filter unsupported H.264 streams in Xbox
- https://github.com/shaka-project/shaka-player/pull/3411
- Choose the configured preferred text role at start
- https://github.com/shaka-project/shaka-player/pull/3399
- Fix ClearKey+WebM+src= playback failure
- https://github.com/shaka-project/shaka-player/issues/3366
- Fix double-display of embedded and non-embedded captions
- https://github.com/shaka-project/shaka-player/issues/3199
Docs:
- Document disabling Range header requests in HLS
- https://github.com/shaka-project/shaka-player/pull/3442
- Add Angular integration link
- https://github.com/shaka-project/shaka-player/pull/3409
## 2.5.23 (2021-06-17)
Bugfixes:
- Prioritize AVERAGE-BANDWIDTH over BANDWIDTH in HLS
- https://github.com/shaka-project/shaka-player/pull/3428
- Fix exception in UI on devices that do not support fullscreen
- https://github.com/shaka-project/shaka-player/issues/3441
- Fix caption positioning and sizing when the container resizes
- https://github.com/shaka-project/shaka-player/pull/3426
- https://github.com/shaka-project/shaka-player/pull/3425
- https://github.com/shaka-project/shaka-player/pull/3414
- Filter unsupported H.264 streams in Xbox
- https://github.com/shaka-project/shaka-player/pull/3411
- Choose the configured preferred text role at start
- https://github.com/shaka-project/shaka-player/pull/3399
- Fix ClearKey+WebM+src= playback failure
- https://github.com/shaka-project/shaka-player/issues/3366
Docs:
- Add Angular integration link
- https://github.com/shaka-project/shaka-player/pull/3409
## 3.1.0 (2021-04-29)
New Features:
- Ads APIs are now STABLE (no longer BETA)
- MediaCapabilities support (BETA)
- https://github.com/shaka-project/shaka-player/issues/1391
- Remove support for IE11
- https://github.com/shaka-project/shaka-player/issues/2339
- Low-latency HLS (LL-HLS) and DASH (LL-DASH) support
- https://github.com/shaka-project/shaka-player/issues/1525
- Make DASH keySystems configurable
- https://github.com/shaka-project/shaka-player/pull/3276
- Make DRM sessionType configurable in advanced DRM config
- https://github.com/shaka-project/shaka-player/pull/3301
- Add Loop, PIP, Cast, AirPlay buttons to control panel
- https://github.com/shaka-project/shaka-player/issues/2676
- https://github.com/shaka-project/shaka-player/pull/3255
- Network stall detection
- https://github.com/shaka-project/shaka-player/pull/3227
- Store thumbnails for offline playback
- https://github.com/shaka-project/shaka-player/pull/3280
- Extract HDR metadata from DASH manifests
- https://github.com/shaka-project/shaka-player/pull/3226
- Make gap detection threshold configurable
- https://github.com/shaka-project/shaka-player/pull/3166
- Support WebVTT default text color and default text background color
- https://github.com/shaka-project/shaka-player/issues/3182
- https://github.com/shaka-project/shaka-player/pull/3182
- Add support for thumbnail tracks
- https://github.com/shaka-project/shaka-player/pull/3145
- Add getKeyStatuses to Player
- Parse spatial audio from manifest
- https://github.com/shaka-project/shaka-player/pull/3148
- Add support for WebVTT style blocks
- https://github.com/shaka-project/shaka-player/pull/3071
- Add SubViewer (SBV) support
- https://github.com/shaka-project/shaka-player/pull/3063
- https://github.com/shaka-project/shaka-player/pull/3266
- Add SubStation Alpha (SSA) support
- https://github.com/shaka-project/shaka-player/pull/3060
- Add downloadSizeCallback before storing offline
- https://github.com/shaka-project/shaka-player/issues/3049
- https://github.com/shaka-project/shaka-player/pull/3049
- Extract HDR metadata from HLS manifests
- https://github.com/shaka-project/shaka-player/issues/3116
- https://github.com/shaka-project/shaka-player/pull/3116
- add ignoreMaxSegmentDuration config for DASH manifest
- https://github.com/shaka-project/shaka-player/pull/3115
- Add navigator.storage.estimate polyfill
- https://github.com/shaka-project/shaka-player/issues/2900
- https://github.com/shaka-project/shaka-player/pull/3050
- Prefer unprefixed EME for Safari
- https://github.com/shaka-project/shaka-player/pull/3021
- Add config to prefer native HLS playback
- https://github.com/shaka-project/shaka-player/issues/3077
- Add LyRiCs (LRC) support
- https://github.com/shaka-project/shaka-player/pull/3036
- Add support for SMPTE namespace 2013
- https://github.com/shaka-project/shaka-player/issues/3061
- https://github.com/shaka-project/shaka-player/pull/3062
- Add support for mpegB:cicp:ChannelConfiguration
- https://github.com/shaka-project/shaka-player/pull/3057
- Config to prefer forced subtitles
- https://github.com/shaka-project/shaka-player/pull/3022
- Change default network request timeout
- https://github.com/shaka-project/shaka-player/pull/3024
- Optionally force HTTPS content URIs
- https://github.com/shaka-project/shaka-player/pull/3025
- Add parameter to probeSupport to skip DRM tests
- https://github.com/shaka-project/shaka-player/pull/3047
- Add autoLowLatencyMode config
- https://github.com/shaka-project/shaka-player/issues/1525
- https://github.com/shaka-project/shaka-player/pull/2861
- Allow apps to register a custom seek bar UI implementation
- https://github.com/shaka-project/shaka-player/issues/2924
- https://github.com/shaka-project/shaka-player/pull/2966
- Parse forced subtitles from manifest
- https://github.com/shaka-project/shaka-player/issues/2122
- https://github.com/shaka-project/shaka-player/issues/2916
- https://github.com/shaka-project/shaka-player/pull/2938
- Add addTextTrackAsync
- https://github.com/shaka-project/shaka-player/pull/2932
- Allow showing track labels in UI
- https://github.com/shaka-project/shaka-player/issues/2927
- Allow switching between mono and stereo tracks
- https://github.com/shaka-project/shaka-player/pull/2911
- Add support to side-load subtitles in src mode
- https://github.com/shaka-project/shaka-player/pull/2874
- Add SubRip (SRT) subtitle support
- https://github.com/shaka-project/shaka-player/pull/2872
- CEA-708 Decoder
- https://github.com/shaka-project/shaka-player/pull/2807
- Added completionPercent to playback stats
- Render bold/italics/underline on SimpleTextDisplayer
- https://github.com/shaka-project/shaka-player/pull/2779
- Adds VTT tag rendering for bold, italic, and underline