diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b8d2ccd4..8830598d0 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/src/main/java/com/raoulvdberge/refinedstorage/RS.java b/src/main/java/com/raoulvdberge/refinedstorage/RS.java index 05f981bcd..5714caae2 100755 --- a/src/main/java/com/raoulvdberge/refinedstorage/RS.java +++ b/src/main/java/com/raoulvdberge/refinedstorage/RS.java @@ -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; diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info index b09859cdf..cd5871b92 100755 --- a/src/main/resources/mcmod.info +++ b/src/main/resources/mcmod.info @@ -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": [] }