From 10a3a223a091a73534c282213b1c20beec6a86b4 Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Wed, 28 Jul 2021 16:15:32 +0100 Subject: [PATCH] Bump version to 1.97.1 Plan here is to release 1.98 for 1.16.x and 1.17.x and 1.97.1 for 1.15.x. However, will let this sit for a few days while I sort out 1.98 and the 1.17 port just in case any more bugs pop up. --- gradle.properties | 2 +- .../computercraft/lua/rom/help/changelog.md | 14 ++++++++ .../computercraft/lua/rom/help/whatsnew.md | 34 ++++++------------- 3 files changed, 26 insertions(+), 24 deletions(-) diff --git a/gradle.properties b/gradle.properties index 1a7fad24c..dfaba54c7 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # Mod properties -mod_version=1.97.0 +mod_version=1.97.1 # Minecraft properties (update mods.toml when changing) mc_version=1.15.2 diff --git a/src/main/resources/data/computercraft/lua/rom/help/changelog.md b/src/main/resources/data/computercraft/lua/rom/help/changelog.md index 3f4a12af0..13a199bff 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/changelog.md +++ b/src/main/resources/data/computercraft/lua/rom/help/changelog.md @@ -1,3 +1,17 @@ +# New features in CC: Tweaked 1.97.1 +* Add config options to limit total bandwidth used by the HTTP API. + +And several bug fixes: +* Fix selected slot indicator not appearing in turtle interface. +* Fix crash when printers are placed as part of world generation. +* Fix crash when breaking a speaker on a multiplayer world. +* Prevent issue in rednet when the message ID is NaN. +* Fix `help` program crashing when terminal changes width. +* Ensure monitors are well-formed when placed, preventing graphical glitches + when using Carry On or Quark. +* Accept several more extensions in the websocket client. +* Prevent `wget` crashing when given an invalid URL and no filename. + # New features in CC: Tweaked 1.97.0 * Update several translations (Anavrins, Jummit, Naheulf). diff --git a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md index b715d13f2..5a2623d7f 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md +++ b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md @@ -1,27 +1,15 @@ -New features in CC: Tweaked 1.97.0 - -* Update several translations (Anavrins, Jummit, Naheulf). -* Add button to view a computer's folder to `/computercraft dump`. -* Allow cleaning dyed turtles in a cauldron. -* Add scale subcommand to `monitor` program (MCJack123). -* Add option to make `textutils.serialize` not write an indent (magiczocker10). -* Allow comparing vectors using `==` (fatboychummy). -* Improve HTTP error messages for SSL failures. -* Allow `craft` program to craft unlimited items (fatboychummy). -* Impose some limits on various command queues. -* Add buttons to shutdown and terminate to computer GUIs. -* Add program subcompletion to several programs (Wojbie). -* Update the `help` program to accept and (partially) highlight markdown files. -* Remove config option for the debug API. -* Allow setting the subprotocol header for websockets. +New features in CC: Tweaked 1.97.1 +* Add config options to limit total bandwidth used by the HTTP API. And several bug fixes: -* Fix NPE when using a treasure disk when no treasure disks are available. -* Prevent command computers discarding command ouput when certain game rules are off. -* Fix turtles not updating peripherals when upgrades are unequipped (Ronan-H). -* Fix computers not shutting down on fatal errors within the Lua VM. -* Speakers now correctly stop playing when broken, and sound follows noisy turtles and pocket computers. -* Update the `wget` to be more resiliant in the face of user-errors. -* Fix exiting `paint` typing "e" in the shell. +* Fix selected slot indicator not appearing in turtle interface. +* Fix crash when printers are placed as part of world generation. +* Fix crash when breaking a speaker on a multiplayer world. +* Prevent issue in rednet when the message ID is NaN. +* Fix `help` program crashing when terminal changes width. +* Ensure monitors are well-formed when placed, preventing graphical glitches + when using Carry On or Quark. +* Accept several more extensions in the websocket client. +* Prevent `wget` crashing when given an invalid URL and no filename. Type "help changelog" to see the full version history.