File tree Expand file tree Collapse file tree 3 files changed +18
-5
lines changed
Expand file tree Collapse file tree 3 files changed +18
-5
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 10.3] - 2025-01-14
4+
5+ ### Added
6+ - Context to ` IMixinConfigHijacker `
7+
8+ ### Changed
9+ - Allowed all mixin configs to be hijacked
10+
11+ ### Fixed
12+ - Use ` JsonReader#setLenient ` over ` GsonBuilder#setLenient ` for older Gson versions supplied by older Minecraft versions
13+ - Use deprecated ` Handle ` constructor for older ASM versions supplied by older Minecraft versions
14+ - Catch loader issues instead of exiting and not loading subsequent loaders
15+
316## [ 10.2] - 2024-11-16
417
518### Fixed
Original file line number Diff line number Diff line change @@ -24,16 +24,16 @@ dependencies {
2424 annotationProcessor 'com.google.code.gson:gson:2.8.9'
2525
2626 // ForgeGradle:
27- implementation ('zone.rong:mixinbooter:10.2 ') {
27+ implementation ('zone.rong:mixinbooter:10.3 ') {
2828 transitive = false
2929 }
30- annotationProcessor ('zone.rong:mixinbooter:10.2 ') {
30+ annotationProcessor ('zone.rong:mixinbooter:10.3 ') {
3131 transitive = false
3232 }
3333
3434 // RetroFuturaGradle:
35- String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:10.2 ')
36- // modUtils.enableMixins('zone.rong:mixinbooter:10.2 ', 'mod_id.mixins.refmap.json') << add refmap name as 2nd arg (optional)
35+ String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:10.3 ')
36+ // modUtils.enableMixins('zone.rong:mixinbooter:10.3 ', 'mod_id.mixins.refmap.json') << add refmap name as 2nd arg (optional)
3737 api (mixinBooter) {
3838 transitive = false
3939 }
Original file line number Diff line number Diff line change 11org.gradle.jvmargs =-Xmx3G
2- mod_version =10.2
2+ mod_version =10.3
33mod_name =MixinBooter
44version_type =release
You can’t perform that action at this time.
0 commit comments