diff --git a/gradle.properties b/gradle.properties index 6a2a622b9..2e9a93b9f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # Mod properties -mod_version=1.91.0 +mod_version=1.92.0 # Minecraft properties (update mods.toml when changing) mc_version=1.15.2 diff --git a/src/main/resources/data/computercraft/lua/rom/help/changelog.txt b/src/main/resources/data/computercraft/lua/rom/help/changelog.txt index fbb88d766..38cc9f6dd 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/changelog.txt +++ b/src/main/resources/data/computercraft/lua/rom/help/changelog.txt @@ -1,3 +1,14 @@ +# New features in CC: Tweaked 1.92.0 + +* Bump Cobalt version: + * Add support for the __pairs metamethod. + * string.format now uses the __tostring metamethod. +* Add date-specific MOTDs (MCJack123). + +And several bug fixes: +* Correctly handle tabs within textutils.unserailizeJSON. +* Fix sheep not dropping items when sheered by turtles. + # New features in CC: Tweaked 1.91.0 * [Generic peripherals] Expose NBT hashes of items to inventory methods. diff --git a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt index 1ad4527c2..9a79e5602 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt +++ b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt @@ -1,13 +1,12 @@ -New features in CC: Tweaked 1.91.0 +New features in CC: Tweaked 1.92.0 -* [Generic peripherals] Expose NBT hashes of items to inventory methods. -* Bump Cobalt version - * Optimise handling of string concatenation. - * Add string.{pack,unpack,packsize} (MCJack123) +* Bump Cobalt version: + * Add support for the __pairs metamethod. + * string.format now uses the __tostring metamethod. +* Add date-specific MOTDs (MCJack123). And several bug fixes: -* Escape non-ASCII characters in JSON strings (neumond) -* Make field names in fs.attributes more consistent (abby) -* Fix textutils.formatTime correctly handle 12 AM (R93950X) +* Correctly handle tabs within textutils.unserailizeJSON. +* Fix sheep not dropping items when sheered by turtles. Type "help changelog" to see the full version history.