Skip to content

Commit 8344c0a

Browse files
committed
Bump CC:T to 1.116.0
1 parent a292d33 commit 8344c0a

File tree

7 files changed

+41
-7
lines changed

7 files changed

+41
-7
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ kotlin.jvm.target.validation.mode=error
1010

1111
# Mod properties
1212
isUnstable=false
13-
modVersion=1.115.1
13+
modVersion=1.116.0
1414

1515
# Minecraft properties: We want to configure this here so we can read it in settings.gradle
1616
mcVersion=1.20.1

projects/common/src/main/resources/assets/computercraft/lang/cs_cz.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,9 @@
205205
"item.computercraft.treasure_disk": "Disketa",
206206
"itemGroup.computercraft": "ComputerCraft",
207207
"tag.item.computercraft.computer": "Počítače",
208+
"tag.item.computercraft.disks": "Disky",
208209
"tag.item.computercraft.monitor": "Monitory",
210+
"tag.item.computercraft.pocket_computers": "Kapesní počítače",
209211
"tag.item.computercraft.turtle": "Roboti",
210212
"tag.item.computercraft.wired_modem": "Drátové modemy",
211213
"tracking_field.computercraft.avg": "%s (průměr)",

projects/common/src/main/resources/assets/computercraft/lang/ja_jp.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,9 @@
205205
"item.computercraft.treasure_disk": "フロッピーディスク",
206206
"itemGroup.computercraft": "ComputerCraft",
207207
"tag.item.computercraft.computer": "コンピューター",
208+
"tag.item.computercraft.disks": "ディスク",
208209
"tag.item.computercraft.monitor": "モニター",
210+
"tag.item.computercraft.pocket_computers": "ポケットコンピューター",
209211
"tag.item.computercraft.turtle": "タートル",
210212
"tag.item.computercraft.wired_modem": "有線モデム",
211213
"tracking_field.computercraft.avg": "%s (平均)",

projects/common/src/main/resources/assets/computercraft/lang/tr_tr.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,9 @@
205205
"item.computercraft.treasure_disk": "Disket",
206206
"itemGroup.computercraft": "ComputerCraft",
207207
"tag.item.computercraft.computer": "Bilgisayarlar",
208+
"tag.item.computercraft.disks": "Diskler",
208209
"tag.item.computercraft.monitor": "Monitörler",
210+
"tag.item.computercraft.pocket_computers": "Cep Bilgisayarları",
209211
"tag.item.computercraft.turtle": "Turtlelar",
210212
"tag.item.computercraft.wired_modem": "Kablolu modemler",
211213
"tracking_field.computercraft.avg": "%s (ort.)",

projects/common/src/main/resources/assets/computercraft/lang/zh_cn.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,9 @@
205205
"item.computercraft.treasure_disk": "软盘",
206206
"itemGroup.computercraft": "ComputerCraft",
207207
"tag.item.computercraft.computer": "计算机",
208+
"tag.item.computercraft.disks": "磁盘",
208209
"tag.item.computercraft.monitor": "监视器",
210+
"tag.item.computercraft.pocket_computers": "便携式计算机",
209211
"tag.item.computercraft.turtle": "海龟",
210212
"tag.item.computercraft.wired_modem": "有线调制解调器",
211213
"tracking_field.computercraft.avg": "%s (平均)",

projects/core/src/main/resources/data/computercraft/lua/rom/help/changelog.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# New features in CC: Tweaked 1.116.0
2+
3+
* Add `turtle.getEquippedLeft()` and `turtle.getEquippedRight()`.
4+
* Add item tags for floppy disks and pocket computers.
5+
* Support multi-line strings and comments in `edit`.
6+
7+
Several bug fixes:
8+
* Ignore shader compilation errors when running with Pojav.
9+
* Fix several issues with character input.
10+
* Fix pocket computer dyes being lost when equipping/unequipping upgrades.
11+
* Fix superflous warnings from allocation tracking.
12+
* Fix `__lt`/`__le` not working on heterogeneous types.
13+
* Many documentation fixes (Lemmmy, matematikaadit, McJack12).
14+
* Fix `0` being treated as a valid colour in `window` and `colour.toBlit`.
15+
* Fix out-of-bounds when pasting too lon text.
16+
* Fix syntax highlighting of string escapes (LorneHyde).
17+
* Fix sidebar texture of advanced computers being offset.
18+
119
# New features in CC: Tweaked 1.115.1
220

321
* Update various translations (cyb3r, kevk2156, teamer337, yakku).
Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
1-
New features in CC: Tweaked 1.115.1
1+
New features in CC: Tweaked 1.116.0
22

3-
* Update various translations (cyb3r, kevk2156, teamer337, yakku).
4-
* Support Fabric's item lookup API for registering media providers.
3+
* Add `turtle.getEquippedLeft()` and `turtle.getEquippedRight()`.
4+
* Add item tags for floppy disks and pocket computers.
5+
* Support multi-line strings and comments in `edit`.
56

67
Several bug fixes:
7-
* Fix crashes on Create 6.0 (ellellie).
8-
* Fix `speaker.playAudio` not updating speaker volume.
9-
* Resize pocket lectern textures to fix issues with generating mipmaps.
8+
* Ignore shader compilation errors when running with Pojav.
9+
* Fix several issues with character input.
10+
* Fix pocket computer dyes being lost when equipping/unequipping upgrades.
11+
* Fix superflous warnings from allocation tracking.
12+
* Fix `__lt`/`__le` not working on heterogeneous types.
13+
* Many documentation fixes (Lemmmy, matematikaadit, McJack12).
14+
* Fix `0` being treated as a valid colour in `window` and `colour.toBlit`.
15+
* Fix out-of-bounds when pasting too lon text.
16+
* Fix syntax highlighting of string escapes (LorneHyde).
17+
* Fix sidebar texture of advanced computers being offset.
1018

1119
Type "help changelog" to see the full version history.

0 commit comments

Comments
 (0)