This repository was archived by the owner on Oct 31, 2024. It is now read-only.
Commit f23930a 1 parent 248fef3 commit f23930a Copy full SHA for f23930a
File tree 6 files changed +20
-14
lines changed
java/com/github/franckyi/ibeeditor/forge
6 files changed +20
-14
lines changed Original file line number Diff line number Diff line change 4
4
workflow_dispatch :
5
5
push :
6
6
branches :
7
- - ' 1.19'
7
+ - ' 1.19.3 '
8
8
paths-ignore :
9
9
- ' README.md'
10
10
- ' LICENSE'
Original file line number Diff line number Diff line change 27
27
public final class ForgeIBEEditorMod {
28
28
public ForgeIBEEditorMod () {
29
29
CommonInit .init ();
30
+ FMLJavaModLoadingContext .get ().getModEventBus ().addListener (this ::onCommonInit );
30
31
if (FMLLoader .getDist () == Dist .CLIENT ) {
31
32
ClientInit .init ();
33
+ FMLJavaModLoadingContext .get ().getModEventBus ().addListener (this ::onClientInit );
34
+ FMLJavaModLoadingContext .get ().getModEventBus ().addListener (this ::onRegisterKeybindings );
32
35
}
33
- FMLJavaModLoadingContext .get ().getModEventBus ().addListener (this ::onCommonInit );
34
- FMLJavaModLoadingContext .get ().getModEventBus ().addListener (this ::onClientInit );
35
- FMLJavaModLoadingContext .get ().getModEventBus ().addListener (this ::onRegisterKeybindings );
36
36
}
37
37
38
38
private void onRegisterKeybindings (RegisterKeyMappingsEvent event ) {
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ logoFile = "logo.png"
8
8
modId = " ibeeditor"
9
9
version = " ${version}"
10
10
displayName = " IBE Editor"
11
- updateJSONURL = " https://raw.githubusercontent.com/Franckyi/IBE-Editor/1.19/forge_update.json"
11
+ updateJSONURL = " https://raw.githubusercontent.com/Franckyi/IBE-Editor/1.19.3 /forge_update.json"
12
12
displayURL = " https://www.curseforge.com/minecraft/mc-mods/ibe-editor"
13
13
credits = " Emex (logo)"
14
14
authors = " Franckyi"
Original file line number Diff line number Diff line change 1
1
{
2
2
"homepage" : " https://www.curseforge.com/minecraft/mc-mods/ibe-editor" ,
3
3
"promos" : {
4
- "1.19-latest" : " 2.2.1" ,
5
- "1.19-recommended" : " 2.2.1" ,
6
- "1.19.1-latest" : " 2.2.1" ,
7
- "1.19.1-recommended" : " 2.2.1" ,
8
- "1.19.2-latest" : " 2.2.1" ,
9
- "1.19.2-recommended" : " 2.2.1"
4
+ "1.19-latest" : " 2.2.2" ,
5
+ "1.19-recommended" : " 2.2.2" ,
6
+ "1.19.1-latest" : " 2.2.2" ,
7
+ "1.19.1-recommended" : " 2.2.2" ,
8
+ "1.19.2-latest" : " 2.2.2" ,
9
+ "1.19.2-recommended" : " 2.2.2" ,
10
+ "1.19.3-latest" : " 2.2.2" ,
11
+ "1.19.3-recommended" : " 2.2.2"
10
12
}
11
13
}
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ org.gradle.daemon=false
4
4
# IBE Editor
5
5
minecraft_version =1.19.3
6
6
archives_base_name =IBEEditor
7
- mod_version =2.2.1
7
+ mod_version =2.2.2
8
8
maven_group =com.github.franckyi.ibeeditor
9
9
# Fabric https://fabricmc.net/develop/
10
10
fabric_loader_version =0.14.11
11
- fabric_api_version =0.68 .1+1.19.3
11
+ fabric_api_version =0.69 .1+1.19.3
12
12
# Forge https://files.minecraftforge.net/
13
- forge_version =44.0.5
13
+ forge_version =44.0.37
14
14
# Build and release info
15
15
java_version =17
16
16
major_minecraft_version =1.19.3
Original file line number Diff line number Diff line change 1
1
{
2
+ "2.2.2" : {
3
+ "type" : " release" ,
4
+ "changelog" : " * fix: crash on Forge server (#67)"
5
+ },
2
6
"2.2.1" : {
3
7
"type" : " release" ,
4
8
"changelog" : " * fix: SNBT formatting breaks strings (#82)"
You can’t perform that action at this time.
0 commit comments