Release 1.17.1
This commit is contained in:
parent
d9c32390a6
commit
b2a85a3349
@ -6,11 +6,12 @@
|
|||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|
||||||
Minecraft|[Fabric API](https://www.curseforge.com/minecraft/mc-mods/fabric-api/files)|[Mod Menu](https://www.curseforge.com/minecraft/mc-mods/modmenu/files) (optional)
|
Mod version|Minecraft|[Fabric API](https://www.curseforge.com/minecraft/mc-mods/fabric-api/files)|[Mod Menu](https://www.curseforge.com/minecraft/mc-mods/modmenu/files) (optional)
|
||||||
--|--|--
|
--|--|--
|
||||||
1.16.5|0.34.2+1.16+|1.16.9+
|
1.16.5-1.1.0 |1.16.5|0.34.2+1.16+|1.16.9+
|
||||||
1.17|0.34.9+1.17+|2.0.0-beta.7+
|
1.17-1.1.1 |1.17|0.34.9+1.17+|2.0.0-beta.7+
|
||||||
1.17.1|0.34.9+1.17+|2.0.2.jar
|
1.17-1.1.1 |1.17.1|0.34.9+1.17+|2.0.2
|
||||||
|
1.17.1-1.2.1|1.17.1|0.41.0+1.17|2.0.14
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
|||||||
@ -3,21 +3,21 @@ org.gradle.jvmargs=-Xmx1G
|
|||||||
|
|
||||||
# Fabric Properties
|
# Fabric Properties
|
||||||
# check these on https://fabricmc.net/use
|
# check these on https://fabricmc.net/use
|
||||||
minecraft_version=1.17
|
minecraft_version=1.17.1
|
||||||
yarn_mappings=1.17+build.1
|
yarn_mappings=1.17.1+build.63
|
||||||
loader_version=0.11.3
|
loader_version=0.11.7
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version = 1.17-1.1.1
|
mod_version = 1.17.1-1.2.1
|
||||||
maven_group = me.bionicbeanie.mods.savecoords
|
maven_group = me.bionicbeanie.mods.savecoords
|
||||||
archives_base_name = save-coordinates
|
archives_base_name = save-coordinates
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
|
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
|
||||||
fabric_version=0.34.9+1.17
|
fabric_version=0.41.0+1.17
|
||||||
|
|
||||||
# https://github.com/CottonMC/LibGui/wiki/Setup
|
# https://github.com/CottonMC/LibGui/wiki/Setup
|
||||||
libgui_version=4.0.0+1.17
|
libgui_version=4.2.1+1.17.1
|
||||||
|
|
||||||
#https://maven.terraformersmc.com/releases/com/terraformersmc/modmenu/
|
#https://maven.terraformersmc.com/releases/com/terraformersmc/modmenu/
|
||||||
modmenu_version=2.0.2
|
modmenu_version=2.0.14
|
||||||
|
|||||||
@ -14,11 +14,11 @@ class GuiController implements IGuiController {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void openScreen(Screen screen) {
|
public void openScreen(Screen screen) {
|
||||||
client.openScreen(screen);
|
client.setScreen(screen);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void closeScreen() {
|
public void closeScreen() {
|
||||||
client.openScreen(null);
|
client.setScreen(null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -27,7 +27,7 @@
|
|||||||
"depends": {
|
"depends": {
|
||||||
"fabricloader": ">=0.11.3",
|
"fabricloader": ">=0.11.3",
|
||||||
"fabric": "*",
|
"fabric": "*",
|
||||||
"minecraft": "1.17.x",
|
"minecraft": "1.17.1",
|
||||||
"java": ">=16"
|
"java": ">=16"
|
||||||
},
|
},
|
||||||
"suggests": {
|
"suggests": {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user