From 8344c0a5c2d8dd2c85c77c162caa613d5b6eec5d Mon Sep 17 00:00:00 2001 From: Jonathan Coates Date: Sat, 28 Jun 2025 11:03:52 +0100 Subject: [PATCH] Bump CC:T to 1.116.0 --- gradle.properties | 2 +- .../assets/computercraft/lang/cs_cz.json | 2 ++ .../assets/computercraft/lang/ja_jp.json | 2 ++ .../assets/computercraft/lang/tr_tr.json | 2 ++ .../assets/computercraft/lang/zh_cn.json | 2 ++ .../computercraft/lua/rom/help/changelog.md | 18 +++++++++++++++++ .../computercraft/lua/rom/help/whatsnew.md | 20 +++++++++++++------ 7 files changed, 41 insertions(+), 7 deletions(-) diff --git a/gradle.properties b/gradle.properties index 0fa66cb6e..a67735bdf 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ kotlin.jvm.target.validation.mode=error # Mod properties isUnstable=false -modVersion=1.115.1 +modVersion=1.116.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/common/src/main/resources/assets/computercraft/lang/cs_cz.json b/projects/common/src/main/resources/assets/computercraft/lang/cs_cz.json index acd444f34..c4888a827 100644 --- a/projects/common/src/main/resources/assets/computercraft/lang/cs_cz.json +++ b/projects/common/src/main/resources/assets/computercraft/lang/cs_cz.json @@ -205,7 +205,9 @@ "item.computercraft.treasure_disk": "Disketa", "itemGroup.computercraft": "ComputerCraft", "tag.item.computercraft.computer": "Počítače", + "tag.item.computercraft.disks": "Disky", "tag.item.computercraft.monitor": "Monitory", + "tag.item.computercraft.pocket_computers": "Kapesní počítače", "tag.item.computercraft.turtle": "Roboti", "tag.item.computercraft.wired_modem": "Drátové modemy", "tracking_field.computercraft.avg": "%s (průměr)", diff --git a/projects/common/src/main/resources/assets/computercraft/lang/ja_jp.json b/projects/common/src/main/resources/assets/computercraft/lang/ja_jp.json index 4e1c7e8f4..332abbb4f 100644 --- a/projects/common/src/main/resources/assets/computercraft/lang/ja_jp.json +++ b/projects/common/src/main/resources/assets/computercraft/lang/ja_jp.json @@ -205,7 +205,9 @@ "item.computercraft.treasure_disk": "フロッピーディスク", "itemGroup.computercraft": "ComputerCraft", "tag.item.computercraft.computer": "コンピューター", + "tag.item.computercraft.disks": "ディスク", "tag.item.computercraft.monitor": "モニター", + "tag.item.computercraft.pocket_computers": "ポケットコンピューター", "tag.item.computercraft.turtle": "タートル", "tag.item.computercraft.wired_modem": "有線モデム", "tracking_field.computercraft.avg": "%s (平均)", diff --git a/projects/common/src/main/resources/assets/computercraft/lang/tr_tr.json b/projects/common/src/main/resources/assets/computercraft/lang/tr_tr.json index 0b5d4b1af..f20c1ff29 100644 --- a/projects/common/src/main/resources/assets/computercraft/lang/tr_tr.json +++ b/projects/common/src/main/resources/assets/computercraft/lang/tr_tr.json @@ -205,7 +205,9 @@ "item.computercraft.treasure_disk": "Disket", "itemGroup.computercraft": "ComputerCraft", "tag.item.computercraft.computer": "Bilgisayarlar", + "tag.item.computercraft.disks": "Diskler", "tag.item.computercraft.monitor": "Monitörler", + "tag.item.computercraft.pocket_computers": "Cep Bilgisayarları", "tag.item.computercraft.turtle": "Turtlelar", "tag.item.computercraft.wired_modem": "Kablolu modemler", "tracking_field.computercraft.avg": "%s (ort.)", diff --git a/projects/common/src/main/resources/assets/computercraft/lang/zh_cn.json b/projects/common/src/main/resources/assets/computercraft/lang/zh_cn.json index ffff6fc65..ef2d8afbf 100644 --- a/projects/common/src/main/resources/assets/computercraft/lang/zh_cn.json +++ b/projects/common/src/main/resources/assets/computercraft/lang/zh_cn.json @@ -205,7 +205,9 @@ "item.computercraft.treasure_disk": "软盘", "itemGroup.computercraft": "ComputerCraft", "tag.item.computercraft.computer": "计算机", + "tag.item.computercraft.disks": "磁盘", "tag.item.computercraft.monitor": "监视器", + "tag.item.computercraft.pocket_computers": "便携式计算机", "tag.item.computercraft.turtle": "海龟", "tag.item.computercraft.wired_modem": "有线调制解调器", "tracking_field.computercraft.avg": "%s (平均)", 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 d16716ba3..1f0479900 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,21 @@ +# New features in CC: Tweaked 1.116.0 + +* Add `turtle.getEquippedLeft()` and `turtle.getEquippedRight()`. +* Add item tags for floppy disks and pocket computers. +* Support multi-line strings and comments in `edit`. + +Several bug fixes: +* Ignore shader compilation errors when running with Pojav. +* Fix several issues with character input. +* Fix pocket computer dyes being lost when equipping/unequipping upgrades. +* Fix superflous warnings from allocation tracking. +* Fix `__lt`/`__le` not working on heterogeneous types. +* Many documentation fixes (Lemmmy, matematikaadit, McJack12). +* Fix `0` being treated as a valid colour in `window` and `colour.toBlit`. +* Fix out-of-bounds when pasting too lon text. +* Fix syntax highlighting of string escapes (LorneHyde). +* Fix sidebar texture of advanced computers being offset. + # New features in CC: Tweaked 1.115.1 * Update various translations (cyb3r, kevk2156, teamer337, yakku). 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 ba927c761..daa1c5de5 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,19 @@ -New features in CC: Tweaked 1.115.1 +New features in CC: Tweaked 1.116.0 -* Update various translations (cyb3r, kevk2156, teamer337, yakku). -* Support Fabric's item lookup API for registering media providers. +* Add `turtle.getEquippedLeft()` and `turtle.getEquippedRight()`. +* Add item tags for floppy disks and pocket computers. +* Support multi-line strings and comments in `edit`. Several bug fixes: -* Fix crashes on Create 6.0 (ellellie). -* Fix `speaker.playAudio` not updating speaker volume. -* Resize pocket lectern textures to fix issues with generating mipmaps. +* Ignore shader compilation errors when running with Pojav. +* Fix several issues with character input. +* Fix pocket computer dyes being lost when equipping/unequipping upgrades. +* Fix superflous warnings from allocation tracking. +* Fix `__lt`/`__le` not working on heterogeneous types. +* Many documentation fixes (Lemmmy, matematikaadit, McJack12). +* Fix `0` being treated as a valid colour in `window` and `colour.toBlit`. +* Fix out-of-bounds when pasting too lon text. +* Fix syntax highlighting of string escapes (LorneHyde). +* Fix sidebar texture of advanced computers being offset. Type "help changelog" to see the full version history.