-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* removed CheckEnvironmentPatch because it didnt correctly detect the on-device local patching * revanced-patches `v5.2.1`
- Loading branch information
1 parent
2763f41
commit d4b4b0c
Showing
6 changed files
with
60 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "revanced-cli"] | ||
path = revanced-cli | ||
url = https://github.com/revanced/revanced-cli | ||
url = https://github.com/revanced/revanced-cli | ||
[submodule "revanced-patches"] | ||
path = revanced-patches | ||
url = https://github.com/revanced/revanced-patches |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule revanced-patches
added at
69ec47
27 changes: 27 additions & 0 deletions
27
revanced-patches-patches/remove-CheckEnvironmentPatch.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
From 7b6d527f31ae0e1f2b9aa1b357dd4e9ed4e95e36 Mon Sep 17 00:00:00 2001 | ||
From: programminghoch10 <[email protected]> | ||
Date: Thu, 5 Dec 2024 21:09:36 +0100 | ||
Subject: [PATCH] remove CheckEnvironmentPatch | ||
|
||
since we build on device this patch is not required | ||
--- | ||
.../revanced/patches/youtube/misc/settings/SettingsPatch.kt | 3 --- | ||
1 file changed, 3 deletions(-) | ||
|
||
diff --git a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/settings/SettingsPatch.kt b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/settings/SettingsPatch.kt | ||
index 627a70f91..e15fc9d00 100644 | ||
--- a/patches/src/main/kotlin/app/revanced/patches/youtube/misc/settings/SettingsPatch.kt | ||
+++ b/patches/src/main/kotlin/app/revanced/patches/youtube/misc/settings/SettingsPatch.kt | ||
@@ -118,9 +118,6 @@ val settingsPatch = bytecodePatch( | ||
settingsResourcePatch, | ||
addResourcesPatch, | ||
disableCairoSettingsPatch, | ||
- // Currently there is no easy way to make a mandatory patch, | ||
- // so for now this is a dependent of this patch. | ||
- checkEnvironmentPatch, | ||
) | ||
|
||
val extensionPackage = "app/revanced/extension/youtube" | ||
-- | ||
2.45.2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
|
||
REVANCED_PATCHES="v5.0.2" | ||
REVANCED_PATCHES="v5.2.1" | ||
REVANCED_CLI="v5.0.0" |