diff --git a/gradle.properties b/gradle.properties index 95f07ec8f..247878e0a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # Mod properties -mod_version=1.95.3 +mod_version=1.96.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 bd9ec247f..2f02e10cd 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,21 @@ +# New features in CC: Tweaked 1.96.0 + +* Use lightGrey for folders within the "list" program. +* Add getLimit to inventory peripherals. +* Expose the generic peripheral system to the public API. +* Add cc.expect.range (Lupus590). +* Allow calling cc.expect directly (MCJack123). +* Numerous improvements to documentation. + +And several bug fixes: +* Fix paintutils.drawLine incorrectly sorting coordinates (lilyzeiset). +* Improve JEI's handling of turtle/pocket upgrade recipes. +* Correctly handle sparse arrays in cc.pretty. +* Fix crashes when a turtle places a monitor (baeuric). +* Fix very large resource files being considered empty. +* Allow turtles to use compostors. +* Fix dupe bug when colouring turtles. + # New features in CC: Tweaked 1.95.3 Several bug fixes: 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 e3425e255..f853dbd32 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt +++ b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt @@ -1,10 +1,19 @@ -New features in CC: Tweaked 1.95.3 +New features in CC: Tweaked 1.96.0 -Several bug fixes: -* Correctly serialise sparse arrays into JSON (livegamer999) -* Fix hasAudio/playAudio failing on record discs. -* Fix rs.getBundledInput returning the output instead (SkyTheCodeMaster) -* Programs run via edit are now a little better behaved (Wojbie) -* Add User-Agent to a websocket's headers. +* Use lightGrey for folders within the "list" program. +* Add getLimit to inventory peripherals. +* Expose the generic peripheral system to the public API. +* Add cc.expect.range (Lupus590). +* Allow calling cc.expect directly (MCJack123). +* Numerous improvements to documentation. + +And several bug fixes: +* Fix paintutils.drawLine incorrectly sorting coordinates (lilyzeiset). +* Improve JEI's handling of turtle/pocket upgrade recipes. +* Correctly handle sparse arrays in cc.pretty. +* Fix crashes when a turtle places a monitor (baeuric). +* Fix very large resource files being considered empty. +* Allow turtles to use compostors. +* Fix dupe bug when colouring turtles. Type "help changelog" to see the full version history.