User: kyle wood Date: 27 Mar 25 03:03 Revision: ca1b3e1c346dc2e5f1b0075292a9c3eabaffdf30 Summary: Update IntelliJ Gradle plugin to 2.4.0 TeamCity URL: https://ci.mcdev.io/viewModification.html?tab=vcsModificationFiles&modId=9859&personal=false Index: build.gradle.kts =================================================================== --- build.gradle.kts (revision fb3bc604e251b10492bea40e23c3b89da68a4c0b) +++ build.gradle.kts (revision ca1b3e1c346dc2e5f1b0075292a9c3eabaffdf30) @@ -105,12 +105,14 @@ bundledPlugin("ByteCodeViewer") bundledPlugin("org.intellij.intelliLang") bundledPlugin("com.intellij.properties") + bundledPlugin("Git4Idea") // Optional dependencies bundledPlugin("org.jetbrains.kotlin") bundledPlugin("org.toml.lang") bundledPlugin("org.jetbrains.plugins.yaml") + testFramework(TestFrameworkType.JUnit5) testFramework(TestFrameworkType.Plugin.Java) Index: gradle/libs.versions.toml =================================================================== --- gradle/libs.versions.toml (revision fb3bc604e251b10492bea40e23c3b89da68a4c0b) +++ gradle/libs.versions.toml (revision ca1b3e1c346dc2e5f1b0075292a9c3eabaffdf30) @@ -7,7 +7,7 @@ fuel = "2.3.1" licenser = "0.6.1" changelog = "2.2.0" -intellij-plugin = "2.1.0" +intellij-plugin = "2.4.0" intellij-ide = "2024.1" idea-ext = "1.1.8" psiPlugin = "241.14494.158-EAP-SNAPSHOT" Index: obfuscation-explorer/changelog.md =================================================================== --- obfuscation-explorer/changelog.md (revision ca1b3e1c346dc2e5f1b0075292a9c3eabaffdf30) +++ obfuscation-explorer/changelog.md (revision ca1b3e1c346dc2e5f1b0075292a9c3eabaffdf30) @@ -0,0 +1,0 @@ Index: src/main/kotlin/platform/mixin/util/AsmUtil.kt =================================================================== --- src/main/kotlin/platform/mixin/util/AsmUtil.kt (revision fb3bc604e251b10492bea40e23c3b89da68a4c0b) +++ src/main/kotlin/platform/mixin/util/AsmUtil.kt (revision ca1b3e1c346dc2e5f1b0075292a9c3eabaffdf30) @@ -236,11 +236,11 @@ } val classFile = parentDir.findChild("${fqn.substringAfterLast('.')}.class") ?: return@lockedCached null - val node = ClassNode() + val node = ClassNode(Opcodes.ASM7) classFile.inputStream.use { ClassReader(it).accept(node, 0) } node } else { - val node = ClassNode() + val node = ClassNode(Opcodes.ASM7) ClassReader(bytes).accept(node, 0) node }