diff --git a/gradle.properties b/gradle.properties index c63263ae3..6d72cad02 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ kotlin.jvm.target.validation.mode=error # Mod properties isUnstable=false -modVersion=1.113.1 +modVersion=1.114.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 646358909..fd0e90613 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,15 @@ +# New features in CC: Tweaked 1.114.0 + +* Add redstone relay peripheral. +* Add support for `math.atan(x, y)`. +* Update several translations. + +Several bug fixes: +* Fix pocket upgrades not appearing after crafting. +* Cancel `rednet.receive` and `Websocket.receive` timers after a message is received. +* Fix several issues with parsing and printing large doubles. +* Fix in-hand pocket computer being blank after changing dimension. + # New features in CC: Tweaked 1.113.1 * Update Japanese translation (konumatakaki). 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 c3684a632..7828adb8a 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,10 +1,13 @@ -New features in CC: Tweaked 1.113.1 +New features in CC: Tweaked 1.114.0 -* Update Japanese translation (konumatakaki). -* Improve performance of `textutils.urlEncode`. +* Add redstone relay peripheral. +* Add support for `math.atan(x, y)`. +* Update several translations. Several bug fixes: -* Fix overflow when converting recursive objects from Java to Lua. -* Fix websocket compression not working under Forge. +* Fix pocket upgrades not appearing after crafting. +* Cancel `rednet.receive` and `Websocket.receive` timers after a message is received. +* Fix several issues with parsing and printing large doubles. +* Fix in-hand pocket computer being blank after changing dimension. Type "help changelog" to see the full version history.