From e84ddef877f6aca2a7a16fa9831827adc989851c Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Sun, 1 Aug 2021 09:02:05 +0100 Subject: [PATCH] Bump version to 1.98.0 --- gradle.properties | 2 +- .../data/computercraft/lua/rom/help/changelog.md | 8 +++++++- .../resources/data/computercraft/lua/rom/help/whatsnew.md | 8 +++++++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index b10ceaa3f..69557dcc4 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # Mod properties -mod_version=1.97.1 +mod_version=1.98.0 # Minecraft properties (update mods.toml when changing) mc_version=1.16.5 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 9c954f05b..846d61e0b 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/changelog.md +++ b/src/main/resources/data/computercraft/lua/rom/help/changelog.md @@ -1,16 +1,22 @@ -# New features in CC: Tweaked 1.97.1 +# New features in CC: Tweaked 1.98.0 +* Add motd for file uploading. * Add config options to limit total bandwidth used by the HTTP API. And several bug fixes: +* Fix `settings.define` not accepting a nil second argument (SkyTheCodeMaster). +* Various documentation fixes (Angalexik, emiliskiskis, SkyTheCodeMaster). * 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. +* Add a missing type check for `http.checkURL`. +* Prevent `parallel.*` from hanging when no arguments are given. * 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. +* Correctly wrap string within `textutils.slowWrite`. # New features in CC: Tweaked 1.97.0 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 5a2623d7f..6d5bbc59f 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md +++ b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md @@ -1,15 +1,21 @@ -New features in CC: Tweaked 1.97.1 +New features in CC: Tweaked 1.98.0 +* Add motd for file uploading. * Add config options to limit total bandwidth used by the HTTP API. And several bug fixes: +* Fix `settings.define` not accepting a nil second argument (SkyTheCodeMaster). +* Various documentation fixes (Angalexik, emiliskiskis, SkyTheCodeMaster). * 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. +* Add a missing type check for `http.checkURL`. +* Prevent `parallel.*` from hanging when no arguments are given. * 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. +* Correctly wrap string within `textutils.slowWrite`. Type "help changelog" to see the full version history.