From ac7979fb46414250cdf4d34461542012e1f6e5cc Mon Sep 17 00:00:00 2001 From: SquidDev Date: Sat, 25 Jul 2020 11:53:46 +0100 Subject: [PATCH] Bump for 1.90.2 --- gradle.properties | 2 +- .../computercraft/lua/rom/help/changelog.txt | 4 ++++ .../computercraft/lua/rom/help/whatsnew.txt | 17 ++--------------- 3 files changed, 7 insertions(+), 16 deletions(-) diff --git a/gradle.properties b/gradle.properties index 08369c0f6..106c54e9c 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # Mod properties -mod_version=1.90.0 +mod_version=1.90.2 # 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 e12e9ebb7..08e8327a3 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.90.2 + +* Fix generic peripherals not being registered outside a dev environment. + # New features in CC: Tweaked 1.90.0 * Add cc.image.nft module, for working with nft files. (JakobDev) 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 b306fc690..8135e4db6 100644 --- a/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt +++ b/src/main/resources/data/computercraft/lua/rom/help/whatsnew.txt @@ -1,18 +1,5 @@ -New features in CC: Tweaked 1.90.0 +New features in CC: Tweaked 1.90.2 -* 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. -* Add configuration to control maximum render distance of monitors. -* 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. -* Fix full path of files being leaked in some errors. +* Fix generic peripherals not being registered outside a dev environment. Type "help changelog" to see the full version history.