From c48df6e9bb028371c5519257a523634b713326c2 Mon Sep 17 00:00:00 2001 From: Nikkel Mollenhauer <57323886+NikkelM@users.noreply.github.com> Date: Tue, 9 Jul 2024 14:37:17 +0100 Subject: [PATCH] Disabled news check (#314) --- CHANGELOG.md | 8 ++++++-- package-lock.json | 4 ++-- package.json | 2 +- src/background.js | 3 ++- static/manifest.json | 4 ++-- 5 files changed, 13 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 530ff670..50144547 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,13 @@ # Changelog -## v3.1.8 +## v3.1.9 +- Temporarily disabled the news feature. + + +## v3.1.8 + - The button's tooltip may now show additional information on the shuffle status. - The extension will now show that a shuffle is still running when navigating within a channel. - Fixed a bug where an active shuffle would continue in the background when navigating to a different channel. @@ -11,7 +16,6 @@ - Fixed a bug where the playlist created by the extension would sometimes not be renamed correctly. - Fixed an animation bug when ignoring shorts and shuffling a channel with many videos from a shorts page. - Fixed the shuffle button not being added to the channel page if the browser is using a new YouTube UI. - ## v3.1.7 diff --git a/package-lock.json b/package-lock.json index b72a4aea..527b6c9e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "random-youtube-video", - "version": "3.1.8", + "version": "3.1.9", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "random-youtube-video", - "version": "3.1.8", + "version": "3.1.9", "dependencies": { "@babel/runtime": "^7.18.6", "firebase": "^9.22.0" diff --git a/package.json b/package.json index fc2573b4..8bb6e569 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "random-youtube-video", - "version": "3.1.8", + "version": "3.1.9", "description": "Customize, shuffle and play random videos from any YouTube channel.", "scripts": { "dev": "concurrently \"npm run dev:chromium\" \"npm run dev:firefox\"", diff --git a/src/background.js b/src/background.js index 0ac16339..093b9fba 100644 --- a/src/background.js +++ b/src/background.js @@ -35,7 +35,8 @@ async function initExtension() { } await checkLocalStorageCapacity(); - await checkForAndShowNews(); + // TODO: Temporarily disabled due to too many read operations, need to investigate why + // await checkForAndShowNews(); } // Make sure we are not using too much local storage diff --git a/static/manifest.json b/static/manifest.json index 63532435..3196516f 100644 --- a/static/manifest.json +++ b/static/manifest.json @@ -1,8 +1,8 @@ { "name": "Random YouTube Video", "description": "Customize, shuffle and play random videos from any YouTube channel.", - "version": "3.1.8", - "version_name": "3.1.8", + "version": "3.1.9", + "version_name": "3.1.9", "manifest_version": 3, "content_scripts": [ {