Update changelog & bump version
This commit is contained in:
parent
75ec1969c0
commit
0234ea7871
10
CHANGELOG.md
10
CHANGELOG.md
@ -16,6 +16,15 @@
|
|||||||
|
|
||||||
## v4.x (current major)
|
## v4.x (current major)
|
||||||
|
|
||||||
|
### v4.5.1
|
||||||
|
|
||||||
|
* Fixed the misalignment issue on netflix ... hopefully.
|
||||||
|
* 'Site settings' tab should now work in Chrome as well ([#126](https://github.com/tamius-han/ultrawidify/issues/126))
|
||||||
|
* Popup interface now refreshes properly ([#127](https://github.com/tamius-han/ultrawidify/issues/127))
|
||||||
|
* Videos should now be scaled correctly when the display is narrower than video's native aspect ratio ([#118](https://github.com/tamius-han/ultrawidify/issues/118))
|
||||||
|
* Edge users using CWS version of the extension get a very aggressive warning when trying to use the extension with Edge
|
||||||
|
|
||||||
|
|
||||||
### v4.5.0 (Current)
|
### v4.5.0 (Current)
|
||||||
|
|
||||||
* Under the hood: migrated from vue2 to vue3, because optional chaining in templates is too OP.
|
* Under the hood: migrated from vue2 to vue3, because optional chaining in templates is too OP.
|
||||||
@ -24,7 +33,6 @@
|
|||||||
* (In Firefox) When extension was placed in overflow menu, the popup was cut off. That should be fixed now. [#119](https://github.com/tamius-han/ultrawidify/issues/119)
|
* (In Firefox) When extension was placed in overflow menu, the popup was cut off. That should be fixed now. [#119](https://github.com/tamius-han/ultrawidify/issues/119)
|
||||||
* The extension will now show a notification when autodetection can't run due to DRM
|
* The extension will now show a notification when autodetection can't run due to DRM
|
||||||
* Videos on facebook and reddit no longer get shifted up and to the left for me (cropping most of the video off-screen), but I haven't been deliberately trying to fix that issue. If you experience that issue, please consider contacting me (via github or email) with a link to a problematic video.
|
* Videos on facebook and reddit no longer get shifted up and to the left for me (cropping most of the video off-screen), but I haven't been deliberately trying to fix that issue. If you experience that issue, please consider contacting me (via github or email) with a link to a problematic video.
|
||||||
* **[4.5.0.1]** Fixed the misalignment issue on netflix ...
|
|
||||||
|
|
||||||
### v4.4.10
|
### v4.4.10
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "Ultrawidify",
|
"name": "Ultrawidify",
|
||||||
"description": "Removes black bars on ultrawide videos and offers advanced options to fix aspect ratio.",
|
"description": "Removes black bars on ultrawide videos and offers advanced options to fix aspect ratio.",
|
||||||
"version": "4.5.0.1",
|
"version": "4.5.1",
|
||||||
"applications": {
|
"applications": {
|
||||||
"gecko": {
|
"gecko": {
|
||||||
"id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}"
|
"id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}"
|
||||||
|
@ -2,30 +2,20 @@
|
|||||||
<div>
|
<div>
|
||||||
<h2>What's new</h2>
|
<h2>What's new</h2>
|
||||||
<p>Full changelog for older versions <a href="https://github.com/tamius-han/ultrawidify/blob/master/CHANGELOG.md">is available here</a>.</p>
|
<p>Full changelog for older versions <a href="https://github.com/tamius-han/ultrawidify/blob/master/CHANGELOG.md">is available here</a>.</p>
|
||||||
<p class="label">4.5.0</p>
|
<p class="label">4.5.1</p>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li>Fixed the misalignment issue on netflix ... hopefully.</li>
|
||||||
<li>
|
<li>
|
||||||
Under the hood: migrated from vue2 to vue3, because optional chaining in templates is too OP.
|
'Site settings' tab should now work in Chrome as well (<a href="https://github.com/tamius-han/ultrawidify/issues/126">#126</a>)
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
(On options page, section 'Action & shortcuts') Manual aspect ratio now supports entering custom ratios using '21/9' and '2.39:1' formats (as opposed to single number, e.g. '2.39') — <a href="https://github.com/tamius-han/ultrawidify/issues/121">#121</a>.
|
Popup interface now refreshes properly (<a href="https://github.com/tamius-han/ultrawidify/issues/127">#127</a>)
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
Added config for wakanim.tv (special thanks to <a href="https://github.com/saschanaz">@saschanaz</a> for doing the legwork — <a href="https://github.com/tamius-han/ultrawidify/issues/113">#113</a>)
|
Videos should now be scaled correctly when the display is narrower than video's native aspect ratio (<a href="https://github.com/tamius-han/ultrawidify/issues/118">#118</a>)
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
(In Firefox) When extension was placed in overflow menu, the popup was cut off. That should be fixed now. (<a href="https://github.com/tamius-han/ultrawidify/issues/119">#119</a>)
|
Edge users using CWS version of the extension get a very aggressive warning when trying to use the extension with Edge
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
The extension will now show a notification when autodetection can't run due to DRM.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
Videos on facebook and reddit no longer get shifted up and to the left for me (cropping most of the video off-screen), but I haven't been
|
|
||||||
deliberately trying to fix that issue. If you experience that issue, please consider contacting me (via github or email) with a link to a
|
|
||||||
problematic video.
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<b>[4.5.0.1]</b> Fixes for netflix alignment issues.
|
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user