Merge branch 'HEAD' into stable
This commit is contained in:
commit
90c1ba0b6c
@ -14,7 +14,7 @@ QoL improvements for me:
|
|||||||
|
|
||||||
### v4.4.3
|
### v4.4.3
|
||||||
|
|
||||||
* Fixed conf patch for disney+ (hopefully)
|
* Fixed conf patch for disney+ (hopefully) (v4.4.3.1: but for real)
|
||||||
* `Settings.save()` adds missing values to site config when saving extension configuration.
|
* `Settings.save()` adds missing values to site config when saving extension configuration.
|
||||||
|
|
||||||
### v4.4.2
|
### v4.4.2
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
// How to use:
|
// How to use:
|
||||||
// version: {ExtensionConf object, but only properties that get overwritten}
|
// version: {ExtensionConf object, but only properties that get overwritten}
|
||||||
import Stretch from '../../common/enums/stretch.enum';
|
import Stretch from '../../common/enums/stretch.enum';
|
||||||
|
import ExtensionMode from '../../common/enums/extension-mode.enum';
|
||||||
|
import VideoAlignment from '../../common/enums/video-alignment.enum';
|
||||||
|
|
||||||
const ExtensionConfPatch = [
|
const ExtensionConfPatch = [
|
||||||
{
|
{
|
||||||
@ -300,7 +302,7 @@ const ExtensionConfPatch = [
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
forVersion: '4.4.3',
|
forVersion: '4.4.3.1',
|
||||||
sites: {
|
sites: {
|
||||||
"www.disneyplus.com": {
|
"www.disneyplus.com": {
|
||||||
mode: ExtensionMode.Enabled,
|
mode: ExtensionMode.Enabled,
|
||||||
|
@ -310,7 +310,7 @@ class Settings {
|
|||||||
extensionConf.version = this.version;
|
extensionConf.version = this.version;
|
||||||
}
|
}
|
||||||
|
|
||||||
fixSitesSettings(sites);
|
this.fixSitesSettings(extensionConf.sites);
|
||||||
|
|
||||||
this.logger.log('info', 'settings', "[Settings::set] setting new settings:", extensionConf)
|
this.logger.log('info', 'settings', "[Settings::set] setting new settings:", extensionConf)
|
||||||
|
|
||||||
|
@ -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.4.3",
|
"version": "4.4.3.1",
|
||||||
"applications": {
|
"applications": {
|
||||||
"gecko": {
|
"gecko": {
|
||||||
"id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}"
|
"id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}"
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<div>
|
<div>
|
||||||
<h2>What's new</h2>
|
<h2>What's new</h2>
|
||||||
<p>Full changelog for older versions <a href="https://github.com/xternal7/ultrawidify/blob/master/CHANGELOG.md">is available here</a>.</p>
|
<p>Full changelog for older versions <a href="https://github.com/xternal7/ultrawidify/blob/master/CHANGELOG.md">is available here</a>.</p>
|
||||||
<p class="label">4.4.3</p>
|
<p class="label">4.4.3.1</p>
|
||||||
This update mostly attempts to fix disney+ (again). Consider commenting <a href="https://github.com/xternal7/ultrawidify/issues/84">on this issue</a> if issues with disney+ persist.
|
This update mostly attempts to fix disney+ (again). Consider commenting <a href="https://github.com/xternal7/ultrawidify/issues/84">on this issue</a> if issues with disney+ persist.
|
||||||
<ul>
|
<ul>
|
||||||
<li>Fixed conf patch for disney+ (hopefully)</li>
|
<li>Fixed conf patch for disney+ (hopefully)</li>
|
||||||
|
Loading…
Reference in New Issue
Block a user