diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b5b3257c18..4c5208867a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,49 @@ ## Changelog +## 2.3.2 + +BETA RELEASE + +Featured Changes: +* Added a Heating Coil Registry with CT Support for adding and removing Coils +* Fixed fluid tanks being shown twice in TheOneProbe +* Fixed machines overclocking too many times +* Overhauled and redesigned TheOneProbe providers for GT machines +* Overhauled Explosion Configs: machines can now explode in rain, water, and more + +* Fixed Electric Blast Furnace recipes of Magnetic Dusts +* Fixed UHV Energy Hatch recipes +* Disabled wrench rotation of the Clipboard +* Increased machine speed of GT recipes for vanilla items and GT covers +* Added Soft Hammer toggles for Item and Fluid I/O hatch auto-input/output +* Allowed Steam Solar Boilers to work in the desert when raining +* Fixed Steam Solar Boilers working in dimensions with no sun (The End) +* Changed Hermetic Casings to use a custom model and non-hardcoded textures +* Fixed crash with recursive nodes in the Terminal Recipe Chart App +* Improved multiblock JEI page block list ItemBlock accuracy +* Fixed crashes from Bedrock Fluid Veins +* Fixed being able to Silk Touch VariantActiveBlocks, such as Heating Coils +* Blacklisted the Crafting Station from the Terminal Console App +* Fixed multiblock coil bonuses not applying when not overclocking +* Fixed Wireless Digital Interface Cover creating highlight boxes in the wrong dimension +* Fixed Prospector Scanners showing Galacticraft planet blocks as Copper Ore +* Fixed Digital Interface Covers having unbounded slot selection +* Fixed Digital Interface Cover energy bar overflow +* Fixed fluids being extractable from input hatches with pipes +* Cleaned up Steam Multiblock tooltips +* Added fluid input minimum to Large Miners +* Fixed Supply Exact on Robot Arms not working above 1 stack of items +* Fixed numerous recipe conflicts in the Large Chemical Reactor +* Updated Russian Translation +* Internal: Updated Repository README with attribution and relevant links +* Internal: Stopped using some helper methods from CodeChickenLib +* Internal: Added Integer and String Block Unlisted Properties +* Internal: Changes to fluid related methods in MetaTileEntity + * Added `fillInternalTankFromFluidContainer(IFluidHandler fluidHandler)` + * Added `fillContainerFromInternalTank(IFluidHandler fluidHandler)` + * Removed `fillInternalTankFromFluidContainer(IItemHandlerModifiable importItems, IItemHandlerModifiable exportItems, int inputSlot, int outputSlot)` + * Removed `fillContainerFromInternalTank(IItemHandlerModifiable importItems, IItemHandlerModifiable exportItems, int inputSlot, int outputSlot)` + ### 2.3.1 BETA RELEASE (hotifx) diff --git a/src/main/java/gregtech/GregTechVersion.java b/src/main/java/gregtech/GregTechVersion.java index 813a74577fc..c8415f69c25 100644 --- a/src/main/java/gregtech/GregTechVersion.java +++ b/src/main/java/gregtech/GregTechVersion.java @@ -7,7 +7,7 @@ public final class GregTechVersion { //This number is incremented every major feature update public static final int MINOR = 3; //This number is incremented every time the feature is added, or bug is fixed. resets every major version change - public static final int REVISION = 1; + public static final int REVISION = 2; //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