Skip to content

Commit

Permalink
Merge branch 'develop' into feature/add-lint-hook
Browse files Browse the repository at this point in the history
  • Loading branch information
felix-hoc authored Jan 8, 2025
2 parents f870537 + 7be75f3 commit 4405786
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Chore: Pre-commit hook for linting TypeScript file changes

## [3.80.0] - 2025-01-08

### Fixed
- Unexpected styling for the initially displayed cue when enabling CEA-608 captions
- Vertical alignment of CEA-608 captions on small player sizes

## [3.79.0] - 2025-01-08

### Fixed
Expand Down Expand Up @@ -1046,6 +1052,7 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
## 1.0.0 (2017-02-03)
- First release

[3.80.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.79.0...v3.80.0
[3.79.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.78.0...v3.79.0
[3.78.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.77.0...v3.78.0
[3.77.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.76.0...v3.77.0
Expand Down
4 changes: 2 additions & 2 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": "bitmovin-player-ui",
"version": "3.79.0",
"version": "3.80.0",
"description": "Bitmovin Player UI Framework",
"main": "./dist/js/framework/main.js",
"types": "./dist/js/framework/main.d.ts",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
display: inline-block;
font-family: 'Courier New', Courier, 'Nimbus Mono L', 'Cutive Mono', monospace;
text-transform: uppercase;
vertical-align: bottom;

// sass-lint:disable force-pseudo-nesting nesting-depth
&:nth-child(1n-1)::after {
Expand Down
2 changes: 1 addition & 1 deletion src/ts/components/subtitleoverlay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ export class SubtitleOverlay extends Container<ContainerConfig> {
});

player.on(player.exports.PlayerEvent.SourceUnloaded, reset);
player.on(player.exports.PlayerEvent.SubtitleEnabled, reset);
player.on(player.exports.PlayerEvent.SubtitleEnable, reset);
player.on(player.exports.PlayerEvent.SubtitleDisabled, reset);
}

Expand Down

0 comments on commit 4405786

Please sign in to comment.