mirror of
https://github.com/inotia00/revanced-patches.git
synced 2025-06-13 13:47:42 +02:00
bump 5.2.1-dev.2
This commit is contained in:
@ -93,6 +93,7 @@ See the [documentation](https://github.com/inotia00/revanced-documentation#readm
|
||||
| `Disable DRC audio` | Adds an option to disable DRC (Dynamic Range Compression) audio. | 6.20.51 ~ 7.25.53 |
|
||||
| `Disable auto captions` | Adds an option to disable captions from being automatically enabled. | 6.20.51 ~ 7.25.53 |
|
||||
| `Disable dislike redirection` | Adds an option to disable redirection to the next track when clicking the Dislike button. | 6.20.51 ~ 7.25.53 |
|
||||
| `Disable music video in album` | Adds option to redirect music videos from albums. | 6.20.51 ~ 7.25.53 |
|
||||
| `Enable OPUS codec` | Adds an options to enable the OPUS audio codec if the player response includes. | 6.20.51 ~ 7.25.53 |
|
||||
| `Enable debug logging` | Adds an option to enable debug logging. | 6.20.51 ~ 7.25.53 |
|
||||
| `Enable landscape mode` | Adds an option to enable landscape mode when rotating the screen on phones. | 6.20.51 ~ 7.25.53 |
|
||||
|
@ -4,5 +4,5 @@ org.gradle.parallel = true
|
||||
android.useAndroidX = true
|
||||
kotlin.code.style = official
|
||||
kotlin.jvm.target.validation.mode = IGNORE
|
||||
version = 5.2.1-dev.1
|
||||
version = 5.2.1-dev.2
|
||||
|
||||
|
28
patches.json
28
patches.json
@ -819,6 +819,28 @@
|
||||
},
|
||||
"options": []
|
||||
},
|
||||
{
|
||||
"name": "Disable music video in album",
|
||||
"description": "Adds option to redirect music videos from albums.",
|
||||
"use": false,
|
||||
"dependencies": [
|
||||
"Settings for YouTube Music",
|
||||
"BytecodePatch",
|
||||
"BytecodePatch",
|
||||
"ResourcePatch"
|
||||
],
|
||||
"compatiblePackages": {
|
||||
"com.google.android.apps.youtube.music": [
|
||||
"6.20.51",
|
||||
"6.29.59",
|
||||
"6.42.55",
|
||||
"6.51.53",
|
||||
"7.16.53",
|
||||
"7.25.53"
|
||||
]
|
||||
},
|
||||
"options": []
|
||||
},
|
||||
{
|
||||
"name": "Disable resuming Shorts on startup",
|
||||
"description": "Adds an option to disable the Shorts player from resuming on app startup when Shorts were last being watched.",
|
||||
@ -1087,6 +1109,9 @@
|
||||
"Settings for YouTube",
|
||||
"BytecodePatch",
|
||||
"BytecodePatch",
|
||||
"BytecodePatch",
|
||||
"BytecodePatch",
|
||||
"BytecodePatch",
|
||||
"ResourcePatch",
|
||||
"ResourcePatch"
|
||||
],
|
||||
@ -1493,7 +1518,8 @@
|
||||
"BytecodePatch",
|
||||
"ResourcePatch",
|
||||
"BytecodePatch",
|
||||
"BytecodePatch"
|
||||
"BytecodePatch",
|
||||
"ResourcePatch"
|
||||
],
|
||||
"compatiblePackages": {
|
||||
"com.google.android.youtube": [
|
||||
|
@ -90,6 +90,10 @@ public final class app/revanced/patches/music/layout/visual/VisualPreferencesIco
|
||||
public static final fun getVisualPreferencesIconsPatch ()Lapp/revanced/patcher/patch/ResourcePatch;
|
||||
}
|
||||
|
||||
public final class app/revanced/patches/music/misc/album/AlbumMusicVideoPatchKt {
|
||||
public static final fun getAlbumMusicVideoPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
|
||||
}
|
||||
|
||||
public final class app/revanced/patches/music/misc/backgroundplayback/BackgroundPlaybackPatchKt {
|
||||
public static final fun getBackgroundPlaybackPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
|
||||
}
|
||||
@ -138,6 +142,10 @@ public final class app/revanced/patches/music/player/components/PlayerComponents
|
||||
public static final fun getPlayerComponentsPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
|
||||
}
|
||||
|
||||
public final class app/revanced/patches/music/utils/dismiss/DismissQueueHookPatchKt {
|
||||
public static final fun getDismissQueueHookPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
|
||||
}
|
||||
|
||||
public final class app/revanced/patches/music/utils/extension/SharedExtensionPatchKt {
|
||||
public static final fun getSharedExtensionPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
|
||||
}
|
||||
@ -183,6 +191,7 @@ public final class app/revanced/patches/music/utils/playservice/VersionCheckPatc
|
||||
public static final fun is_6_27_or_greater ()Z
|
||||
public static final fun is_6_36_or_greater ()Z
|
||||
public static final fun is_6_42_or_greater ()Z
|
||||
public static final fun is_7_03_or_greater ()Z
|
||||
public static final fun is_7_06_or_greater ()Z
|
||||
public static final fun is_7_13_or_greater ()Z
|
||||
public static final fun is_7_17_or_greater ()Z
|
||||
@ -432,6 +441,8 @@ public final class app/revanced/patches/shared/mainactivity/BaseMainActivityReso
|
||||
public static final fun getMainActivityMutableClass ()Lapp/revanced/patcher/util/proxy/mutableTypes/MutableClass;
|
||||
public static final fun getOnConfigurationChangedMethod ()Lapp/revanced/patcher/util/proxy/mutableTypes/MutableMethod;
|
||||
public static final fun getOnCreateMethod ()Lapp/revanced/patcher/util/proxy/mutableTypes/MutableMethod;
|
||||
public static final fun getOnStartMethod ()Lapp/revanced/patcher/util/proxy/mutableTypes/MutableMethod;
|
||||
public static final fun getOnStopMethod ()Lapp/revanced/patcher/util/proxy/mutableTypes/MutableMethod;
|
||||
}
|
||||
|
||||
public final class app/revanced/patches/shared/mapping/ResourceElement {
|
||||
@ -834,6 +845,10 @@ public final class app/revanced/patches/youtube/utils/flyoutmenu/FlyoutMenuHookP
|
||||
public static final fun getFlyoutMenuHookPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
|
||||
}
|
||||
|
||||
public final class app/revanced/patches/youtube/utils/fullscreen/FullscreenButtonHookPatchKt {
|
||||
public static final fun getFullscreenButtonHookPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
|
||||
}
|
||||
|
||||
public final class app/revanced/patches/youtube/utils/gms/GmsCoreSupportPatchKt {
|
||||
public static final fun getGmsCoreSupportPatch ()Lapp/revanced/patcher/patch/BytecodePatch;
|
||||
}
|
||||
|
Reference in New Issue
Block a user