diff --git a/CHANGELOG.md b/CHANGELOG.md index 920a30d77..fa0612429 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,10 @@ # Refined Storage Changelog -### 0.6 +### 0.5.4 **Bugfixes** - Fixed machines out of the Controller's chunk range only connecting after block break on rejoining of the world +- Fixed scrollbar skipping some rows when scrolling with mouse wheel +- Fixed machines from a long distance not being visible in the Controller **Features** - Shift clicking on placing Constructor and Destructor will have opposite direction diff --git a/build.gradle b/build.gradle index 5b5dfb1eb..82f17b11c 100755 --- a/build.gradle +++ b/build.gradle @@ -12,7 +12,7 @@ buildscript { } apply plugin: 'net.minecraftforge.gradle.forge' -version = "0.6" +version = "0.5.4" group = "refinedstorage" archivesBaseName = "refinedstorage" diff --git a/src/main/java/refinedstorage/RefinedStorage.java b/src/main/java/refinedstorage/RefinedStorage.java index 7d53f5467..39fd1a193 100755 --- a/src/main/java/refinedstorage/RefinedStorage.java +++ b/src/main/java/refinedstorage/RefinedStorage.java @@ -19,7 +19,7 @@ import refinedstorage.proxy.CommonProxy; @Mod(modid = RefinedStorage.ID, version = RefinedStorage.VERSION) public final class RefinedStorage { public static final String ID = "refinedstorage"; - public static final String VERSION = "0.6"; + public static final String VERSION = "0.5.4"; public static final SimpleNetworkWrapper NETWORK = NetworkRegistry.INSTANCE.newSimpleChannel(ID); diff --git a/src/main/resources/mcmod.info b/src/main/resources/mcmod.info index 0c2a69275..8e69e5497 100755 --- a/src/main/resources/mcmod.info +++ b/src/main/resources/mcmod.info @@ -3,7 +3,7 @@ "modid": "refinedstorage", "name": "Refined Storage", "description": "A Minecraft mod all about storage.", - "version": "0.6", + "version": "0.5.4", "mcversion": "1.9", "url": "", "updateUrl": "",