diff --git a/CHANGELOG.md b/CHANGELOG.md index 265f9a151..6cbf21f71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## 0.79.0 (2024-05-02) + + +### Features + +* **FEC-13728:** Add 'MiniAudioPreset handling ([#877](https://github.com/kaltura/playkit-js-ui/issues/877)) ([da9bbc3](https://github.com/kaltura/playkit-js-ui/commit/da9bbc3)) + + + ### 0.78.4 (2024-04-09) diff --git a/package.json b/package.json index aa7f5b524..add548587 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@playkit-js/playkit-js-ui", - "version": "0.78.4", + "version": "0.79.0", "description": "", "keywords": [ "kaltura", diff --git a/src/components/captions-menu/captions-menu.tsx b/src/components/captions-menu/captions-menu.tsx index 00ac491c2..7bde5c866 100644 --- a/src/components/captions-menu/captions-menu.tsx +++ b/src/components/captions-menu/captions-menu.tsx @@ -76,6 +76,10 @@ class CaptionsMenu extends Component { active: t.active, value: t })) + .map(t => ({ + ...t, + label: t.label.charAt(0).toUpperCase() + t.label.slice(1) + })) .sort((a, b) => (a.label > b.label || a.label === 'Off' ? 1 : -1)); if (props.showAdvancedCaptionsMenu) {