From 936742895b2a04f4ab7195e5629960e65e6bee6a Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Thu, 20 May 2021 18:29:56 +0100 Subject: [PATCH] Bump version to 1.94.0 --- gradle.properties | 2 +- .../computercraft/lua/rom/help/changelog.txt | 20 ++++++++++++++++- .../computercraft/lua/rom/help/whatsnew.txt | 22 ++++++++++++++----- 3 files changed, 36 insertions(+), 8 deletions(-) diff --git a/gradle.properties b/gradle.properties index c2d65448d..bebddc8e1 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ org.gradle.jvmargs=-Xmx1G # Mod properties -mod_version=1.95.3-beta +mod_version=1.96.0-beta # Minecraft properties mc_version=1.16.5 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 bcad65f44..3ba67d2e9 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/changelog.txt +++ b/src/main/resources/data/computercraft/lua/rom/help/changelog.txt @@ -1,4 +1,22 @@ -New features in CC: Restitched 1.95.3 +# New features in CC: Restitched 1.96.0 + +* Use lightGrey for folders within the "list" program. +* Add getLimit to inventory peripherals. +* Expose the generic peripheral system to the public API. +* Add cc.expect.range (Lupus590). +* Allow calling cc.expect directly (MCJack123). +* Numerous improvements to documentation. + +And several bug fixes: +* Fix paintutils.drawLine incorrectly sorting coordinates (lilyzeiset). +* Improve JEI's handling of turtle/pocket upgrade recipes. +* Correctly handle sparse arrays in cc.pretty. +* Fix crashes when a turtle places a monitor (baeuric). +* Fix very large resource files being considered empty. +* Allow turtles to use compostors. +* Fix dupe bug when colouring turtles. + +# New features in CC: Restitched 1.95.3 Several bug fixes: * Correctly serialise sparse arrays into JSON (livegamer999) 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 982911f36..552699a98 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt +++ b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt @@ -1,9 +1,19 @@ -New features in CC: Restitched 1.95.3 +New features in CC: Restitched 1.96.0 -Several bug fixes: -* Correctly serialise sparse arrays into JSON (livegamer999) -* Fix rs.getBundledInput returning the output instead (SkyTheCodeMaster) -* Programs run via edit are now a little better behaved (Wojbie) -* Add User-Agent to a websocket's headers. +* Use lightGrey for folders within the "list" program. +* Add getLimit to inventory peripherals. +* Expose the generic peripheral system to the public API. +* Add cc.expect.range (Lupus590). +* Allow calling cc.expect directly (MCJack123). +* Numerous improvements to documentation. + +And several bug fixes: +* Fix paintutils.drawLine incorrectly sorting coordinates (lilyzeiset). +* Improve JEI's handling of turtle/pocket upgrade recipes. +* Correctly handle sparse arrays in cc.pretty. +* Fix crashes when a turtle places a monitor (baeuric). +* Fix very large resource files being considered empty. +* Allow turtles to use compostors. +* Fix dupe bug when colouring turtles. Type "help changelog" to see the full version history.