From c2be4527be42b0eb999382602a6bf38ae8d88a8c Mon Sep 17 00:00:00 2001 From: DStrand1 Date: Tue, 18 Jan 2022 18:49:32 -0600 Subject: [PATCH] 2.0.5 --- CHANGELOG.md | 47 +++++++++++++++++++++ src/main/java/gregtech/GregTechVersion.java | 2 +- 2 files changed, 48 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74ca82d81fa..c7148f66daa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,52 @@ ## Changelog +### 2.0.5 +BETA RELEASE + +Featured Changes: + +* Item Magnets + * Similar to other mods, Item Magnets can bring dropped items towards you for a little bit of power + * Available at LV, and an upgraded form at HV, which has farther range and faster collection speed + +* Ore Dictionary Filter Overhaul + * Can now use expanded regex to filter items passed through + * New "Info" tooltip provided in the cover UI + * Added a "Test Slot," which can be provided an item to see if it matches your pattern (can use JEI "drag" ingredients) + +* Machine UI and Item Charging Improvements + * Machines now have a "Configurator Slot" which can be used to change the selected number of a Programmed Circuit + * Machine Charger Slot can now charge Electric Tools, as well as RF Tools + * Battery Buffer and Charger can now also charge RF tools + * New tooltips to explain what the Configurator and Charger slots do, as well as the GT logo and other misc UI improvements + +* Improvements to the `/gt util hand` command, now just `/gt hand` +* Fix various Cable and Wire rendering issues +* Fix Item Pipe Enhanced Round Robin voiding items occasionally +* Fix Pipes and Cables not working properly with `gamerule doDaylightCycle` disabled +* Fix Round Robin button not appearing on covers when the cover is placed on the block adjacent to a pipe +* Added a config to disable Log -> Charcoal smelting recipes +* Fix EBF UI not being openable +* Fix dust -> foil extrusion recipes +* Fix some missing recipes, like Alloy Smelter alloys and a few others +* Fix issues relating to Dyed Lens OreDictionary entries +* Fix Fueled Jetpack not always accepting fuel +* Fix Machine top and bottom faces not rotating with the front face +* Fix various instances of log spam with other mods, relating to crafting with tools +* Fix the Sense voiding some sugar cane when used +* Fix Diamond and Gold Swords having no recipes +* Fix some multiblock parts not displaying if they can be shared between multiblocks +* Fix MetaItem tooltip not appearing in some places when Advanced Tooltips is enabled +* Fix HV pump recipe +* Fix a few small chemical recipes, like Salt Water centrifuging, Aqua Regia composition, and Salt creation +* Rework "Small Lava Boiler" into "Small Liquid Boiler," which can now also burn Creosote +* Rebalance some fuels, move oils to combustion +* Add a few extra slots to Autoclave, EBF, Chemical Bath, Fermenter +* Internal: Add `SimpleCubeRenderer`, which renders a single texture across a full block +* Internal: Redo `IMultipleRecipeMaps` API +* Internal: Redo `MetaOreDictItem` +* Internal: Fix Materials with names that end in numbers causing strange errors + ### 2.0.4 BETA RELEASE diff --git a/src/main/java/gregtech/GregTechVersion.java b/src/main/java/gregtech/GregTechVersion.java index eca29ed0df8..542c15bb930 100644 --- a/src/main/java/gregtech/GregTechVersion.java +++ b/src/main/java/gregtech/GregTechVersion.java @@ -6,7 +6,7 @@ public final class GregTechVersion { //This number is incremented every major feature update public static final int MINOR = 0; //This number is incremented every time the feature is added, or bug is fixed. resets every major version change - public static final int REVISION = 4; + public static final int REVISION = 5; //This String is for additional info on the release version if needed (like alpha, beta, rc). Comment out when unused public static final String EXTRA = "beta"; //This is the String formatted version, used in builds