Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 1.26 KB

README.md

File metadata and controls

35 lines (29 loc) · 1.26 KB

Open-Update

DO NOT INCLUDE THIS SOURCE IN YOUR MOD! THIS WILL BREAK STUFF

All you or your users need to install is http://ci.pc-logix.com/job/OpenUpdater/

To register your mod with the OpenUpdater simply add the following block of code to your mods PreInit

		if ((event.getSourceFile().getName().endsWith(".jar")) && event.getSide().isClient()) {
			try {
				Class.forName("pcl.mud.OpenUpdater").getDeclaredMethod("registerMod", ModContainer.class, URL.class, URL.class).invoke(null, FMLCommonHandler.instance().findContainerFor(this),
								new URL("http://somewebsite.com/latestbuild.xml"),
								new URL("http://somewebsite.com/changelog.txt"));
			} catch (Throwable e) {
				//Let the user know that registration failed.
			}
		}

If the user doesn't have OpenUpdater installed their game will not crash.

the format of latestbuild.xml is simply

<?xml version="1.0" encoding="UTF-8"?>
<mod modid="yourmodid">
	<mcVersion version="1.7.10">
		<release type="release" version="modversion"
		url="http://somewebsite.com"
		download="http://somewebsite.com/path/to/your/mod.jar"/>
	</mcVersion>
</mod>

Lastly the changelog.txt is just a plaintext listing of changes if you want it displayed to the client.

The file names don't matter, these are just examples.