diff --git a/CHANGELOG.md b/CHANGELOG.md index 080e1ce..6ab1b25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ QoL improvements for me: * Reworked logging * Started using mutation observers to watch for changes in player size as well. Since mutation observers aren't entirely reliable, old way of doing things is still somewhat present as a backup way, but runs less frequently. * Implemented/improved/fixed settings patching +* **[4.3.0.1]** Removed some console.logs that I missed the first time around. ### v4.2.4 / 4.2.4.x diff --git a/src/ext/lib/video-data/PlayerData.js b/src/ext/lib/video-data/PlayerData.js index bf34102..b9f87bb 100644 --- a/src/ext/lib/video-data/PlayerData.js +++ b/src/ext/lib/video-data/PlayerData.js @@ -117,9 +117,7 @@ class PlayerData { } async legacyChangeDetection() { - console.log("starting legacy cd") while (!this.halted) { - console.log("loop") await this.sleep(1000); try { if (this.checkPlayerSizeChange()) { @@ -129,7 +127,6 @@ class PlayerData { console.error('[playerdata::legacycd] this message is pretty high on the list of messages you shouldnt see', e); } } - console.log("HALTED - STOPPING CHANGE DETECTION FOR", this.element) } stopChangeDetection(){ diff --git a/src/ext/lib/video-data/VideoData.js b/src/ext/lib/video-data/VideoData.js index 5a90df1..d98b9b5 100644 --- a/src/ext/lib/video-data/VideoData.js +++ b/src/ext/lib/video-data/VideoData.js @@ -112,12 +112,10 @@ class VideoData { // validate if current video still exists. If not, we destroy current object try { if (! document.body.contains(this.video)) { - console.log("this video is having a bit of a hiatus:", this.video) this.destroy(); return; } } catch (e) { - console.log("e", e) } // THIS BREAKS PANNING const cs = window.getComputedStyle(this.video); diff --git a/src/manifest.json b/src/manifest.json index 279bf02..34705b8 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.3.0", + "version": "4.3.0.1", "applications": { "gecko": { "id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}" diff --git a/src/popup/panels/WhatsNewPanel.vue b/src/popup/panels/WhatsNewPanel.vue index b64b510..ee14d83 100644 --- a/src/popup/panels/WhatsNewPanel.vue +++ b/src/popup/panels/WhatsNewPanel.vue @@ -11,6 +11,7 @@
I'm also laying ground for some features that will make my life easier: