From: Patrick Canterino Date: Sat, 6 Jul 2024 13:48:59 +0000 (+0200) Subject: Jirafeau version 4.6.0 X-Git-Tag: 4.6.0 X-Git-Url: https://git.p6c8.net/jirafeau.git/commitdiff_plain/c0148db53bacf76d96f36fbf6c7e07f92ed6c7c5?ds=sidebyside Jirafeau version 4.6.0 --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 892d172..c4e27de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,7 +12,7 @@ 5. Follow the installation wizard, it should propose you the same data folder or even update automatically 6. Check your `/lib/config.local.php` and compare it with the `/lib/config.original.php` to see if new configuration items are available. If a new item is missing in your `config.local.php`, this may trigger some errors as Jirafeau may expect to have them. -## Version 4.6.0 (not yet released) +## Version 4.6.0 - New configuration options for allowing to require, check or generate file download passwords - Re-implemented server side encryption using PHP's `Sodium` extension (the formerly used `mcrypt` extension is deprecated) diff --git a/lib/settings.php b/lib/settings.php index 2c2235a..22a2a5a 100644 --- a/lib/settings.php +++ b/lib/settings.php @@ -41,7 +41,7 @@ if ($cfg['debug'] === true) { /* Jirafeau package */ define('JIRAFEAU_PACKAGE', 'Jirafeau'); -define('JIRAFEAU_VERSION', '4.6.0-beta'); +define('JIRAFEAU_VERSION', '4.6.0'); /* Directories. */ define('VAR_FILES', $cfg['var_root'] . 'files/');