From 25b7e12be179480d1346e25f51a25cec3065a157 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 2 Oct 2025 17:59:26 +0000 Subject: [PATCH 1/2] chore: Release v1.1.0 [skip ci] # [1.1.0](https://github.com/HZbutcoding/sn-patching/compare/v1.0.4...v1.1.0) (2025-10-02) ### Features * yeah ([c9b2258](https://github.com/HZbutcoding/sn-patching/commit/c9b225891a8ce4ebf7e05b24d137a6355b6467cc)) --- CHANGELOG.md | 7 +++++++ gradle.properties | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c6228a..b9c3d0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [1.1.0](https://github.com/HZbutcoding/sn-patching/compare/v1.0.4...v1.1.0) (2025-10-02) + + +### Features + +* yeah ([c9b2258](https://github.com/HZbutcoding/sn-patching/commit/c9b225891a8ce4ebf7e05b24d137a6355b6467cc)) + ## [1.0.4](https://github.com/ReVanced/revanced-patches-template/compare/v1.0.3...v1.0.4) (2024-11-05) ## [1.0.4-dev.2](https://github.com/ReVanced/revanced-patches-template/compare/v1.0.4-dev.1...v1.0.4-dev.2) (2024-11-05) diff --git a/gradle.properties b/gradle.properties index 083937f..24b8e24 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ org.gradle.parallel = true org.gradle.caching = true kotlin.code.style = official -version = 1.0.4 \ No newline at end of file +version = 1.1.0 From 974c378a957667f94db0425ebd3eb26111140399 Mon Sep 17 00:00:00 2001 From: HZbutcoding Date: Fri, 3 Oct 2025 14:29:07 +0300 Subject: [PATCH 2/2] feat: fixed matching --- patches/src/main/kotlin/sticknodes/Fingerprints.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/src/main/kotlin/sticknodes/Fingerprints.kt b/patches/src/main/kotlin/sticknodes/Fingerprints.kt index bbd1af4..c3f9000 100644 --- a/patches/src/main/kotlin/sticknodes/Fingerprints.kt +++ b/patches/src/main/kotlin/sticknodes/Fingerprints.kt @@ -7,7 +7,7 @@ import com.android.tools.smali.dexlib2.Opcode val figureFiltersInitFingerprint = fingerprint { accessFlags(AccessFlags.PUBLIC) returns("V") - parameters("Lcom/badlogic/gdx/graphics/g2d/TextureAtlas;", "Lcom/badlogic/gdx/graphics/g2d/TextureAtlas;", "Lcom/badlogic/gdx/scenes/scene2d/utils/Drawable") + parameters("Lcom/badlogic/gdx/graphics/g2d/TextureAtlas;", "Lcom/badlogic/gdx/graphics/g2d/TextureAtlas;", "Lcom/badlogic/gdx/scenes/scene2d/utils/Drawable;") opcodes( Opcode.NEW_INSTANCE, Opcode.INVOKE_DIRECT, @@ -17,7 +17,7 @@ val figureFiltersInitFingerprint = fingerprint { ) custom { method, classDef -> classDef.type == "Lorg/fortheloss/sticknodes/animationscreen/modules/tooltables/FigureFiltersToolTable;" && - method.name == "initialize" + method.name == "" } }