This version brings SQLite support for block storage, and makes it the new default storage method!
If you were previously using YAML for storage, your yml file will still work, but, you should consider migrating to SQLite, as it is much faster than yml.
To migrate from yaml to SQLite, add the following to your config.yml:
Code (YAML):
# Information about the SQLite database for storing blocks
# This is only used when blockStorageFormat above is set to "sqlite"
# You don't need too change any of these values, if you don't want to
blockStorageSQLite:
database
: CustomItems
# You can change this if you want
table
: CustomItemBlocks
# You can change this if you want
and change blockStorageFormat to "sqlite". Then, in console type "cui blockstorage migrate yaml sqlite" to migrate from YAML to sqlite!