mirror of
https://github.com/revanced/revanced-patches
synced 2024-11-09 23:09:23 +01:00
fix: add size 48px
for custom-branding
patch
This commit is contained in:
parent
0a8725e77b
commit
f81872b8e4
@ -1,4 +1,4 @@
|
|||||||
package app.revanced.patches.youtube.layout.branding.annotations
|
package app.revanced.patches.youtube.layout.branding.icon.annotations
|
||||||
|
|
||||||
import app.revanced.patcher.annotation.Compatibility
|
import app.revanced.patcher.annotation.Compatibility
|
||||||
import app.revanced.patcher.annotation.Package
|
import app.revanced.patcher.annotation.Package
|
@ -1,4 +1,4 @@
|
|||||||
package app.revanced.patches.youtube.layout.branding.patch
|
package app.revanced.patches.youtube.layout.branding.icon.patch
|
||||||
|
|
||||||
import app.revanced.patcher.annotation.Description
|
import app.revanced.patcher.annotation.Description
|
||||||
import app.revanced.patcher.annotation.Name
|
import app.revanced.patcher.annotation.Name
|
||||||
@ -10,7 +10,7 @@ import app.revanced.patcher.patch.implementation.ResourcePatch
|
|||||||
import app.revanced.patcher.patch.implementation.misc.PatchResult
|
import app.revanced.patcher.patch.implementation.misc.PatchResult
|
||||||
import app.revanced.patcher.patch.implementation.misc.PatchResultError
|
import app.revanced.patcher.patch.implementation.misc.PatchResultError
|
||||||
import app.revanced.patcher.patch.implementation.misc.PatchResultSuccess
|
import app.revanced.patcher.patch.implementation.misc.PatchResultSuccess
|
||||||
import app.revanced.patches.youtube.layout.branding.annotations.CustomBrandingCompatibility
|
import app.revanced.patches.youtube.layout.branding.icon.annotations.CustomBrandingCompatibility
|
||||||
import app.revanced.patches.youtube.misc.manifest.patch.FixLocaleConfigErrorPatch
|
import app.revanced.patches.youtube.misc.manifest.patch.FixLocaleConfigErrorPatch
|
||||||
import java.nio.file.Files
|
import java.nio.file.Files
|
||||||
|
|
||||||
@ -35,18 +35,18 @@ class CustomBrandingPatch : ResourcePatch() {
|
|||||||
)
|
)
|
||||||
|
|
||||||
mapOf(
|
mapOf(
|
||||||
"mipmap-xxxhdpi" to 192,
|
"xxxhdpi" to 192,
|
||||||
"mipmap-xxhdpi" to 144,
|
"xxhdpi" to 144,
|
||||||
"mipmap-xhdpi" to 96,
|
"xhdpi" to 96,
|
||||||
"mipmap-hdpi" to 72,
|
"hdpi" to 72,
|
||||||
"mipmap-mdpi" to 48
|
"mdpi" to 48
|
||||||
).forEach { (iconDirectory, size) ->
|
).forEach { (iconDirectory, size) ->
|
||||||
iconNames.forEach iconLoop@{ iconName ->
|
iconNames.forEach iconLoop@{ iconName ->
|
||||||
val iconFile = this.javaClass.classLoader.getResourceAsStream("branding/$size/$iconName.png")
|
val iconFile = this.javaClass.classLoader.getResourceAsStream("branding/$size/$iconName.png")
|
||||||
?: return PatchResultError("The icon $iconName can not be found.")
|
?: return PatchResultError("The icon $iconName can not be found.")
|
||||||
|
|
||||||
Files.write(
|
Files.write(
|
||||||
resDirectory.resolve(iconDirectory).resolve("$iconName.png").toPath(), iconFile.readAllBytes()
|
resDirectory.resolve("mipmap-$iconDirectory").resolve("$iconName.png").toPath(), iconFile.readAllBytes()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
Binary file not shown.
After Width: | Height: | Size: 191 B |
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
BIN
src/main/resources/branding/48/ic_launcher.png
Normal file
BIN
src/main/resources/branding/48/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
BIN
src/main/resources/branding/48/ic_launcher_round.png
Normal file
BIN
src/main/resources/branding/48/ic_launcher_round.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
Loading…
Reference in New Issue
Block a user