- {{ displayTitle }}
+
+ {{ displayTitle }}
+
Date: Sun, 20 Aug 2023 21:09:39 -0400
Subject: [PATCH 8/9] Bump version number to v0.19.0
---
package.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package.json b/package.json
index 4345726ac4043..10f8bb68127cf 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "freetube",
"productName": "FreeTube",
"description": "A private YouTube client",
- "version": "0.18.0",
+ "version": "0.19.0",
"license": "AGPL-3.0-or-later",
"main": "./dist/main.js",
"private": true,
From 8c6bfaafa6dd95083f65cd2a36eb9484622d33b0 Mon Sep 17 00:00:00 2001
From: absidue <48293849+absidue@users.noreply.github.com>
Date: Mon, 21 Aug 2023 03:12:27 +0200
Subject: [PATCH 9/9] Fix playlist view on the watch page not reacting to
playlist changes (#3897)
---
.../watch-video-playlist/watch-video-playlist.js | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/src/renderer/components/watch-video-playlist/watch-video-playlist.js b/src/renderer/components/watch-video-playlist/watch-video-playlist.js
index 3bc77fedae5cc..832b4f0cef3c8 100644
--- a/src/renderer/components/watch-video-playlist/watch-video-playlist.js
+++ b/src/renderer/components/watch-video-playlist/watch-video-playlist.js
@@ -129,6 +129,15 @@ export default defineComponent({
nextTick(() => this.scrollToCurrentVideo())
}
},
+ playlistId: function (newVal, oldVal) {
+ if (oldVal !== newVal) {
+ if (!process.env.IS_ELECTRON || this.backendPreference === 'invidious') {
+ this.getPlaylistInformationInvidious()
+ } else {
+ this.getPlaylistInformationLocal()
+ }
+ }
+ }
},
mounted: function () {
const cachedPlaylist = this.$store.getters.getCachedPlaylist