From 018ecfbaa0fe5ee93ddca33b32f2d33202d7034e Mon Sep 17 00:00:00 2001 From: SquidDev Date: Mon, 13 Jan 2020 13:43:38 +0000 Subject: [PATCH] =?UTF-8?q?=E2=96=B2=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- gradle.properties | 2 +- .../assets/computercraft/lua/rom/help/changelog.txt | 11 +++++++++++ .../assets/computercraft/lua/rom/help/whatsnew.txt | 12 +++++++----- 3 files changed, 19 insertions(+), 6 deletions(-) diff --git a/gradle.properties b/gradle.properties index c23effa6f..0b7c88e52 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # Mod properties -mod_version=1.86.0 +mod_version=1.86.1 # Minecraft properties mc_version=1.12.2 diff --git a/src/main/resources/assets/computercraft/lua/rom/help/changelog.txt b/src/main/resources/assets/computercraft/lua/rom/help/changelog.txt index dec1fec52..351e3784c 100644 --- a/src/main/resources/assets/computercraft/lua/rom/help/changelog.txt +++ b/src/main/resources/assets/computercraft/lua/rom/help/changelog.txt @@ -1,3 +1,14 @@ +# New features in CC: Tweaked 1.86.1 + +* Add a help message to the Lua REPL's exit function +* Add more MOTD messages. (osmarks) +* GPS requests are now made anonymously (osmarks) +* Minor memory usage improvements to Cobalt VM. + +And several bug fixes: +* Fix error when calling `write` with a number. +* Add missing assertion to `io.write`. + # New features in CC: Tweaked 1.86.0 * Add PATCH and TRACE HTTP methods. (jaredallard) diff --git a/src/main/resources/assets/computercraft/lua/rom/help/whatsnew.txt b/src/main/resources/assets/computercraft/lua/rom/help/whatsnew.txt index 3d8051511..04137ac9f 100644 --- a/src/main/resources/assets/computercraft/lua/rom/help/whatsnew.txt +++ b/src/main/resources/assets/computercraft/lua/rom/help/whatsnew.txt @@ -1,10 +1,12 @@ -New features in CC: Tweaked 1.86.0 +New features in CC: Tweaked 1.86.1 -* Add PATCH and TRACE HTTP methods. (jaredallard) -* Add more MOTD messages. (JakobDev) -* Allow removing and adding turtle upgrades via CraftTweaker. +* Add a help message to the Lua REPL's exit function +* Add more MOTD messages. (osmarks) +* GPS requests are now made anonymously (osmarks) +* Minor memory usage improvements to Cobalt VM. And several bug fixes: -* Fix crash when interacting with Wearable Backpacks. +* Fix error when calling `write` with a number. +* Add missing assertion to `io.write`. Type "help changelog" to see the full version history.