I've found a couple of issues in this release. One is a typo in the logs.php file that affects command-line stat parsing.
To fix this, just change:
if ($setglobals = true) {
to:
if ($setglobals == true) {
The other involves UTF-8 encoding, affecting things such as map names and author names. I ...