From e95857881f06b5c59677fe01907b189b0a62e8f1 Mon Sep 17 00:00:00 2001 From: DStrand1 Date: Fri, 7 Jan 2022 16:56:47 -0600 Subject: [PATCH] 2.0.3 --- CHANGELOG.md | 50 +++++++++++++++++++++ src/main/java/gregtech/GregTechVersion.java | 2 +- 2 files changed, 51 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 831c23914c7..a7cbe6941fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,55 @@ ## Changelog +### 2.0.3 +BETA RELEASE + +Featured Changes: + +* Portable Scanner (Tricorder): + * A new tool available at early MV, useful for scanning many things, like: + * Machines: Can be scanned to see their current progress, energy stored, fluids stored internally, etc. + * Generators: Can be scanned to see all the above, as well as their Power Production + * Cables: Can be scanned to see EU/t at that point (including losses), amperage, and more + * Can also be used to see performance data of Machines, showing the nanoseconds of CPU time they are taking on average + * Additionally, along comes a Debug Scanner, which shows more advanced details, useful for developers and pack authors + +* Surface Rock reworks: + * Surface rocks properly spawn in the Nether + * Model has been redone once again + * Surface rocks can now always be broken by a bare hand + * Surface rocks can be right-clicked to be "picked up" (drop their Tiny Dusts) + * A few fixes for Surface Blocks, which can be specified in JSON ore veins + +* Fix Various Mod Compatibility Problems: + * Fix crash with the Terminal Hardware Manager and some mods (like Building Gadgets) + * Fix crash with NuclearCraft in rare situations + * Fix NuclearCraft GTCE compat config being required off (config can now safely be enabled if you desire) + +* Change pipe/cable hitbox to "full" when holding a Pipe or Cable in your hand, and pressing SHIFT +* Fix many generator bugs (like Singleblock Generators occasionally outputting multiple amps) +* Fix Small Coal Boilers consuming Buckets when using Bucket Fuels +* Fix crash when using `addOre()` on a material in CraftTweaker +* Fix crash when running the PA with only 1 machine +* Fix a few default vein spawn heights to make them more accurate to their weight (copper-tin vein, mineral sands vein) +* Nerf Small Boiler cooldown rates slightly +* Fix Stainless Steel Gearbox recipe +* Add a few Glass-related recipes (Fluid Extract Glass Block, Fluid Solidify Glass Tubes) +* Fix some wrong Advancement triggers +* Fix double plate bender recipes +* Change Wooden Barrel to use Sticky Resin instead of Slimeball +* Fix Coke Oven allowing any number of Coke Oven Hatches +* Add ability for custom Chance Functions per RecipeMap +* Fix a few inconsistencies in the Ore Byproduct Page +* Fix Hammering Enchant being allowed on Axes and some other tools +* Fix Crafting Station dupe exploit +* Fix some issues with the LCE and ECE +* Add TOP info for Maintenance Status for Multiblocks +* Fix Activity Detector Covers missing recipes +* Significantly improve the performance of the Rock Breaker (about 16x more performant after changes) +* Fix `harderBrickRecipes` config making Brick Blocks require a Compressor +* Fix recipe conflict with Methanol +* Fix Electric and Steam Furnaces not properly working when clicking on the Progress Bar + ### 2.0.2 BETA RELEASE * Fix crash on null Fluid with some mods (and add better logging) diff --git a/src/main/java/gregtech/GregTechVersion.java b/src/main/java/gregtech/GregTechVersion.java index 510738726fe..627be1db14f 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 = 2; + public static final int REVISION = 3; //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