Implemented support for the Forge update JSON system, fixes #1046
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
# Refined Storage Changelog
|
# Refined Storage Changelog
|
||||||
|
|
||||||
### 1.4.2
|
### 1.4.2
|
||||||
|
- Implemented support for the Forge update JSON system (raoulvdberge)
|
||||||
- Added integration for MCMultiPart, this is an optional dependency (raoulvdberge)
|
- Added integration for MCMultiPart, this is an optional dependency (raoulvdberge)
|
||||||
- Fixed a crash with the Constructor (raoulvdberge)
|
- Fixed a crash with the Constructor (raoulvdberge)
|
||||||
- Fixed Crafting Pattern model (pauljoda)
|
- Fixed Crafting Pattern model (pauljoda)
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
|
|||||||
import net.minecraftforge.fml.common.network.NetworkRegistry;
|
import net.minecraftforge.fml.common.network.NetworkRegistry;
|
||||||
import net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper;
|
import net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper;
|
||||||
|
|
||||||
@Mod(modid = RS.ID, version = RS.VERSION, dependencies = RS.DEPENDENCIES, guiFactory = RS.GUI_FACTORY)
|
@Mod(modid = RS.ID, version = RS.VERSION, dependencies = RS.DEPENDENCIES, guiFactory = RS.GUI_FACTORY, updateJSON = RS.UPDATE_JSON)
|
||||||
public final class RS {
|
public final class RS {
|
||||||
static {
|
static {
|
||||||
FluidRegistry.enableUniversalBucket();
|
FluidRegistry.enableUniversalBucket();
|
||||||
@@ -25,6 +25,7 @@ public final class RS {
|
|||||||
public static final String VERSION = "1.4.2";
|
public static final String VERSION = "1.4.2";
|
||||||
public static final String DEPENDENCIES = "required-after:forge@[13.19.1.2188,);after:commoncapabilities@[1.3.1,);";
|
public static final String DEPENDENCIES = "required-after:forge@[13.19.1.2188,);after:commoncapabilities@[1.3.1,);";
|
||||||
public static final String GUI_FACTORY = "com.raoulvdberge.refinedstorage.gui.config.ModGuiFactory";
|
public static final String GUI_FACTORY = "com.raoulvdberge.refinedstorage.gui.config.ModGuiFactory";
|
||||||
|
public static final String UPDATE_JSON = "https://refinedstorage.raoulvdberge.com/update";
|
||||||
|
|
||||||
@SidedProxy(clientSide = "com.raoulvdberge.refinedstorage.proxy.ProxyClient", serverSide = "com.raoulvdberge.refinedstorage.proxy.ProxyCommon")
|
@SidedProxy(clientSide = "com.raoulvdberge.refinedstorage.proxy.ProxyClient", serverSide = "com.raoulvdberge.refinedstorage.proxy.ProxyCommon")
|
||||||
public static ProxyCommon PROXY;
|
public static ProxyCommon PROXY;
|
||||||
|
|||||||
@@ -5,11 +5,11 @@
|
|||||||
"description": "An elegant solution to your hoarding problem",
|
"description": "An elegant solution to your hoarding problem",
|
||||||
"version": "1.4.2",
|
"version": "1.4.2",
|
||||||
"mcversion": "1.11",
|
"mcversion": "1.11",
|
||||||
"url": "",
|
"url": "https://refinedstorage.raoulvdberge.com",
|
||||||
"updateUrl": "",
|
"updateUrl": "",
|
||||||
"authorList": ["Refined Storage contributors"],
|
"authorList": ["Refined Storage contributors"],
|
||||||
"credits": "",
|
"credits": "",
|
||||||
"logoFile": "/assets/refinedstorage/textures/logo.png",
|
"logoFile": "assets/refinedstorage/textures/logo.png",
|
||||||
"screenshots": [],
|
"screenshots": [],
|
||||||
"dependencies": []
|
"dependencies": []
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user