From version 3.0.1 to 3.0.9 we released fixes, improvements and some new additions.
VERSION 3.0.9
Server:
- Fixed function getRequestInput() in the admin web application
- Fixed exception in Achievements admin section
- Updated Combu updater URL
VERSION 3.0.8
Server:
- /_setup: database.xml for database creation was missing the field “Code” in table “Leaderboard”
VERSION 3.0.7
Unity:
- Bug fix in account registration when an auto-ping interval was set
VERSION 3.0.6
Server:
- By now the Newsletters will not be sent to the disabled accounts
- Added new defines to configure SMTP options for sending emails (as alternative to local mail server) available to config.php: EMAIL_SMTP (if TRUE then SMTP will be used), EMAIL_SMTP_SECURE (can be NULL, ‘ssl’ or ‘tls’), EMAIL_SMTP_HOSTNAME (e.g. smtp.gmail.com), EMAIL_SMTP_PORT (e.g. 465), EMAIL_SMTP_USERNAME, EMAIL_SMTP_PASSWORD
VERSION 3.0.5
Unity:
- Added new property ‘code’ to class Leaderboard (you can now use ‘code’ or ‘id’ to any method requiring leaderboard’s id)
Server:
- web services that require leaderboard’s id now accepts also the leaderboard’s code as ‘id’ parameter
- You can now specify the Leaderboard Code property in the web admin
Database:
ALTER TABLE `LeaderBoard` ADD COLUMN `Code` VARCHAR(45) NOT NULL AFTER `IdApp`;
VERSION 3.0.4
Unity:
- Fixed storing credentials upon successful User.CreateGuest()
VERSION 3.0.3
Unity:
- Added overload method User.AutoLogin<T> to create localUser as T
Database:
- The field Active of table AppId has been changed from type bit(1) to tinyint(1)
SQL to upgrade database:
ALTER TABLE `AppId` CHANGE COLUMN `Active` `Active` TINYINT(1) NOT NULL;
VERSION 3.0.2
Server:
- Improvements in server auto-updater
- Fixed loading visible server settings sent to client
VERSION 3.0.1b
Database:
- Increased Leaderboard.ValueFloat size to DECIMAL(20,6)
SQL to upgrade database:
ALTER TABLE `LeaderBoard_User` CHANGE COLUMN `ValueFloat` `ValueFloat` DECIMAL(20,6) NOT NULL;