From 6c424009d0427f3aeb00ce6f70e153b3668e443c Mon Sep 17 00:00:00 2001 From: inotia00 <108592928+inotia00@users.noreply.github.com> Date: Tue, 11 Jun 2024 04:14:53 +0900 Subject: [PATCH] feat(YouTube): add support version `19.20.35` --- .../youtube/utils/compatibility/Constants.kt | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/main/kotlin/app/revanced/patches/youtube/utils/compatibility/Constants.kt b/src/main/kotlin/app/revanced/patches/youtube/utils/compatibility/Constants.kt index 199a36a9f..0fc96f719 100644 --- a/src/main/kotlin/app/revanced/patches/youtube/utils/compatibility/Constants.kt +++ b/src/main/kotlin/app/revanced/patches/youtube/utils/compatibility/Constants.kt @@ -7,14 +7,13 @@ object Constants { Patch.CompatiblePackage( "com.google.android.youtube", setOf( - "18.29.38", - "18.33.40", - "18.38.44", - "18.48.39", - "19.05.36", - "19.16.39", - "19.19.39", - "19.20.34", + "18.29.38", // Latest version that supports the 'Zoomed to fill' setting. + "18.33.40", // Latest version that do not use litho components in Shorts. + "18.38.44", // Latest version with no delay in applying video quality on the server side. + "18.48.39", // Latest version that do not use Rolling Number. + "19.05.36", // Latest version with the least YouTube experimental flag. + "19.16.39", // Latest version that supports the 'Restore old seekbar thumbnails' setting. + "19.20.35", // Latest version supported by the RVX patch. ) ) )