Skip to content

Commit d733c8e

Browse files
committed
Update changelog and versions for v2.0.0-beta2
Change-Id: I474c2ff1a1a14aa2b1f1569e59e1c27326d59a7f
1 parent 7ab8970 commit d733c8e

File tree

3 files changed

+73
-2
lines changed

3 files changed

+73
-2
lines changed

CHANGELOG.md

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,74 @@
1+
## 2.0.0-beta2 (2016-05-04)
2+
3+
Restored Features from v1 Missing in v2.0.0-beta:
4+
- Track restrictions API
5+
- https://github.com/google/shaka-player/issues/326
6+
- https://github.com/google/shaka-player/issues/327
7+
- Custom controls demo for live
8+
- https://github.com/google/shaka-player/issues/322
9+
- Trick play demo
10+
- https://github.com/google/shaka-player/issues/328
11+
12+
13+
New features:
14+
- Reduced startup latency
15+
- Added player.resetConfiguration()
16+
- Added response text to HTTP errors
17+
- https://github.com/google/shaka-player/issues/319
18+
- Demo controls redesigned with material design icons
19+
- Emit an error if the wrong keys are retrieved
20+
- https://github.com/google/shaka-player/issues/301
21+
- Human-readable errors shown in demo app
22+
- Cache-friendly bandwidth estimation
23+
- https://github.com/google/shaka-player/issues/324
24+
- Improved trick play and playbackRate support
25+
- https://github.com/google/shaka-player/issues/344
26+
- Allow apps to reset ABR manager estimates
27+
- https://github.com/google/shaka-player/issues/355
28+
- Support non-zero start times for VOD
29+
- https://github.com/google/shaka-player/issues/341
30+
- https://github.com/google/shaka-player/issues/348
31+
- https://github.com/google/shaka-player/issues/357
32+
33+
34+
Bugfixes:
35+
- Fix playback of DASH with unaligned Representations
36+
- Fixed race conditions on seek
37+
- https://github.com/google/shaka-player/issues/334
38+
- Improved drift handling
39+
- https://github.com/google/shaka-player/issues/330
40+
- Fixed stack overflow in StringUtils
41+
- https://github.com/google/shaka-player/issues/335
42+
- Improved live support
43+
- https://github.com/google/shaka-player/issues/331
44+
- https://github.com/google/shaka-player/issues/339
45+
- https://github.com/google/shaka-player/issues/340
46+
- https://github.com/google/shaka-player/issues/351
47+
- Fixed player.addTextTrack
48+
- Handle CDMs which don't support the same types MSE does
49+
- https://github.com/google/shaka-player/issues/342
50+
- Fix audio-only encrypted playback
51+
- https://github.com/google/shaka-player/issues/360
52+
- Fix renaming of event properties
53+
- https://github.com/google/shaka-player/issues/361
54+
- Warn about missing clock sync elements in live manfiests
55+
- https://github.com/google/shaka-player/issues/290
56+
- Add option for default clock sync URI
57+
- https://github.com/google/shaka-player/issues/290
58+
- Fix crash in TextEngine when subs are turned off
59+
60+
61+
Docs:
62+
- Shaka v2 upgrade guide
63+
- http://shaka-player-demo.appspot.com/docs/api/tutorial-upgrade.html
64+
- Added enum values (not just names) to generated docs
65+
- https://github.com/google/shaka-player/issues/337
66+
67+
68+
Broken Compatibility compared to v2.0.0-beta:
69+
- None!
70+
71+
172
## 1.6.5 (2016-04-08)
273

374
Bugfixes:

lib/player.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ shaka.Player.prototype.destroy = function() {
163163
/**
164164
* @define {string} A version number taken from git at compile time.
165165
*/
166-
goog.define('GIT_VERSION', 'v2.0.0-beta-debug');
166+
goog.define('GIT_VERSION', 'v2.0.0-beta2-debug');
167167

168168

169169
/**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "shaka-player",
33
"description": "DASH/EME video player library",
4-
"version": "2.0.0-beta",
4+
"version": "2.0.0-beta2",
55
"homepage": "https://github.com/google/shaka-player",
66
"author": "Google",
77
"maintainers": [

0 commit comments

Comments
 (0)