Skip to content

Commit

Permalink
Bump version to 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
uyjulian committed Oct 7, 2017
1 parent 3101751 commit 2558511
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id "co.riiid.gradle" version "0.4.2"
}

version = '1.0.3'
version = '1.0.4'
group = 'com.uyjulian.minecraft.XrayMod'

ext.displayName = 'uyjulian\'s X-ray Mod'
Expand Down
2 changes: 1 addition & 1 deletion mcxray1.12.2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ litemod {
json {
displayName = project.property('displayName')
author = project.property('author')
mcversion = "1.12.r1"
mcversion = "1.12.r2"
mixinConfigs += "mixins.uyjuliansXrayMod.json"
version = project.version
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public String getName() {
}

@Override
public String getVersion() { return "1.0.3"; }
public String getVersion() { return "1.0.4"; }

@Override
public void init(File configPath) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class UyjuliansXrayModMain {
static List<String> blockList = Arrays.asList("minecraft:air", "minecraft:stone", "minecraft:grass", "minecraft:dirt", "minecraft:cobblestone", "minecraft:bedrock", "minecraft:sand", "minecraft:gravel", "minecraft:sandstone", "minecraft:netherrack", "minecraft:flowing_water", "minecraft:water", "minecraft:snow_layer", "minecraft:ice", "minecraft:snow");
private static List<KeyBinding> keyBinds = new ArrayList<KeyBinding>();
static String currentBlocklistName = "DefaultBlockList";
static String currentVersion = "1.0.3";
static String currentVersion = "1.0.4";

enum XrayMode {
disabled,
Expand Down

0 comments on commit 2558511

Please sign in to comment.