From 74ac5bb3d17e5bee30643a5d6702696600c06229 Mon Sep 17 00:00:00 2001 From: SquidDev Date: Sat, 7 Nov 2020 12:43:18 +0000 Subject: [PATCH] Bump to 1.94.0 --- gradle.properties | 2 +- .../data/computercraft/lua/rom/help/changelog.txt | 12 ++++++++++++ .../data/computercraft/lua/rom/help/whatsnew.txt | 13 ++++++++++--- 3 files changed, 23 insertions(+), 4 deletions(-) diff --git a/gradle.properties b/gradle.properties index ff1289383..5c6f6ea2b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # Mod properties -mod_version=1.93.1 +mod_version=1.94.0 # Minecraft properties (update mods.toml when changing) mc_version=1.15.2 diff --git a/src/main/resources/data/computercraft/lua/rom/help/changelog.txt b/src/main/resources/data/computercraft/lua/rom/help/changelog.txt index e22cae04e..b173cbceb 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/changelog.txt +++ b/src/main/resources/data/computercraft/lua/rom/help/changelog.txt @@ -1,3 +1,15 @@ +# New features in CC: Tweaked 1.94.0 + +* Add getter for window visibility (devomaa) +* Generic peripherals are no longer experimental, and on by default. +* Use term.blit to draw boxes in paintutils (Lemmmy). + +And several bug fixes: +* Fix turtles not getting advancements when turtles are on. +* Draw in-hand pocket computers with the correct transparent flags enabled. +* Several bug fixes to SNBT parsing. +* Fix several programs using their original name instead of aliases in usage hints (Lupus590). + # New features in CC: Tweaked 1.93.1 * Various documentation improvements (Lemmmy). diff --git a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt index 3354c403b..563dc0f69 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt +++ b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt @@ -1,6 +1,13 @@ -New features in CC: Tweaked 1.93.1 +New features in CC: Tweaked 1.94.0 -* Various documentation improvements (Lemmmy). -* Fix TBO monitor renderer on some older graphics cards (Lemmmy). +* Add getter for window visibility (devomaa) +* Generic peripherals are no longer experimental, and on by default. +* Use term.blit to draw boxes in paintutils (Lemmmy). + +And several bug fixes: +* Fix turtles not getting advancements when turtles are on. +* Draw in-hand pocket computers with the correct transparent flags enabled. +* Several bug fixes to SNBT parsing. +* Fix several programs using their original name instead of aliases in usage hints (Lupus590). Type "help changelog" to see the full version history.