Merge branch 'dev' into chore/lint

# Conflicts:
#	src/main/kotlin/app/revanced/patches/youtubevanced/ad/general/HideAdsPatch.kt
This commit is contained in:
oSumAtrIX 2024-03-04 16:19:41 +01:00
commit 6e52846c86
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
3 changed files with 10 additions and 2 deletions

View File

@ -1,3 +1,10 @@
# [4.4.0-dev.1](https://github.com/ReVanced/revanced-patches/compare/v4.3.0...v4.4.0-dev.1) (2024-03-04)
### Features
* **YouTube Vanced:** Remove `Hide ads` patch ([87887e4](https://github.com/ReVanced/revanced-patches/commit/87887e4163dd9e242209f4d0fefb415f9bc7ca75))
# [4.3.0](https://github.com/ReVanced/revanced-patches/compare/v4.2.0...v4.3.0) (2024-03-02) # [4.3.0](https://github.com/ReVanced/revanced-patches/compare/v4.2.0...v4.3.0) (2024-03-02)

View File

@ -1,4 +1,4 @@
org.gradle.parallel = true org.gradle.parallel = true
org.gradle.caching = true org.gradle.caching = true
kotlin.code.style = official kotlin.code.style = official
version = 4.3.0 version = 4.4.0-dev.1

View File

@ -11,11 +11,12 @@ import app.revanced.patches.youtubevanced.ad.general.fingerprints.ContainsAdFing
import app.revanced.util.exception import app.revanced.util.exception
import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction21c import com.android.tools.smali.dexlib2.iface.instruction.formats.Instruction21c
@Deprecated("This patch is going to be removed in the future.")
@Patch( @Patch(
name = "Hide ads",
description = "Removes general ads.", description = "Removes general ads.",
dependencies = [VerticalScrollPatch::class], dependencies = [VerticalScrollPatch::class],
compatiblePackages = [CompatiblePackage("com.vanced.android.youtube")], compatiblePackages = [CompatiblePackage("com.vanced.android.youtube")],
use = false,
) )
@Suppress("unused") @Suppress("unused")
object HideAdsPatch : BytecodePatch( object HideAdsPatch : BytecodePatch(