Skip to content

Commit 01c0f1b

Browse files
feat(YouTube Music): Support version 8.10.52 (#5941)
1 parent 4178e8a commit 01c0f1b

File tree

15 files changed

+26
-142
lines changed

15 files changed

+26
-142
lines changed

extensions/music/src/main/java/app/revanced/extension/music/patches/HideUpgradeButtonPatch.java

Lines changed: 0 additions & 14 deletions
This file was deleted.

extensions/music/src/main/java/app/revanced/extension/music/settings/Settings.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ public class Settings extends BaseSettings {
1515
// Ads
1616
public static final BooleanSetting HIDE_VIDEO_ADS = new BooleanSetting("revanced_music_hide_video_ads", TRUE, true);
1717
public static final BooleanSetting HIDE_GET_PREMIUM_LABEL = new BooleanSetting("revanced_music_hide_get_premium_label", TRUE, true);
18-
public static final BooleanSetting HIDE_UPGRADE_BUTTON = new BooleanSetting("revanced_music_hide_upgrade_button", TRUE, true);
1918

2019
// General
2120
public static final BooleanSetting HIDE_CAST_BUTTON = new BooleanSetting("revanced_music_hide_cast_button", TRUE, false);

patches/src/main/kotlin/app/revanced/patches/music/ad/video/HideVideoAds.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ val hideVideoAdsPatch = bytecodePatch(
2424

2525
compatibleWith(
2626
"com.google.android.apps.youtube.music"(
27-
"7.29.52"
27+
"7.29.52",
28+
"8.10.52"
2829
)
2930
)
3031

patches/src/main/kotlin/app/revanced/patches/music/audio/exclusiveaudio/EnableExclusiveAudioPlayback.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ val enableExclusiveAudioPlaybackPatch = bytecodePatch(
1717

1818
compatibleWith(
1919
"com.google.android.apps.youtube.music"(
20-
"7.29.52"
20+
"7.29.52",
21+
"8.10.52"
2122
)
2223
)
2324

patches/src/main/kotlin/app/revanced/patches/music/interaction/permanentrepeat/PermanentRepeatPatch.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ val permanentRepeatPatch = bytecodePatch(
2727

2828
compatibleWith(
2929
"com.google.android.apps.youtube.music"(
30-
"7.29.52"
30+
"7.29.52",
31+
"8.10.52"
3132
)
3233
)
3334

patches/src/main/kotlin/app/revanced/patches/music/interaction/permanentshuffle/PermanentShufflePatch.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ val permanentShufflePatch = bytecodePatch(
1111
) {
1212
compatibleWith(
1313
"com.google.android.apps.youtube.music"(
14-
"7.29.52"
14+
"7.29.52",
15+
"8.10.52"
1516
)
1617
)
1718

patches/src/main/kotlin/app/revanced/patches/music/layout/castbutton/HideCastButton.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ val hideCastButton = bytecodePatch(
3333

3434
compatibleWith(
3535
"com.google.android.apps.youtube.music"(
36-
"7.29.52"
36+
"7.29.52",
37+
"8.10.52"
3738
)
3839
)
3940

patches/src/main/kotlin/app/revanced/patches/music/layout/compactheader/HideCategoryBar.kt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package app.revanced.patches.music.layout.compactheader
22

3-
import app.revanced.patcher.extensions.InstructionExtensions.addInstructions
43
import app.revanced.patcher.extensions.InstructionExtensions.addInstructionsWithLabels
54
import app.revanced.patcher.extensions.InstructionExtensions.getInstruction
65
import app.revanced.patcher.patch.bytecodePatch
@@ -10,7 +9,6 @@ import app.revanced.patches.music.misc.extension.sharedExtensionPatch
109
import app.revanced.patches.music.misc.settings.PreferenceScreen
1110
import app.revanced.patches.music.misc.settings.settingsPatch
1211
import app.revanced.patches.shared.misc.settings.preference.SwitchPreference
13-
import app.revanced.util.addInstructionsAtControlFlowLabel
1412
import app.revanced.util.findFreeRegister
1513
import com.android.tools.smali.dexlib2.iface.instruction.OneRegisterInstruction
1614

@@ -29,7 +27,8 @@ val hideCategoryBar = bytecodePatch(
2927

3028
compatibleWith(
3129
"com.google.android.apps.youtube.music"(
32-
"7.29.52"
30+
"7.29.52",
31+
"8.10.52"
3332
)
3433
)
3534

patches/src/main/kotlin/app/revanced/patches/music/layout/navigationbar/NavigationBarPatch.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ val navigationBarPatch = bytecodePatch(
4040

4141
compatibleWith(
4242
"com.google.android.apps.youtube.music"(
43-
"7.29.52"
43+
"7.29.52",
44+
"8.10.52"
4445
)
4546
)
4647

patches/src/main/kotlin/app/revanced/patches/music/layout/premium/HideGetPremiumPatch.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ val hideGetPremiumPatch = bytecodePatch(
2828

2929
compatibleWith(
3030
"com.google.android.apps.youtube.music"(
31-
"7.29.52"
31+
"7.29.52",
32+
"8.10.52"
3233
)
3334
)
3435

0 commit comments

Comments
 (0)