forked from gudenau/minecraft-gudasm
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to be compatible with 1.17+, Quilt Loader and Loader 0.12+
- Updated Gradle to 7.3.1 - Updated Loom to 0.7 - Removed dependency on Fabric API for as there is no API-dependent code. - Removed dependency on Minecraft for as there is no Minecraft-dependent code. - Added dynamic transformer bootstrapping for various implementations
- Loading branch information
Showing
9 changed files
with
416 additions
and
250 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
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,18 +1,13 @@ | ||
# Done to increase the memory available to gradle. | ||
org.gradle.jvmargs=-Xmx1G | ||
|
||
# Fabric Properties | ||
# check these on https://fabricmc.net/use | ||
minecraft_version=1.16.2 | ||
yarn_mappings=1.16.2+build.46:v2 | ||
loader_version=0.9.2+build.206 | ||
|
||
# Mod Properties | ||
mod_version = 0.2.10 | ||
maven_group = net.gudenau.minecraft | ||
archives_base_name = gud_asm | ||
|
||
mod_version=0.3.0 | ||
maven_group=net.gudenau.minecraft | ||
archives_base_name=gud_asm | ||
# Dependencies | ||
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api | ||
fabric_version=0.20.0+build.399-1.16 | ||
annotations_version=16.0.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
290 changes: 240 additions & 50 deletions
290
src/main/java/net/gudenau/minecraft/asm/impl/Bootstrap.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
Oops, something went wrong.