Skip to content

Commit

Permalink
MixinBooter 8.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Rongmario committed Sep 14, 2023
1 parent 1fd9eea commit be70d51
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [8.6] - 2023-09-14

### Added
- Added a dummy mcmod.info

### Changed
- Only allowing SpongeForge 7.4.8+ from loading with MixinBooter.

### Fixed
- Fixed issue with Modrinth uploads (not allowing forge mods without mcmod.info packaged to be uploaded)

## [8.5] - 2023-09-13

### Added
Expand Down
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,28 @@

- Add CleanroomMC's repository and depend on MixinBooter's maven entry:

```
```groovy
repositories {
maven {
url 'https://maven.cleanroommc.com'
}
}
dependencies {
compile 'zone.rong:mixinbooter:8.5'
// ForgeGradle:
implementation 'zone.rong:mixinbooter:8.6'
annotationProcessor 'zone.rong:mixinbooter:8.6'
// RetroFuturaGradle:
String mixinBooter = modUtils.enableMixins('zone.rong:mixinbooter:8.6')
// modUtils.enableMixins('zone.rong:mixinbooter:8.6', "mod_id.mixins.refmap.json") << add refmap name as 2nd arg (optional)
api (mixinBooter) {
transitive = false
}
annotationProcessor (mixinBooter) {
transitive = false
}
}
```

Expand All @@ -29,6 +42,8 @@ dependencies {

- As of 8.0, MixinBooter will now work from 1.8 - 1.12.2. One single build works with all these versions! (TODO: LiteLoader support?)

- As of 8.4, MixinBooter actively attempts to be compatible with [SpongeForge](https://github.com/SpongePowered/SpongeForge)

### Tidbits:

- Consult `IEarlyMixinLoader` for mixins that affects vanilla, forge, or any classes that is passed to the classloader extremely early (e.g. Guava).
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
org.gradle.jvmargs=-Xmx3G
mod_version=8.5
mod_version=8.6
mod_name=MixinBooter
version_type=release

0 comments on commit be70d51

Please sign in to comment.