diff --git a/CHANGELOG.md b/CHANGELOG.md index 1eacd99..a717400 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## v6.0 (current major) +### v6.3.0 +* Added zoom segment to in-player UI and popup. +* Fixed keyboard zoom +* Added additional zoom options. If you wonder how zoom options differ from crop, mess around and find out. +* Subdomains now inherit same settings as their parent domain by default +* Extension detects embedded content (but not always) +* Added `www.youtube-nocookie.com` to "officially supported" list + ### v6.2.5 * Popup appearance changed — UI advertisement panel was moved to the popup header diff --git a/src/csui/Popup.vue b/src/csui/Popup.vue index 909aabe..45652e4 100644 --- a/src/csui/Popup.vue +++ b/src/csui/Popup.vue @@ -274,8 +274,14 @@ export default { try { this.logger.log('info','popup', '[popup::getSite] Requesting current site ...') // CSM.port.postMessage({command: 'get-current-site'}); + this.eventBus.send( + 'probe-video', + {}, + { comms: {forwardTo: 'active'} } + ); this.eventBus.send( 'get-current-site', + {}, { comms: {forwardTo: 'active'} } diff --git a/src/csui/src/PlayerUiPanels/ChangelogPanel.vue b/src/csui/src/PlayerUiPanels/ChangelogPanel.vue index 5b19bf9..861a966 100644 --- a/src/csui/src/PlayerUiPanels/ChangelogPanel.vue +++ b/src/csui/src/PlayerUiPanels/ChangelogPanel.vue @@ -5,13 +5,15 @@

What's new

-

6.2.6

+

6.3.0

diff --git a/src/ext/lib/aard/AardDebugUi.ts b/src/ext/lib/aard/AardDebugUi.ts index dd082b1..25c89b8 100644 --- a/src/ext/lib/aard/AardDebugUi.ts +++ b/src/ext/lib/aard/AardDebugUi.ts @@ -186,7 +186,9 @@ export class AardDebugUi {
${this.generateMiniGraphBar(this.aard.timer.average)}
-
Last chg.:
${this.generateMiniGraphBar(this.aard.timer.lastChange)}
+
Last chg.:
+
+
${this.generateMiniGraphBar(this.aard.timer.lastChange)}
`; diff --git a/src/ext/lib/comms/CommsClient.ts b/src/ext/lib/comms/CommsClient.ts index 8e16dfe..1cd6bac 100644 --- a/src/ext/lib/comms/CommsClient.ts +++ b/src/ext/lib/comms/CommsClient.ts @@ -146,7 +146,7 @@ class CommsClient { } // send to server - if (!context?.borderCrossings.commsServer) { + if (!context?.borderCrossings?.commsServer) { return chrome.runtime.sendMessage(null, message, null); } }