From 57a6add81ac6c29454f3b0286e3e7a2f6f86b5e2 Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Sun, 22 Feb 2026 12:28:00 +0000 Subject: [PATCH] Bump CC:T to 1.117.1 --- .pre-commit-config.yaml | 6 +++--- gradle.properties | 2 +- .../computercraft/lua/rom/help/changelog.md | 8 ++++++++ .../computercraft/lua/rom/help/whatsnew.md | 19 +++++-------------- 4 files changed, 17 insertions(+), 18 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 76e73fc5f..59c0225c9 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ # See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v5.0.0 + rev: v6.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer @@ -20,14 +20,14 @@ repos: exclude: "tsconfig\\.json$" - repo: https://github.com/editorconfig-checker/editorconfig-checker.python - rev: 2.7.2 + rev: 3.6.0 hooks: - id: editorconfig-checker args: ['-disable-indentation'] exclude: "^(.*\\.(bat)|LICENSE)$" - repo: https://github.com/fsfe/reuse-tool - rev: v5.0.2 + rev: v6.2.0 hooks: - id: reuse diff --git a/gradle.properties b/gradle.properties index 8b56130dc..3e0295b60 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ kotlin.jvm.target.validation.mode=error # Mod properties isUnstable=false -modVersion=1.117.0 +modVersion=1.117.1 # 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 01aaa449d..3ab03dd25 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,11 @@ +# New features in CC: Tweaked 1.117.1 + +Several bug fixes: +* Several documentation fixes (MarianoAlipi, Pokebrouserkat). +* Fix `pushFluid`/`pullFluid` not working when fluids have NBT (UQuark). +* Limit length of sound in `speaker.playSound`. +* Remove confusing "ComputerCraft may be installed incorrectly" message. + # New features in CC: Tweaked 1.117.0 * Support mouse input for pocket computers on a lectern. 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 7de5dff80..656d9cd5e 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,18 +1,9 @@ -New features in CC: Tweaked 1.117.0 - -* Support mouse input for pocket computers on a lectern. -* Pocket computers on a lectern now attach the peripheral below. -* Add map colour to block and item details (ShreksHellraiser). -* Add potion effects to item details. -* add `getResponseHeaders` method to websocket handles. -* Update translations. +New features in CC: Tweaked 1.117.1 Several bug fixes: -* Many documentation fixes (McJack123, tomodachi94). -* Fix crash when CC:T blocks are placed with Building Gadgets. -* Fix redstone relays not updating redstone input/output on chunk load. -* Fix inconsistency with handling `. .` on Windows. -* Fix bundled cable input not updating with MoreRed. -* Fix `websocket_closed` not always being closed when the socket closes due to an error. +* Several documentation fixes (MarianoAlipi, Pokebrouserkat). +* Fix `pushFluid`/`pullFluid` not working when fluids have NBT (UQuark). +* Limit length of sound in `speaker.playSound`. +* Remove confusing "ComputerCraft may be installed incorrectly" message. Type "help changelog" to see the full version history.