From f4de575d35cc901b969f53ef82fe4d206f27237d Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Wed, 3 Jan 2024 18:39:32 +0000 Subject: [PATCH] Bump CC:T to 1.101.4 --- gradle.properties | 2 +- .../computercraft/lua/rom/help/changelog.md | 4 ++++ .../data/computercraft/lua/rom/help/whatsnew.md | 17 ++--------------- 3 files changed, 7 insertions(+), 16 deletions(-) diff --git a/gradle.properties b/gradle.properties index bb1683ea8..6b10873a2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ kotlin.stdlib.default.dependency=false kotlin.jvm.target.validation.mode=error # Mod properties -modVersion=1.101.3 +modVersion=1.101.4 # Minecraft properties: We want to configure this here so we can read it in settings.gradle mcVersion=1.19.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 0259c9cd7..65ec16305 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,7 @@ +# New features in CC: Tweaked 1.101.4 + +* Turtles can now right click items "into" certain blocks (cauldrons and hives by default, configurable with the `computercraft:turtle_can_use` block tag). (samuelWilliams99) + # New features in CC: Tweaked 1.101.3 * Improve syntax errors when missing commas in tables, and on trailing commas in parameter lists. 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 be1308439..af52cccc8 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md +++ b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md @@ -1,18 +1,5 @@ -New features in CC: Tweaked 1.101.3 +New features in CC: Tweaked 1.101.4 -* Improve syntax errors when missing commas in tables, and on trailing commas in parameter lists. -* `speaker` program now reports an error on common unsupported audio formats. -* Small optimisations to the `window` API. - -Several bug fixes: -* Fix the REPL syntax reporting crashing on valid parses. -* Ignore metatables in `textutils.serialize`. -* Fix `gps.locate` returning `nan` when receiving a duplicate location (Wojbie). -* Ignore metatables in `textutils.serialize`. -* Fix crash when turtles are exploded by a null explosion. -* Lua REPL no longer accepts `)(` as a valid expression. -* Fix several inconsistencies with `require`/`package.path` in the Lua REPL (Wojbie). -* Fix private several IP address ranges not being blocked by the `$private` rule. -* Improve permission checks in the `/computercraft` command. +* Turtles can now right click items "into" certain blocks (cauldrons and hives by default, configurable with the `computercraft:turtle_can_use` block tag). (samuelWilliams99) Type "help changelog" to see the full version history.