Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.9.3 #82

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ sidebar_custom_props: { 'icon': '📰' }
> - 🏠 Internal
> - 💅 Polish

## v1.9.3 (2024-12-03)

- No changes

## v1.9.2 (2024-11-20)

- 🐛 Fixed live UI not showing for Millicast streams. ([#79](https://github.com/THEOplayer/web-ui/pull/79))
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theoplayer/web-ui",
"version": "1.9.2",
"version": "1.9.3",
"description": "UI component library for the THEOplayer Web SDK",
"main": "dist/THEOplayerUI.js",
"module": "dist/THEOplayerUI.mjs",
Expand Down
5 changes: 5 additions & 0 deletions react/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ sidebar_custom_props: { 'icon': '📰' }
> - 🏠 Internal
> - 💅 Polish

## v1.9.3 (2024-12-03)

- 🚀 Added support for MBR Millicast streams. ([#81](https://github.com/THEOplayer/web-ui/pull/81))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hang on, this is in the React changelog. Woops. 🤦‍♂️

- 🏠 See changes to [Open Video UI for Web v1.9.3](https://github.com/THEOplayer/web-ui/blob/v1.9.3/CHANGELOG.md)

## v1.9.2 (2024-11-20)

- 🏠 See changes to [Open Video UI for Web v1.9.2](https://github.com/THEOplayer/web-ui/blob/v1.9.2/CHANGELOG.md)
Expand Down
4 changes: 2 additions & 2 deletions react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theoplayer/react-ui",
"version": "1.9.2",
"version": "1.9.3",
"description": "React component library for the THEOplayer Web SDK",
"main": "dist/THEOplayerReactUI.js",
"module": "dist/THEOplayerReactUI.mjs",
Expand Down Expand Up @@ -52,7 +52,7 @@
},
"dependencies": {
"@lit/react": "^1.0.3",
"@theoplayer/web-ui": "^1.9.2"
"@theoplayer/web-ui": "^1.9.3"
},
"peerDependencies": {
"@types/react": "^16.3.0 || ^17 || ^18",
Expand Down
2 changes: 2 additions & 0 deletions src/components/QualityRadioGroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ export class QualityRadioGroup extends StateReceiverMixin(HTMLElement, ['player'
if (this._track === track) {
return;
}
this._track?.removeEventListener('update', this._update);
this._track = track;
this._track?.addEventListener('update', this._update);
this._update();
};

Expand Down
Loading