|
1 | 1 | # Change log |
2 | 2 |
|
| 3 | +## 2.4.0 (release date 28.12.2019) |
| 4 | + |
| 5 | +Identical to `2.0.0-rc.2`, changes since previous stable version (`2.3.0`) are listed. |
| 6 | + |
| 7 | +This release introduces `IStatefulVideo` and tis Abstract and HTML5 implementations. Stateful Video has a much stricter model that leverages more stability, standardisation and error handling. Additionally it supports DRM playback. |
| 8 | +Stateful Video is meant to replace current IVideo, but at this point both are available and the latte is not even deprecated. |
| 9 | +Migrating to Stateful Video will require a large effort as its model and APIs are vastly incompatible with previous IVideo. |
| 10 | + |
| 11 | +For more details on Stateful Video see [docs/video](./docs/video/). |
| 12 | + |
| 13 | +Other changes: |
| 14 | + |
| 15 | +* `PrincipalAxisNavigation` is now used as first spatial navigation strategy of choice |
| 16 | +* `EventPublisher` refactored, added `runAfterCurrentEvent` method, improved test coverage |
| 17 | +* QHD resolution support removed, 4K and 8K added |
| 18 | +* `Info.osdResolutionType` deprecated in favor of `getOSDResolution` and `getPanelResolution` |
| 19 | +* `Viewport.getFullScreen` deprecated in favor of `isFullScreen` |
| 20 | +* `AbstractStatefulVideo` and `AbstracViewport` constructors both now accept panel and app resolutions |
| 21 | +* `zb/http` `decodeParams` now returns properly empty object if query string is empty as opposed to object with empty keys |
| 22 | + |
| 23 | +## 2.4.0-rc.2 (release date 28.12.2019) |
| 24 | + |
| 25 | +### Framework |
| 26 | +* Ensure no changes in html5 engine or Video happen once Video entered `ERROR` state |
| 27 | +* `EVENT_ERROR` now tries to make a better message |
| 28 | + |
| 29 | +### Tools |
| 30 | +* Fixed issue when errors occurred while loading custom configs could be consumed and not reported |
| 31 | + |
| 32 | +## 2.4.0-rc.1 (release date 27.12.2019) |
| 33 | + |
| 34 | +### Framework |
| 35 | +* Aborting transition in `StateMachine` now restores it to previous state |
| 36 | + |
| 37 | +### Tools |
| 38 | +* ESLint, its configs and plugins updated |
| 39 | +* Fix polyfills not being included in build |
| 40 | +* Workaround for GCC issue that prevents object destructuring from working without native `Object.assign` |
| 41 | + |
| 42 | +## 2.4.0-alpha.6 (release date 19.12.2019) |
| 43 | + |
| 44 | +### Framework |
| 45 | +* `PrincipalAxisNavigation` is now used as first spatial navigation strategy of choice |
| 46 | +* Improved stability of `StatefulVideo`, especially when destroying it |
| 47 | +* `EVENT_STATE_EXIT` now happens before asynchronous transitions. This makes `getState` return `null` in between states. `getPendingTransitions` should be used in this occasions. |
| 48 | +* `EventPublisher` refactored, added `runAfterCurrentEvent` method, improved test coverage |
| 49 | + |
| 50 | +## 2.4.0-alpha.5 (release date 16.12.2019) |
| 51 | +### Framework |
| 52 | +* Ensure `getUrl` always returns url in LOADING state |
| 53 | +* Refactor Viewport to always accept application coordinates |
| 54 | +* `Device.createStatefulVideo` no longer requires Rect parameter |
| 55 | +* QHD resolution removed support, 4K and 8K added |
| 56 | +* `AbstractStatefulVideo` and `AbstracViewport` constructors both now accept panel and app resolutions |
| 57 | +* `Info.osdResolutionType` deprecated in favor of `getOSDResolution` and `getPanelResolution` |
| 58 | +* `Viewport.getFullScreen` deprecated in favor of `isFullScreen` |
| 59 | + |
| 60 | +## 2.4.0-alpha.4 (release date 12.12.2019) |
| 61 | +### Framework |
| 62 | +* Added `PrepareOption` to support 4K and 8K video. |
| 63 | +* Added `Device.isUHD8KSupported`. |
| 64 | +* Fixed StatefulVideo positioning in letterbox mode. |
| 65 | + |
| 66 | +## 2.4.0-alpha.3 (release date 05.12.2019) |
| 67 | + |
| 68 | +### Framework |
| 69 | +* VerimatrixClient added, support VCAS. |
| 70 | + |
| 71 | +## 2.4.0-alpha.2 (release date 02.12.2019) |
| 72 | + |
| 73 | +### Framework |
| 74 | +* DRM support was added. See [drm.md](./docs/video/drm.md) for more details. |
| 75 | +* new `IStatefulVideo` methods: static `isDRMSupported`, static `canHandleMultiDRM`, `attachDRM`, `detachDRM`. |
| 76 | +* new interfaces and classes: `IDRMClient`, `AbstractDRMClient`, `PlayReadyClient`. |
| 77 | +* `PrepareOption.FORMAT` was renamed to `PrepareOption.TYPE` and now accepts mime-type. `MediaType` enum added with common mime types. |
| 78 | + |
| 79 | +## 2.4.0-alpha.1 (release date 19.11.2019) |
| 80 | + |
| 81 | +Unstable channel release. |
| 82 | + |
| 83 | +### Framework |
| 84 | +* `IStatefulVideo`, `AbstractStatefulVideo` and `StatefulHtml5Video` classes and `Device.createStatefulVideo` were added. This a new video interface expected to eventually replace `IVideo`, in foreseeable future however they will coexist. It's much more strict and standardized. See [](./docs/video) |
| 85 | +* `zb/http` `decodeParams` now returns properly empty object if query string is empty as opposed to object with empty keys. |
| 86 | + |
3 | 87 | ## 2.3.0 (release date 02.10.2019) |
4 | 88 |
|
5 | 89 | ### Tools |
|
0 commit comments