From c9caffb10fb8d4bdc8221cab3f507bd8ae3f9973 Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Thu, 21 Mar 2024 21:57:05 +0000 Subject: [PATCH] Bump CC:T to 1.110.0 Tricky version number to type! --- gradle.properties | 2 +- .../computercraft/lua/rom/help/changelog.md | 15 +++++++++++++++ .../data/computercraft/lua/rom/help/whatsnew.md | 17 +++++++++++------ 3 files changed, 27 insertions(+), 7 deletions(-) diff --git a/gradle.properties b/gradle.properties index 4cd8aea48..a0129c816 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ kotlin.jvm.target.validation.mode=error # Mod properties isUnstable=false -modVersion=1.109.7 +modVersion=1.110.0 # 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 dbd0c1aab..9cb7717a4 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,18 @@ +# New features in CC: Tweaked 1.110.0 + +* Add a new `@c[...]` syntax for selecting computers in the `/computercraft` command. +* Remove custom breaking progress of modems on Forge. + +Several bug fixes: +* Fix client and server DFPWM transcoders getting out of sync. +* Fix `turtle.suck` reporting incorrect error when failing to suck items. +* Fix pocket computers displaying state (blinking, modem light) for the wrong computer. +* Fix crash when wrapping an invalid BE as a generic peripheral. +* Chest peripherals now reattach when a chest is converted into a double chest. +* Fix `speaker` program not resolving files relative to the current directory. +* Skip main-thread tasks if the peripheral is detached. +* Fix internal Lua VM errors if yielding inside `__tostring`. + # New features in CC: Tweaked 1.109.7 * Improve performance of removing and unloading wired cables/modems. 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 34ec09840..4afa55617 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,11 +1,16 @@ -New features in CC: Tweaked 1.109.7 +New features in CC: Tweaked 1.110.0 -* Improve performance of removing and unloading wired cables/modems. +* Add a new `@c[...]` syntax for selecting computers in the `/computercraft` command. +* Remove custom breaking progress of modems on Forge. 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. +* Fix client and server DFPWM transcoders getting out of sync. +* Fix `turtle.suck` reporting incorrect error when failing to suck items. +* Fix pocket computers displaying state (blinking, modem light) for the wrong computer. +* Fix crash when wrapping an invalid BE as a generic peripheral. +* Chest peripherals now reattach when a chest is converted into a double chest. +* Fix `speaker` program not resolving files relative to the current directory. +* Skip main-thread tasks if the peripheral is detached. +* Fix internal Lua VM errors if yielding inside `__tostring`. Type "help changelog" to see the full version history.