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 13, 2025
2 parents 4405786 + 29664a8 commit 9e1b8ce
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Chore: Pre-commit hook for linting TypeScript file changes

## [3.81.0] - 2025-01-10

### Fixed
- Positioning of CEA-608 caption cues when multiple cues are displayed on the same line

## [3.80.0] - 2025-01-08

### Fixed
Expand Down Expand Up @@ -1052,6 +1057,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.81.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.80.0...v3.81.0
[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
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.80.0",
"version": "3.81.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 @@ -26,6 +26,7 @@
.#{$prefix}-ui-subtitle-label {
display: inline-block;
font-family: 'Courier New', Courier, 'Nimbus Mono L', 'Cutive Mono', monospace;
position: absolute;
text-transform: uppercase;
vertical-align: bottom;

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 @@ -325,7 +325,7 @@ export class SubtitleOverlay extends Container<ContainerConfig> {
}

label.getDomElement().css({
'margin-left': `${event.position.column * SubtitleOverlay.CEA608_COLUMN_OFFSET}%`,
'left': `${event.position.column * SubtitleOverlay.CEA608_COLUMN_OFFSET}%`,
'font-size': `${fontSize}px`,
'letter-spacing': `${fontLetterSpacing}px`,
});
Expand Down

0 comments on commit 9e1b8ce

Please sign in to comment.