Releases: rdkcentral/firebolt-apis
Releases · rdkcentral/firebolt-apis
v0.9.0
v0.8.1
Release Notes
0.8.1
- Added Device.version().firmware to surface the underlying hardware firmware version
- Added Device.version().api to surface the latest Firebolt API supported by this device
- Deprecated Device.version().os which does not have a formal specification. Use
firmware
instead.
v0.8.0
v0.7.0
0.7.0
- Removed all
bigint
types from TypeScript declarations, in favor ofnumber
, since bigint is not widely supported across browsers. This changes impacts:- Device.screenResolution
- Device.videoResolution
- Discovery.purchasedContent
- Metrics.mediaProgress
- Metrics.mediaSeeking
- Metrics.mediaSeeked
- Parameters.initialization
To upgrade to 0.7.0 simply change the type of any Firebolt Promise resolutions from bigint
to number
, e.g.:
const res:[bigint, bigint] = await Device.screenResolution()
Should become:
const res:[number, number] = await Device.screenResolution()