Bump version to 1.90.0

Going to let this stew for a couple of days - there's probably something
else which'll break.
This commit is contained in:
SquidDev 2020-07-06 15:38:09 +01:00
parent 90c5d3f1e8
commit 3f277a7a7b
3 changed files with 27 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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.