Skip to content

Commit

Permalink
1.1.1
Browse files Browse the repository at this point in the history
Fix compatibility with Cleanroom Loader 0.2.3
Update Mixin to 0.8.7
Update MixinExtras to 0.4.1
Note: Currently Non-Cleanroom MixinBooter loads MixinExtras 0.3.6 first, so newer 0.3.6+ features should not be depended on until MixinBooter updates if full compatibility with all mods is desired
  • Loading branch information
fonnymunkey committed Aug 28, 2024
1 parent 3d353ce commit 1f5370a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ sourceSets.main.resources { srcDir 'src/generated/resources' }
dependencies {
minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}"

shadow 'io.github.llamalad7:mixinextras-common:0.3.5'
shadow 'io.github.llamalad7:mixinextras-common:0.4.1'

shadow 'org.spongepowered:mixin:0.8.5'
annotationProcessor 'org.spongepowered:mixin:0.8.5:processor'
shadow 'org.spongepowered:mixin:0.8.7'
annotationProcessor 'org.spongepowered:mixin:0.8.7:processor'
}

mixin {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
mod_id=fermiumbooter
mod_name=FermiumBooter
mod_version=1.1.0
mod_version=1.1.1
mod_author=["fonnymunkey"]
mod_description=Simplistic mixin mod utility to apply toggle-able mixins to both early and late loaded classes

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/fermiumbooter/FermiumBooter.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
public class FermiumBooter
{
public static final String MODID = "fermiumbooter";
public static final String VERSION = "1.1.0";
public static final String VERSION = "1.1.1";
public static final String NAME = "FermiumBooter";

@Instance(MODID)
Expand Down
3 changes: 1 addition & 2 deletions src/main/java/fermiumbooter/FermiumPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

@IFMLLoadingPlugin.Name("FermiumBooter")
@IFMLLoadingPlugin.MCVersion("1.12.2")
@IFMLLoadingPlugin.SortingIndex(Integer.MAX_VALUE-10)//Sorting index? Nah, alphabetical order based on jar name, whatever lol
@IFMLLoadingPlugin.SortingIndex(990)
public class FermiumPlugin implements IFMLLoadingPlugin {

public static final Logger LOGGER = LogManager.getLogger("FermiumBooter");
Expand Down Expand Up @@ -44,7 +44,6 @@ public String getSetupClass()

/**
* Handle actually parsing and adding the early configurations here, as it gets called after all other plugins are initialized
* SortingIndex is either a sneaky liar, or drunk
*/
@Override
public void injectData(Map<String, Object> data) {
Expand Down

0 comments on commit 1f5370a

Please sign in to comment.