Implemented support for the Forge update JSON system, fixes #1046

This commit is contained in:
raoulvdberge
2017-03-11 10:22:22 +01:00
parent fa06e16efc
commit 9c322bad7c
3 changed files with 5 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
# Refined Storage Changelog
### 1.4.2
- Implemented support for the Forge update JSON system (raoulvdberge)
- Added integration for MCMultiPart, this is an optional dependency (raoulvdberge)
- Fixed a crash with the Constructor (raoulvdberge)
- Fixed Crafting Pattern model (pauljoda)

View File

@@ -15,7 +15,7 @@ import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
import net.minecraftforge.fml.common.network.NetworkRegistry;
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 {
static {
FluidRegistry.enableUniversalBucket();
@@ -25,6 +25,7 @@ public final class RS {
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 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")
public static ProxyCommon PROXY;

View File

@@ -5,11 +5,11 @@
"description": "An elegant solution to your hoarding problem",
"version": "1.4.2",
"mcversion": "1.11",
"url": "",
"url": "https://refinedstorage.raoulvdberge.com",
"updateUrl": "",
"authorList": ["Refined Storage contributors"],
"credits": "",
"logoFile": "/assets/refinedstorage/textures/logo.png",
"logoFile": "assets/refinedstorage/textures/logo.png",
"screenshots": [],
"dependencies": []
}