Skip to content

Commit 370a370

Browse files
committedAug 4, 2024··
Merge branch '2023.2' into 2023.3
2 parents a3c37a4 + 40d6b84 commit 370a370

File tree

64 files changed

+1976
-408
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1976
-408
lines changed
 

‎build.gradle.kts

+3-5
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ dependencies {
118118

119119
implementation(libs.mixinExtras.expressions)
120120
testLibs(libs.mixinExtras.common)
121-
implementation("org.ow2.asm:asm-util:9.3")
122121

123122
// Kotlin
124123
implementation(kotlin("stdlib-jdk8"))
@@ -298,10 +297,9 @@ tasks.processResources {
298297
tasks.test {
299298
dependsOn(tasks.jar, testLibs)
300299
useJUnitPlatform()
301-
doFirst {
302-
testLibs.resolvedConfiguration.resolvedArtifacts.forEach {
303-
systemProperty("testLibs.${it.name}", it.file.absolutePath)
304-
}
300+
301+
testLibs.resolvedConfiguration.resolvedArtifacts.forEach {
302+
systemProperty("testLibs.${it.name}", it.file.absolutePath)
305303
}
306304
systemProperty("NO_FS_ROOTS_ACCESS_CHECK", "true")
307305
systemProperty("java.awt.headless", "true")

‎changelog.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Minecraft Development for IntelliJ
22

3+
## [Unreleased]
4+
5+
### Added
6+
7+
- Access widener completion in fabric.mod.json
8+
- Event listener generation for Kotlin
9+
- `JUMP` injection point support (without source navigation)
10+
- Inspection highlighting that `JUMP` usages are discouraged
11+
- Inspection highlighting discouraged instruction shifts
12+
- Inspections for when @Inject local capture is unused and for when they can be replaced with @Local
13+
- [#2306](https://github.com/minecraft-dev/MinecraftDev/issues/2306) Use mixin icon for mixin classes
14+
15+
### Fixed
16+
17+
- [#2330](https://github.com/minecraft-dev/MinecraftDev/issues/2330) Reformat created files without keeping line breaks. Fixes the Velocity main class annotation's bad formatting.
18+
- [#2331](https://github.com/minecraft-dev/MinecraftDev/issues/2331) Support fabric.mod.json in test resources
19+
- MixinExtras occasional cache desync ([#2335](https://github.com/minecraft-dev/MinecraftDev/pull/2335))
20+
- [#2163](https://github.com/minecraft-dev/MinecraftDev/issues/2163) `@ModifyVariable` method signature checking with `STORE`
21+
- [#2282](https://github.com/minecraft-dev/MinecraftDev/issues/2282) Mixin support confusion with `$` and `.` separators in class names
22+
- Recent NeoModDev version import errors
23+
324
## [1.8.0]
425

526
This release contains two major features:

0 commit comments

Comments
 (0)
Please sign in to comment.