- Improved logging layout in console, now including time information and log levels
- Logs are now color-coded (Can be disabled if needed by passing in -DstripColors=true into launch script. e.g.
java -DstripColors=true -jar BedrockConnect-1.0-SNAPSHOT.jar
) - Log files can be optionally enabled by passing in -DlogFile=true into launch script (e.g.
java -DlogFile=true -jar BedrockConnect-1.0-SNAPSHOT.jar
)
- Logs are now color-coded (Can be disabled if needed by passing in -DstripColors=true into launch script. e.g.
- Added a debug mode that logs more debugging-related events (Can be enabled by setting debug to true in settings)
- Added functionality for a MOTD/Welcome screen (See motd/motd_* settings for more info)
- Fixed bug with "Edit Server" action where a misplaced leading colon is placed when no display name is entered
- ⚠️Removal of the previously marked deprecated nodb setting ⚠️ Using no database is now the new default of the program, and setting nodb to true is no longer required.
- This should not affect most setups, database for storage will continue to be used if you already have configuration set to do so through db_* or legacy mysql_* settings. And any non-database setups that have nodb=true will still continue to function as normal.
- Note that your setup may be affected if you don't have any database configuration set, and are relying on all the default database config values. In which case, you should set the setting
db_type
tomysql
to ensure database continues being used for storage. See previously released wiki page on migrating over to the new database settings for more info.