Skip to content

Commit

Permalink
fix client bug fixes silently failing
Browse files Browse the repository at this point in the history
  • Loading branch information
isXander committed Apr 16, 2023
1 parent 8e7dbab commit d584909
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
![Lines of Code](https://img.shields.io/tokei/lines/github/isXander/Debugify?color=%23ff4747&label=Lines%20of%20code&style=for-the-badge)

[![](https://www.bisecthosting.com/partners/custom-banners/08bbd3ff-5c0d-4480-8738-de0f070a04dd.png)](https://bisecthosting.com/xander)

</div>

## What does this mod replace?
Expand Down Expand Up @@ -59,3 +59,4 @@ so I added a config option that defaults new bug fixes to off, until you get rou
- [**GodGun968**](https://github.com/GodGun968) - Chinese
- [**Agentew04**](https://github.com/Agentew04) - Portuguese
- [**localfossa**](https://github.com/localfossa) - Turkish
- [**xMikux**](https://github.com/xMikux) - Traditional Chinese
6 changes: 6 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ loom {
accessWidenerPath.set(file("src/main/resources/debugify.accesswidener"))
}

machete {
json.enabled.set(false)
}

repositories {
mavenCentral()
maven("https://jitpack.io")
Expand Down Expand Up @@ -81,6 +85,7 @@ dependencies {
"com.github.llamalad7.mixinextras:mixinextras-fabric:$mixinExtrasVersion".let {
implementation(it)
annotationProcessor(it)
"clientAnnotationProcessor"(it)
include(it)
}

Expand Down Expand Up @@ -192,6 +197,7 @@ publishing {
artifactId = "debugify"

from(components["java"])
artifact(tasks["remapSourcesJar"])
}
}

Expand Down
20 changes: 20 additions & 0 deletions changelogs/1.19.4/1.19.4+1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
- Fixed issues with the MC-46766 fix
- Fixed a lot of client bug fixes silently failing to be applied fully
- MC-108948
- MC-127970
- MC-143474
- MC-162253
- MC-215531
- MC-217716
- MC-227169
- MC-22882
- MC-237493 - this fixes the telemetry fix not properly clearing the telemetry info screen
- MC-577
- MC-59810
- MC-79545
- MC-90683
- MC-12829
- MC-140646
- Prevent mixins from failing silently in the future
- Publish sources jar to maven
- Add Traditional Chinese translation
2 changes: 1 addition & 1 deletion src/main/resources/debugify.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"package": "dev.isxander.debugify.mixins",
"compatibilityLevel": "JAVA_17",
"injectors": {
"defaultRequire": 0,
"defaultRequire": 1,
"maxShiftBy": 2
},
"plugin": "dev.isxander.debugify.utils.MixinPlugin",
Expand Down

0 comments on commit d584909

Please sign in to comment.