diff --git a/gradle.properties b/gradle.properties index 79b9114e3..a42181268 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # Mod properties -mod_version=1.88.0 +mod_version=1.88.1 # 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 1ce64df8a..82edfe40c 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,7 @@ +# New features in CC: Tweaked 1.88.1 + +* Fix error on objects with too many methods. + # New features in CC: Tweaked 1.88.0 * Computers and turtles now preserve their ID when broken. 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 eb087af78..e3563cb08 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt +++ b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt @@ -1,19 +1,5 @@ -New features in CC: Tweaked 1.88.0 +New features in CC: Tweaked 1.88.1 -* Computers and turtles now preserve their ID when broken. -* Add `peripheral.getName` - returns the name of a wrapped peripheral. -* Reduce network overhead of monitors and terminals. -* Add a TBO backend for monitors, with a significant performance boost. -* The Lua REPL warns when declaring locals (lupus590, exerro) -* Add config to allow using command computers in survival. -* Add fs.isDriveRoot - checks if a path is the root of a drive. -* `cc.pretty` can now display a function's arguments and where it was defined. The Lua REPL will show arguments by default. -* Move the shell's `require`/`package` implementation to a separate `cc.require` module. -* Move treasure programs into a separate external data pack. - -And several bug fixes: -* Fix io.lines not accepting arguments. -* Fix settings.load using an unknown global (MCJack123). -* Prevent computers scanning peripherals twice. +* Fix error on objects with too many methods. Type "help changelog" to see the full version history.