diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ea4d31..5ebd699 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ QoL improvements for me: ### 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. ### v4.4.2 diff --git a/src/ext/conf/ExtConfPatches.js b/src/ext/conf/ExtConfPatches.js index 5b017a8..3f27ac2 100644 --- a/src/ext/conf/ExtConfPatches.js +++ b/src/ext/conf/ExtConfPatches.js @@ -1,6 +1,8 @@ // How to use: // version: {ExtensionConf object, but only properties that get overwritten} 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 = [ { @@ -300,7 +302,7 @@ const ExtensionConfPatch = [ } } }, { - forVersion: '4.4.3', + forVersion: '4.4.3.1', sites: { "www.disneyplus.com": { mode: ExtensionMode.Enabled, diff --git a/src/ext/lib/Settings.js b/src/ext/lib/Settings.js index 3b23f3d..47b091b 100644 --- a/src/ext/lib/Settings.js +++ b/src/ext/lib/Settings.js @@ -310,7 +310,7 @@ class Settings { extensionConf.version = this.version; } - fixSitesSettings(sites); + this.fixSitesSettings(extensionConf.sites); this.logger.log('info', 'settings', "[Settings::set] setting new settings:", extensionConf) diff --git a/src/manifest.json b/src/manifest.json index 0f59055..ddfe696 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 2, "name": "Ultrawidify", "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": { "gecko": { "id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}" diff --git a/src/popup/panels/WhatsNewPanel.vue b/src/popup/panels/WhatsNewPanel.vue index 6944777..b034216 100644 --- a/src/popup/panels/WhatsNewPanel.vue +++ b/src/popup/panels/WhatsNewPanel.vue @@ -2,7 +2,7 @@
Full changelog for older versions is available here.
-4.4.3
+4.4.3.1
This update mostly attempts to fix disney+ (again). Consider commenting on this issue if issues with disney+ persist.