diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 2dc5e9d..ac37b5b 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,8 @@ +version 1.3.2 + + - fairly substantial rewrite of algorithm to correctly trigger all events + - removal of the silk touch option + version 1.3.1 - fix silly null pointer diff --git a/build.properties b/build.properties index 763045e..a625dbb 100644 --- a/build.properties +++ b/build.properties @@ -4,7 +4,7 @@ forge_version=14.23.3.2655 mappings_version=snapshot_nodoc_20171202 # Mod -mod_version=1.3.1 +mod_version=1.3.2 compatible_versions=1.12.x # Curse diff --git a/src/main/java/arlyon/veining/Veining.java b/src/main/java/arlyon/veining/Veining.java index 75a046b..56fe6a6 100644 --- a/src/main/java/arlyon/veining/Veining.java +++ b/src/main/java/arlyon/veining/Veining.java @@ -55,7 +55,7 @@ public class Veining { ); public static final Map playerSettings = new HashMap<>(); static final String MOD_NAME = "Veining"; - static final String MOD_VERSION = "1.3.1"; + static final String MOD_VERSION = "1.3.2"; static final String UPDATE_JSON = "https://raw.githubusercontent.com/arlyon/veining/1.12.x/update.json"; static final String MINECRAFT_VERSIONS = "[1.12.0, 1.12.2]"; // starting with 1.12, up to 1.12.2 public static Logger log; diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info index c121da8..9b8b993 100644 --- a/src/main/resources/mcmod.info +++ b/src/main/resources/mcmod.info @@ -3,7 +3,7 @@ "modid": "veining", "name": "Veining", "description": "Uncovers an ancient enchantment allows you to mine veins in a single swing.", - "version": "1.3.1", + "version": "1.3.2", "mcversion": "1.12.2", "url": "https://github.com/arlyon/veining", "updateUrl": "", diff --git a/update.json b/update.json index 65c545c..419a0a5 100644 --- a/update.json +++ b/update.json @@ -1,6 +1,7 @@ { "homepage": "https://minecraft.curseforge.com/projects/veining", "1.12.2": { + "1.3.2": "https://github.com/arlyon/veining/releases/tag/1.3.2/1.12.x", "1.3.1": "https://github.com/arlyon/veining/releases/tag/1.3.1/1.12.x", "1.3.0": "https://github.com/arlyon/veining/releases/tag/1.3.0/1.12.x", "1.2.2": "https://github.com/arlyon/veining/releases/tag/1.2.2/1.12.x", @@ -8,6 +9,7 @@ "1.2.0": "https://github.com/arlyon/veining/releases/tag/1.2.0/1.12.x" }, "1.12.1": { + "1.3.2": "https://github.com/arlyon/veining/releases/tag/1.3.2/1.12.x", "1.3.1": "https://github.com/arlyon/veining/releases/tag/1.3.1/1.12.x", "1.3.0": "https://github.com/arlyon/veining/releases/tag/1.3.0/1.12.x", "1.2.2": "https://github.com/arlyon/veining/releases/tag/1.2.2/1.12.x", @@ -15,6 +17,7 @@ "1.2.0": "https://github.com/arlyon/veining/releases/tag/1.2.0/1.12.x" }, "1.12": { + "1.3.2": "https://github.com/arlyon/veining/releases/tag/1.3.2/1.12.x", "1.3.1": "https://github.com/arlyon/veining/releases/tag/1.3.1/1.12.x", "1.3.0": "https://github.com/arlyon/veining/releases/tag/1.3.0/1.12.x", "1.2.2": "https://github.com/arlyon/veining/releases/tag/1.2.2/1.12.x", @@ -36,12 +39,12 @@ "1.2.1": "https://github.com/arlyon/veining/releases/tag/1.2.1/1.11.x" }, "promos": { - "1.12.2-latest": "1.3.1", - "1.12.2-recommended": "1.3.1", - "1.12.1-latest": "1.3.1", - "1.12.1-recommended": "1.3.1", - "1.12-latest": "1.3.1", - "1.12-recommended": "1.3.1", + "1.12.2-latest": "1.3.2", + "1.12.2-recommended": "1.3.2", + "1.12.1-latest": "1.3.2", + "1.12.1-recommended": "1.3.2", + "1.12-latest": "1.3.2", + "1.12-recommended": "1.3.2", "1.11.2-latest": "1.2.2", "1.11.2-recommended": "1.2.2", "1.11.1-latest": "1.2.2",