From 3493159a05472e38f991dc087c03e8489696879b Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Sun, 10 Mar 2024 19:10:09 +0000 Subject: [PATCH] Bump CC:T to 1.109.7 --- gradle.properties | 2 +- .../data/computercraft/lua/rom/help/changelog.md | 10 ++++++++++ .../data/computercraft/lua/rom/help/whatsnew.md | 10 ++++++---- 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/gradle.properties b/gradle.properties index db296f1c4..4cd8aea48 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ kotlin.jvm.target.validation.mode=error # Mod properties isUnstable=false -modVersion=1.109.6 +modVersion=1.109.7 # 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 d728ba46a..dbd0c1aab 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,13 @@ +# New features in CC: Tweaked 1.109.7 + +* Improve performance of removing and unloading wired cables/modems. + +Several bug fixes: +* Fix monitors sometimes not updating on the client when chunks are unloaded and reloaded. +* `colour.toBlit` correctly errors on out-of-bounds values. +* Round non-standard colours in `window`, like `term.native()` does. +* Fix the client monitor rendering both the current and outdated contents. + # New features in CC: Tweaked 1.109.6 * Improve several Lua parser error messages. 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 4a57b064e..34ec09840 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,9 +1,11 @@ -New features in CC: Tweaked 1.109.6 +New features in CC: Tweaked 1.109.7 -* Improve several Lua parser error messages. -* Allow addon mods to register `require`able modules. +* Improve performance of removing and unloading wired cables/modems. Several bug fixes: -* Fix weak tables becoming malformed when keys are GCed. +* Fix monitors sometimes not updating on the client when chunks are unloaded and reloaded. +* `colour.toBlit` correctly errors on out-of-bounds values. +* Round non-standard colours in `window`, like `term.native()` does. +* Fix the client monitor rendering both the current and outdated contents. Type "help changelog" to see the full version history.