diff --git a/css/2012.css b/css/2012.css index dfd3fba..d99c239 100644 --- a/css/2012.css +++ b/css/2012.css @@ -618,4 +618,10 @@ background-position: -1px -524px; } -/* ################################# */ \ No newline at end of file +/* ################################# */ + +/* 3rd-party extensions */ + +.ytp-autohide .ytp-chrome-bottom #previewbar { + +} \ No newline at end of file diff --git a/html/update.html b/html/update.html index b2f02fd..f1a1d85 100644 --- a/html/update.html +++ b/html/update.html @@ -33,11 +33,7 @@

PlayerTube has been updated to

@@ -56,6 +52,14 @@

PlayerTube has been updated to

Past versions...

+
v1.7.1
+
v1.7
This update took too long to make... But I can say that this extension is now 90% stable & finished.
diff --git a/manifest.json b/manifest.json index b04ad68..3b5c6f3 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "PlayerTube", "description": "The secret ingredient for a older (and better) looking YouTube.", - "version": "1.7.1", + "version": "1.7.2", "homepage_url": "https://github.com/ktg5/PlayerTube", "background": { diff --git a/src/pt-main.js b/src/pt-main.js index 1b86ebc..331d069 100644 --- a/src/pt-main.js +++ b/src/pt-main.js @@ -51,7 +51,7 @@ setInterval(() => { } /// Fake bar heartbeat - if (userConfig.toggleFadeOut !== true || userConfig.fakeBarToggle !== false) { + if (userConfig.fakeBarToggle !== false) { if (!document.getElementsByClassName('video-stream html5-main-video')[0] || document.getElementsByClassName('video-stream html5-main-video')[0].paused == true || !document.getElementById('playertube-fake-bar')) { @@ -474,11 +474,6 @@ function extraStyles() { #previewbar { top: 1px !important; } - - .ytp-autohide #previewbar { - top: -7px !important; - transform: scaleY(0.2); - } .ytp-chrome-bottom .playerButton.ytp-button { background: none !important; @@ -756,7 +751,7 @@ function startPlayer() { // Make fake bar // No need to load the JS for fake bar here, that's at the top of this script. - if (userConfig.toggleFadeOut !== true || userConfig.fakeBarToggle !== false) { + if (userConfig.fakeBarToggle !== false) { if (!document.getElementsByClassName('video-stream html5-main-video')[0] || document.getElementsByClassName('video-stream html5-main-video')[0].paused == true || document.getElementById('playertube-fake-bar')) { return; } else {