From bcb3e9bd535a7b73ead5a005426cf2f5d4c95d46 Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Sun, 29 Oct 2023 12:02:11 +0000 Subject: [PATCH] Bump CC:T to 1.108.4 --- gradle.properties | 2 +- .../data/computercraft/lua/rom/help/changelog.md | 12 ++++++++++++ .../data/computercraft/lua/rom/help/whatsnew.md | 11 +++++++++-- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index dfa227cb4..164c4465e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ kotlin.jvm.target.validation.mode=error # Mod properties isUnstable=false -modVersion=1.108.3 +modVersion=1.108.4 # Minecraft properties: We want to configure this here so we can read it in settings.gradle mcVersion=1.20.1 diff --git a/projects/core/src/main/resources/data/computercraft/lua/rom/help/changelog.md b/projects/core/src/main/resources/data/computercraft/lua/rom/help/changelog.md index d30b8f559..7ab1bca84 100644 --- a/projects/core/src/main/resources/data/computercraft/lua/rom/help/changelog.md +++ b/projects/core/src/main/resources/data/computercraft/lua/rom/help/changelog.md @@ -1,3 +1,15 @@ +# New features in CC: Tweaked 1.108.4 + +* Rewrite `@LuaFunction` generation to use `MethodHandle`s instead of ASM. +* Refactor `ComputerThread` to provide a cleaner interface. +* Remove `disable_lua51_features` config option. +* Update several translations (Sammy). + +Several bug fixes: +* Fix monitor peripheral becoming "detached" after breaking and replacing a monitor. +* Fix signs being empty when placed. +* Fix several inconsistencies with mount error messages. + # New features in CC: Tweaked 1.108.3 Several bug fixes: diff --git a/projects/core/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md b/projects/core/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md index ccb06c6c1..75f36b1f4 100644 --- a/projects/core/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md +++ b/projects/core/src/main/resources/data/computercraft/lua/rom/help/whatsnew.md @@ -1,6 +1,13 @@ -New features in CC: Tweaked 1.108.3 +New features in CC: Tweaked 1.108.4 + +* Rewrite `@LuaFunction` generation to use `MethodHandle`s instead of ASM. +* Refactor `ComputerThread` to provide a cleaner interface. +* Remove `disable_lua51_features` config option. +* Update several translations (Sammy). Several bug fixes: -* Fix disconnect when joining a dedicated server. +* Fix monitor peripheral becoming "detached" after breaking and replacing a monitor. +* Fix signs being empty when placed. +* Fix several inconsistencies with mount error messages. Type "help changelog" to see the full version history.