Release 0.9.0-alpha

This commit is contained in:
slawkens 2023-06-02 06:37:25 +02:00
parent ca8db22639
commit f34e5f2ac0
2 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# Changelog
## [0.9.0-alpha - x.x.2023]
## [0.9.0-alpha - 02.06.2023]
Minimum PHP version for this release is 7.2.5.
@ -36,7 +36,6 @@ Minimum PHP version for this release is 7.2.5.
### Changed
* Composer is now used for external libraries like: Twig, PHPMailer, fast-route etc.
* mail support is disabled on fresh install, can be manually enabled by user
* don't show PHP errors on prod
* disable add php pages in admin panel for security. Option to disable plugins upload
* visitors counter shows now user browser, and also if its bot
* changes in required and optional PHP extensions

View File

@ -26,7 +26,7 @@
if (version_compare(phpversion(), '7.2.5', '<')) die('PHP version 7.2.5 or higher is required.');
const MYAAC = true;
const MYAAC_VERSION = '0.9.0-dev';
const MYAAC_VERSION = '0.9.0-alpha';
const DATABASE_VERSION = 35;
const TABLE_PREFIX = 'myaac_';
define('START_TIME', microtime(true));