From 1f7551f831964dfe407cd9c8a42be3101923c1e8 Mon Sep 17 00:00:00 2001 From: "Joseph C. Sible" Date: Sun, 10 Jul 2016 14:59:53 -0400 Subject: [PATCH] Add CurseForge URL and drop 1.7.10 from version --- build.gradle | 2 +- .../FullscreenWhileInactiveModContainer.java | 4 ++-- src/main/resources/mcmod.info | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 7f50246..746f81b 100644 --- a/build.gradle +++ b/build.gradle @@ -17,7 +17,7 @@ buildscript { apply plugin: 'forge' -version = "1.7.10-1.0.0" +version = "1.0.0" group= "josephcsible.fullscreenwhileinactive" // http://maven.apache.org/guides/mini/guide-naming-conventions.html archivesBaseName = "fullscreenwhileinactive" diff --git a/src/main/java/josephcsible/fullscreenwhileinactive/FullscreenWhileInactiveModContainer.java b/src/main/java/josephcsible/fullscreenwhileinactive/FullscreenWhileInactiveModContainer.java index 4effd4a..c62d279 100644 --- a/src/main/java/josephcsible/fullscreenwhileinactive/FullscreenWhileInactiveModContainer.java +++ b/src/main/java/josephcsible/fullscreenwhileinactive/FullscreenWhileInactiveModContainer.java @@ -31,10 +31,10 @@ public FullscreenWhileInactiveModContainer() { // XXX almost all this is duplicated between here and mcmod.info metadata.modId = "fullscreenwhileinactive"; // XXX version is duplicated between here and build.gradle - metadata.version = "1.7.10-1.0.0"; + metadata.version = "1.0.0"; metadata.name = "FullscreenWhileInactive"; metadata.description = "Allows Minecraft to stay fullscreen when it becomes inactive, also fixing bug MC-55045"; - metadata.url = ""; + metadata.url = "http://minecraft.curseforge.com/projects/fullscreenwhileinactive"; metadata.authorList.add("Joseph C. Sible"); } diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info index 0971a48..077b95c 100644 --- a/src/main/resources/mcmod.info +++ b/src/main/resources/mcmod.info @@ -5,7 +5,7 @@ "description": "Allows Minecraft to stay fullscreen when it becomes inactive, also fixing bug MC-55045", "version": "${version}", "mcversion": "${mcversion}", - "url": "", + "url": "http://minecraft.curseforge.com/projects/fullscreenwhileinactive", "updateUrl": "", "authorList": ["Joseph C. Sible"], "credits": "",