From 128441e78bc0d096c3fc2f57782ab90c39c3ae4b Mon Sep 17 00:00:00 2001 From: LisoUseInAIKyrios <118716522+LisoUseInAIKyrios@users.noreply.github.com> Date: Sun, 16 Feb 2025 18:31:52 +0200 Subject: [PATCH] feat(YouTube Music): Support version `8.05.51` --- .../kotlin/app/revanced/patches/music/ad/video/HideVideoAds.kt | 2 +- .../music/audio/exclusiveaudio/EnableExclusiveAudioPlayback.kt | 2 +- .../music/interaction/permanentrepeat/PermanentRepeatPatch.kt | 2 +- .../patches/music/layout/compactheader/HideCategoryBar.kt | 2 +- .../patches/music/layout/premium/HideGetPremiumPatch.kt | 2 +- .../music/layout/upgradebutton/RemoveUpgradeButtonPatch.kt | 2 +- .../music/misc/androidauto/BypassCertificateChecksPatch.kt | 2 +- .../music/misc/backgroundplayback/BackgroundPlaybackPatch.kt | 2 +- .../app/revanced/patches/music/misc/spoof/SpoofClientPatch.kt | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/patches/src/main/kotlin/app/revanced/patches/music/ad/video/HideVideoAds.kt b/patches/src/main/kotlin/app/revanced/patches/music/ad/video/HideVideoAds.kt index 5e8a4376d..ed4b0ead2 100644 --- a/patches/src/main/kotlin/app/revanced/patches/music/ad/video/HideVideoAds.kt +++ b/patches/src/main/kotlin/app/revanced/patches/music/ad/video/HideVideoAds.kt @@ -11,7 +11,7 @@ val hideVideoAdsPatch = bytecodePatch( compatibleWith( "com.google.android.apps.youtube.music"( "7.16.53", - "8.05.50" + "8.05.51" ) ) diff --git a/patches/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/EnableExclusiveAudioPlayback.kt b/patches/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/EnableExclusiveAudioPlayback.kt index f79c1a45e..765bee867 100644 --- a/patches/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/EnableExclusiveAudioPlayback.kt +++ b/patches/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/EnableExclusiveAudioPlayback.kt @@ -11,7 +11,7 @@ val enableExclusiveAudioPlaybackPatch = bytecodePatch( compatibleWith( "com.google.android.apps.youtube.music"( "7.16.53", - "8.05.50" + "8.05.51" ) ) diff --git a/patches/src/main/kotlin/app/revanced/patches/music/interaction/permanentrepeat/PermanentRepeatPatch.kt b/patches/src/main/kotlin/app/revanced/patches/music/interaction/permanentrepeat/PermanentRepeatPatch.kt index 969acb7d1..89178d6ae 100644 --- a/patches/src/main/kotlin/app/revanced/patches/music/interaction/permanentrepeat/PermanentRepeatPatch.kt +++ b/patches/src/main/kotlin/app/revanced/patches/music/interaction/permanentrepeat/PermanentRepeatPatch.kt @@ -14,7 +14,7 @@ val permanentRepeatPatch = bytecodePatch( compatibleWith( "com.google.android.apps.youtube.music"( "7.16.53", - "8.05.50" + "8.05.51" ) ) diff --git a/patches/src/main/kotlin/app/revanced/patches/music/layout/compactheader/HideCategoryBar.kt b/patches/src/main/kotlin/app/revanced/patches/music/layout/compactheader/HideCategoryBar.kt index 31e04d66f..8c5ed8139 100644 --- a/patches/src/main/kotlin/app/revanced/patches/music/layout/compactheader/HideCategoryBar.kt +++ b/patches/src/main/kotlin/app/revanced/patches/music/layout/compactheader/HideCategoryBar.kt @@ -14,7 +14,7 @@ val hideCategoryBar = bytecodePatch( compatibleWith( "com.google.android.apps.youtube.music"( "7.16.53", - "8.05.50" + "8.05.51" ) ) diff --git a/patches/src/main/kotlin/app/revanced/patches/music/layout/premium/HideGetPremiumPatch.kt b/patches/src/main/kotlin/app/revanced/patches/music/layout/premium/HideGetPremiumPatch.kt index 2ad41c47e..e45a90426 100644 --- a/patches/src/main/kotlin/app/revanced/patches/music/layout/premium/HideGetPremiumPatch.kt +++ b/patches/src/main/kotlin/app/revanced/patches/music/layout/premium/HideGetPremiumPatch.kt @@ -14,7 +14,7 @@ val hideGetPremiumPatch = bytecodePatch( compatibleWith( "com.google.android.apps.youtube.music"( "7.16.53", - "8.05.50" + "8.05.51" ) ) diff --git a/patches/src/main/kotlin/app/revanced/patches/music/layout/upgradebutton/RemoveUpgradeButtonPatch.kt b/patches/src/main/kotlin/app/revanced/patches/music/layout/upgradebutton/RemoveUpgradeButtonPatch.kt index 7409bb57e..12b81b9a0 100644 --- a/patches/src/main/kotlin/app/revanced/patches/music/layout/upgradebutton/RemoveUpgradeButtonPatch.kt +++ b/patches/src/main/kotlin/app/revanced/patches/music/layout/upgradebutton/RemoveUpgradeButtonPatch.kt @@ -21,7 +21,7 @@ val removeUpgradeButtonPatch = bytecodePatch( compatibleWith( "com.google.android.apps.youtube.music"( "7.16.53", - "8.05.50" + "8.05.51" ) ) diff --git a/patches/src/main/kotlin/app/revanced/patches/music/misc/androidauto/BypassCertificateChecksPatch.kt b/patches/src/main/kotlin/app/revanced/patches/music/misc/androidauto/BypassCertificateChecksPatch.kt index 0b627a588..f4587acc7 100644 --- a/patches/src/main/kotlin/app/revanced/patches/music/misc/androidauto/BypassCertificateChecksPatch.kt +++ b/patches/src/main/kotlin/app/revanced/patches/music/misc/androidauto/BypassCertificateChecksPatch.kt @@ -11,7 +11,7 @@ val bypassCertificateChecksPatch = bytecodePatch( compatibleWith( "com.google.android.apps.youtube.music"( "7.16.53", - "8.05.50" + "8.05.51" ) ) diff --git a/patches/src/main/kotlin/app/revanced/patches/music/misc/backgroundplayback/BackgroundPlaybackPatch.kt b/patches/src/main/kotlin/app/revanced/patches/music/misc/backgroundplayback/BackgroundPlaybackPatch.kt index 2ddcd2dcc..b2b0674d5 100644 --- a/patches/src/main/kotlin/app/revanced/patches/music/misc/backgroundplayback/BackgroundPlaybackPatch.kt +++ b/patches/src/main/kotlin/app/revanced/patches/music/misc/backgroundplayback/BackgroundPlaybackPatch.kt @@ -11,7 +11,7 @@ val backgroundPlaybackPatch = bytecodePatch( compatibleWith( "com.google.android.apps.youtube.music"( "7.16.53", - "8.05.50" + "8.05.51" ) ) diff --git a/patches/src/main/kotlin/app/revanced/patches/music/misc/spoof/SpoofClientPatch.kt b/patches/src/main/kotlin/app/revanced/patches/music/misc/spoof/SpoofClientPatch.kt index d184d2c56..88ab2ceb8 100644 --- a/patches/src/main/kotlin/app/revanced/patches/music/misc/spoof/SpoofClientPatch.kt +++ b/patches/src/main/kotlin/app/revanced/patches/music/misc/spoof/SpoofClientPatch.kt @@ -28,7 +28,7 @@ val spoofClientPatch = bytecodePatch( compatibleWith( "com.google.android.apps.youtube.music"( "7.16.53", - "8.05.50" + "8.05.51" ) )