]> git.p6c8.net - jirafeau_project.git/commitdiff
Jirafeau version 4.0.0 4.0.0
authorJerome Jutteau <jerome@jutteau.fr>
Mon, 4 Nov 2019 22:17:45 +0000 (23:17 +0100)
committerJerome Jutteau <jerome@jutteau.fr>
Mon, 4 Nov 2019 22:55:10 +0000 (23:55 +0100)
Signed-off-by: Jerome Jutteau <jerome@jutteau.fr>
README.md
lib/settings.php

index dc3522a2fb4eac286834ca64000ab1f89049232f..db4bbcaf589a1e43ac7021f3edf56ef0a66d827e 100644 (file)
--- a/README.md
+++ b/README.md
@@ -432,3 +432,12 @@ The very first version of Jirafeau after the fork of Jyraphe.
 - Docker fix
 - Advertise javascript license for LibreJS compatibility
 - other minor fixes
 - Docker fix
 - Advertise javascript license for LibreJS compatibility
 - other minor fixes
+
+## Version 4.0.0
+
+- Removed plain-text password support for admin auth (breaking change). Update `admin_password` option using `echo -n MyNewPassw0rd | sha256sum` command.
+- Default folder sub-division to 8 characters (breaking change).
+- New option `upload_ip_nopassword` to allow a list of IP to access Jirafeau without password
+- Bugfix with LibreJS
+- Other minor bug fixes
+- More languages supported
index 48fbd40d108e7c77a40ee13c89294ecd5a3d9d1d..b0688137baeb82a6544d75ecb3c56971e0c7793a 100644 (file)
@@ -33,7 +33,7 @@ if (file_exists(JIRAFEAU_ROOT . 'lib/config.local.php')) {
 
 /* Jirafeau package */
 define('JIRAFEAU_PACKAGE', 'Jirafeau');
 
 /* Jirafeau package */
 define('JIRAFEAU_PACKAGE', 'Jirafeau');
-define('JIRAFEAU_VERSION', '3.4.1');
+define('JIRAFEAU_VERSION', '4.0.0');
 
 /* Directories. */
 define('VAR_FILES', $cfg['var_root'] . 'files/');
 
 /* Directories. */
 define('VAR_FILES', $cfg['var_root'] . 'files/');

patrick-canterino.de