From 3f277a7a7b1c5f5c5260810eebfbc699cc382396 Mon Sep 17 00:00:00 2001 From: SquidDev Date: Mon, 6 Jul 2020 15:38:09 +0100 Subject: [PATCH] Bump version to 1.90.0 Going to let this stew for a couple of days - there's probably something else which'll break. --- gradle.properties | 2 +- .../data/computercraft/lua/rom/help/changelog.txt | 15 ++++++++++++++- .../data/computercraft/lua/rom/help/whatsnew.txt | 13 ++++++++++++- 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index 0a6ccbc8b..08369c0f6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # Mod properties -mod_version=1.89.2 +mod_version=1.90.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 294e53eb5..9440b0f00 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/changelog.txt +++ b/src/main/resources/data/computercraft/lua/rom/help/changelog.txt @@ -1,6 +1,19 @@ -# New features in CC: Tweaked 1.89.2 +# New features in CC: Tweaked 1.90.0 +* Add cc.image.nft module, for working with nft files. (JakobDev) +* [experimental] Provide a generic peripheral for any tile entity without an existing one. We currently provide methods for working with inventories, fluid tanks and energy storage. This is disabled by default, and must be turned on in the config. +* Add configuration to control the sizes of monitors and terminals. +* Allow getting "detailed" information about an item, using `turtle.getItemDetail(slot, true)`. This will contain the same information that the generic peripheral supplies. + +And several bug fixes: +* Add back config for allowing interacting with command computers. +* Fix write method missing from printers. * Fix dupe bug when killing an entity with a turtle. +* Correctly supply port in the Host header (neumond). +* Fix turtle.craft failing when missing an argument. +* Fix deadlock when mistakenly "watching" an unloaded chunk. + +Type "help changelog" to see the full version history. # New features in CC: Tweaked 1.89.1 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 d6718d6b8..62a5aa8ca 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt +++ b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt @@ -1,5 +1,16 @@ -New features in CC: Tweaked 1.89.2 +New features in CC: Tweaked 1.90.0 +* Add cc.image.nft module, for working with nft files. (JakobDev) +* [experimental] Provide a generic peripheral for any tile entity without an existing one. We currently provide methods for working with inventories, fluid tanks and energy storage. This is disabled by default, and must be turned on in the config. +* Add configuration to control the sizes of monitors and terminals. +* Allow getting "detailed" information about an item, using `turtle.getItemDetail(slot, true)`. This will contain the same information that the generic peripheral supplies. + +And several bug fixes: +* Add back config for allowing interacting with command computers. +* Fix write method missing from printers. * Fix dupe bug when killing an entity with a turtle. +* Correctly supply port in the Host header (neumond). +* Fix turtle.craft failing when missing an argument. +* Fix deadlock when mistakenly "watching" an unloaded chunk. Type "help changelog" to see the full version history.