-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b31f17f
commit 06cc0ac
Showing
3 changed files
with
34 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
# @sub37/captions-renderer | ||
|
||
## 1.0.0 | ||
## **1.1.0** | ||
|
||
**Changes**: | ||
|
||
- Changed fallback values for `getOrigin` invokation to be percentages strings; | ||
- Added fallbacks for `getOrigin`'s `originX` and `originY` to be percentages if no unit is specified; | ||
- Changed region `height` to respect the adapter region implementation will with the new `height` property in the Region protocol, when available, and to fallback to the `lines` property; | ||
- Added new Renderer boolean property `roundRegionHeightLineFit` to let `captions-renderer` to slightly override the adapter `height` property, in order to show the next full line, if cut; | ||
- Added new css style variable **--sub37-region-area-bg-color**, to change color to the area covered by `height`. It defaults to `transparent`; | ||
- **Typescript**: exported type `CaptionsRenderer` to reference the component; | ||
- **Tests**: Improved tests structure through fixture; | ||
|
||
--- | ||
|
||
## **1.0.0** | ||
|
||
- First version released |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# @sub37/server | ||
|
||
## 1.0.0 | ||
## **1.1.0** | ||
|
||
- Added support to a new property `height` to the `Region` protocol in order to let adapters to specify an height; | ||
|
||
--- | ||
|
||
## **1.0.0** | ||
|
||
- First version released |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
# @sub37/webvtt-adapter | ||
|
||
## 1.0.0 | ||
## **1.0.3** (17 Feb 2024) | ||
|
||
### Major Changes | ||
**Changes**: | ||
|
||
- Improved Region's `regionanchor` and `viewportanchor` parsing and forced them to be provided as percentages, as specified by the standard; | ||
|
||
**Bug fix**: | ||
|
||
- Fixed wrong styles being mistakenly assigned when a wrong CSS selector was specified (#12); | ||
|
||
--- | ||
|
||
## **1.0.0** | ||
|
||
- First version released |