mirror of
				https://github.com/SquidDev-CC/CC-Tweaked
				synced 2025-10-31 21:52:59 +00:00 
			
		
		
		
	Bump CC:T to 1.116.0
This commit is contained in:
		| @@ -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 | ||||
|   | ||||
| @@ -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)", | ||||
|   | ||||
| @@ -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 (平均)", | ||||
|   | ||||
| @@ -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.)", | ||||
|   | ||||
| @@ -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 (平均)", | ||||
|   | ||||
| @@ -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). | ||||
|   | ||||
| @@ -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. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jonathan Coates
					Jonathan Coates