From 90fdfe1a2cf9136544b914e25a6d47a44dec6eb7 Mon Sep 17 00:00:00 2001 From: Tamius Han Date: Mon, 16 Jan 2017 00:13:11 +0100 Subject: [PATCH] Updated README --- README.md | 11 +++++++++-- js/uw.js | 6 +++--- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e9cff22..e4a5356 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,14 @@ At the moment, I'm not aware of anything that this extension advertises not work ## Changelog -###v1.1.0 (waiting for approval on AMO) +###v1.1.1 (waiting for approval) + +* Fixed zooming issue on netflix +* Ultrawidify shortcuts > youtube/netflix shortcuts +* Fixed 'settings' page +* Fixed 'settings' (wrench button) popup on youtube (it was broken by one of the previous updates) + +###v1.1.0 (latest version on AMO) * Introduced Netflix support. @@ -87,7 +94,7 @@ Furthermore, triggering UI re-initialisation on onUpdated events turned out to n This is why Netflix uses another function that manually checks whether the player bar is present. Ideally that check happens every tenth of a second, but Firefox may be limiting that to one per second. -###v1.0.2 (latest version on AMO) +###v1.0.2 The 'extension sometimes not working' bug was fixed (by having extension try to setup every time a page got updated), but the fix had some problems. Namely, the extension would re-initiate (complete with re-adding the entire UI) itself very _very_ often. diff --git a/js/uw.js b/js/uw.js index 38cece5..0d766e8 100644 --- a/js/uw.js +++ b/js/uw.js @@ -522,9 +522,9 @@ function addCtlButtons(recursion_depth){ return false; } var button_def = []; -// if(page_url.indexOf("netflix.com") != -1) -// button_def = [ "fitw", "fith", "reset", "zoom", "uzoom", "settings" ]; // No settings button on netflix until further notice -// else + if(page_url.indexOf("netflix.com") != -1) + button_def = [ "fitw", "fith", "reset", "zoom", "uzoom", "settings" ]; // No settings button on netflix until further notice + else button_def = [ "fitw", "fith", "reset", "zoom", "uzoom", "settings" ]; if(debugmsg)