Skip to content

Commit

Permalink
Change updateJSON to point to the version branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ljfa-ag committed Jun 8, 2016
1 parent cb2ec2a commit 8afe2b3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 14 deletions.
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {

apply plugin: 'net.minecraftforge.gradle.forge'

version = "1.2"
version = "1.2.1"
group= "ljfa.tntutils"
archivesBaseName = "tnt_utilities-mc1.9"

Expand All @@ -33,12 +33,11 @@ jar {
}

curseforge {
apiKey = project.curseForgeApiKey
apiKey = project.hasProperty('curseForgeApiKey') ? project.curseForgeApiKey : ''
project {
id = '227449'
changelog = ''
releaseType = 'alpha'
addGameVersion '1.9'
releaseType = 'release'
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ljfa/tntutils/Reference.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ public class Reference {
public static final String CLIENT_PROXY_CLASS = "ljfa.tntutils.proxy.ClientProxy";
public static final String SERVER_PROXY_CLASS = "ljfa.tntutils.proxy.CommonProxy";
public static final String GUI_FACTORY_CLASS = "ljfa.tntutils.gui.TntuGuiFactory";
public static final String UPDATE_JSON = "https://raw.githubusercontent.com/ljfa-ag/TNTUtils/master/version.json";
public static final String UPDATE_JSON = "https://raw.githubusercontent.com/ljfa-ag/TNTUtils/version/version.json";
}
2 changes: 1 addition & 1 deletion src/main/java/ljfa/tntutils/TNTUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

@Mod(modid = Reference.MODID, name = Reference.MODNAME, version = Reference.VERSION, acceptableRemoteVersions = "*",
guiFactory = Reference.GUI_FACTORY_CLASS, dependencies = "required-after:tnt_utilities_core",
acceptedMinecraftVersions = "[1.9,)", updateJSON = Reference.UPDATE_JSON)
acceptedMinecraftVersions = "[1.9]", updateJSON = Reference.UPDATE_JSON)
public class TNTUtils {
@Mod.Instance(Reference.MODID)
public static TNTUtils instance;
Expand Down
8 changes: 0 additions & 8 deletions version.json

This file was deleted.

0 comments on commit 8afe2b3

Please sign in to comment.