diff --git a/gradle.properties b/gradle.properties index 1cfc0b125..d362f20f0 100644 --- a/gradle.properties +++ b/gradle.properties @@ -10,7 +10,7 @@ kotlin.jvm.target.validation.mode=error # Mod properties isUnstable=false -modVersion=1.109.3 +modVersion=1.109.4 # 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 4912c35fd..9b82dfa3b 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,16 @@ +# New features in CC: Tweaked 1.109.4 + +Several bug fixes: +* Don't log warnings when a computer allocates no bytes. +* Fix incorrect list index in command computer's NBT conversion (lonevox). +* Fix `endPage()` not updating the printer's block state. +* Several documentation improvements (znepb). +* Correctly mount disks before computer startup, not afterwards. +* Update to Cobalt 0.9 + * Debug hooks are now correctly called for every function. + * Fix several minor inconsistencies with `debug.getinfo`. + * Fix Lua tables being sized incorrectly when created from varargs. + # New features in CC: Tweaked 1.109.3 * Command computers now display in the operator items creative tab. 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 a5df96af0..c3a8867c4 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,14 @@ -New features in CC: Tweaked 1.109.3 - -* Command computers now display in the operator items creative tab. +New features in CC: Tweaked 1.109.4 Several bug fixes: -* Error if too many websocket messages are queued to be sent at once. -* Fix trailing-comma on method calls (e.g. `x:f(a, )` not using our custom error message. -* Fix internal compiler error when using `goto` as the first statement in an `if` block. -* Fix incorrect resizing of a tables' hash part when adding and removing keys. +* Don't log warnings when a computer allocates no bytes. +* Fix incorrect list index in command computer's NBT conversion (lonevox). +* Fix `endPage()` not updating the printer's block state. +* Several documentation improvements (znepb). +* Correctly mount disks before computer startup, not afterwards. +* Update to Cobalt 0.9 + * Debug hooks are now correctly called for every function. + * Fix several minor inconsistencies with `debug.getinfo`. + * Fix Lua tables being sized incorrectly when created from varargs. Type "help changelog" to see the full version history.