diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c54d9e73..0db402cd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [5.41.1-dev.1](https://github.com/ReVanced/revanced-patches/compare/v5.41.0...v5.41.1-dev.1) (2025-09-27) + + +### Bug Fixes + +* **YouTube Music - Hide cast button:** Resolve button not hiding ([7817885](https://github.com/ReVanced/revanced-patches/commit/7817885cffed66608039ab45881537cbd3069c9d)) + # [5.41.0](https://github.com/ReVanced/revanced-patches/compare/v5.40.0...v5.41.0) (2025-09-27) diff --git a/gradle.properties b/gradle.properties index 428798762..b12a215f1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,4 +3,4 @@ org.gradle.jvmargs = -Xms512M -Xmx2048M org.gradle.parallel = true android.useAndroidX = true kotlin.code.style = official -version = 5.41.0 +version = 5.41.1-dev.1 diff --git a/patches/src/main/kotlin/app/revanced/patches/music/layout/castbutton/Fingerprints.kt b/patches/src/main/kotlin/app/revanced/patches/music/layout/castbutton/Fingerprints.kt index d3d59619c..42e7d97a3 100644 --- a/patches/src/main/kotlin/app/revanced/patches/music/layout/castbutton/Fingerprints.kt +++ b/patches/src/main/kotlin/app/revanced/patches/music/layout/castbutton/Fingerprints.kt @@ -6,6 +6,7 @@ import app.revanced.patches.shared.misc.mapping.ResourceType import app.revanced.patches.shared.misc.mapping.resourceLiteral import com.android.tools.smali.dexlib2.AccessFlags import com.android.tools.smali.dexlib2.Opcode +import org.stringtemplate.v4.compiler.Bytecode.instructions internal val mediaRouteButtonFingerprint by fingerprint { accessFlags(AccessFlags.PRIVATE, AccessFlags.FINAL) @@ -18,6 +19,6 @@ internal val playerOverlayChipFingerprint by fingerprint { returns("L") instructions( resourceLiteral(ResourceType.ID, "player_overlay_chip"), - opcode(Opcode.MOVE_RESULT) + opcode(Opcode.MOVE_RESULT_OBJECT) ) }