diff options
| -rwxr-xr-x | build.gradle | 2 | ||||
| -rw-r--r-- | gradle.properties | 12 | ||||
| -rw-r--r-- | src/main/java/me/shedaniel/rei/gui/widget/PanelWidget.java | 9 | ||||
| -rwxr-xr-x | src/main/resources/fabric.mod.json | 2 |
4 files changed, 17 insertions, 8 deletions
diff --git a/build.gradle b/build.gradle index 5b654b4c6..fb42bf352 100755 --- a/build.gradle +++ b/build.gradle @@ -131,7 +131,7 @@ curseforge { embeddedLibrary 'cloth-config' } mainArtifact(file("${project.buildDir}/libs/${project.archivesBaseName}-${project.version}.jar")) { - displayName = "[Fabric 20w10a] v$project.version" + displayName = "[Fabric 20w11a] v$project.version" } afterEvaluate { uploadTask.dependsOn("remapJar") diff --git a/gradle.properties b/gradle.properties index e636a5f94..1d4ec6ca9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,11 +1,11 @@ -mod_version=4.0.11-unstable -minecraft_version=20w10a -yarn_version=20w10a+build.15 -fabricloader_version=0.7.8+build.186 +mod_version=4.0.12-unstable +minecraft_version=20w11a +yarn_version=20w11a+build.1 +fabricloader_version=0.7.8+build.187 cloth_events_version=2.0.0-unstable.202003051905 cloth_config_version=3.0.2-unstable.202003090708 -modmenu_version=1.10.1+build.30 -fabric_api=0.4.34+build.303-1.16 +modmenu_version=1.10.2+build.1 +fabric_api=0.5.3+build.308-1.16 autoconfig1u=1.2.4 api_include=me.shedaniel.cloth:cloth-events,me.shedaniel.cloth:config-2,me.sargunvohra.mcmods:autoconfig1u,org.jetbrains:annotations api_exculde= diff --git a/src/main/java/me/shedaniel/rei/gui/widget/PanelWidget.java b/src/main/java/me/shedaniel/rei/gui/widget/PanelWidget.java index a7d569695..8d293233c 100644 --- a/src/main/java/me/shedaniel/rei/gui/widget/PanelWidget.java +++ b/src/main/java/me/shedaniel/rei/gui/widget/PanelWidget.java @@ -30,10 +30,19 @@ import me.shedaniel.rei.api.REIHelper; import me.shedaniel.rei.gui.config.RecipeBorderType; import me.shedaniel.rei.gui.config.RecipeScreenType; import net.minecraft.util.Identifier; +import org.jetbrains.annotations.ApiStatus; import java.util.Collections; import java.util.List; +/** + * @see me.shedaniel.rei.api.widgets.Widgets#createRecipeBase(me.shedaniel.math.Rectangle) + * @see me.shedaniel.rei.api.widgets.Widgets#createRecipeBase(me.shedaniel.math.Rectangle, int) + * @see me.shedaniel.rei.api.widgets.Widgets#createSlotBase(me.shedaniel.math.Rectangle) + * @see me.shedaniel.rei.api.widgets.Widgets#createSlotBase(me.shedaniel.math.Rectangle, int) + */ +@ApiStatus.ScheduledForRemoval +@Deprecated public class PanelWidget extends WidgetWithBounds { private static final Identifier CHEST_GUI_TEXTURE = new Identifier("roughlyenoughitems", "textures/gui/recipecontainer.png"); diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 48788b30d..89c2c76c5 100755 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -39,7 +39,7 @@ "cloth": "~2-", "cloth-basic-math": "*", "cloth-config2": "~3-", - "minecraft": "~1.16-Snapshot.20.10.a" + "minecraft": "~1.16-Snapshot.20.11.a" }, "mixins": [ "mixin.roughlyenoughitems.json", |
