]> git.p6c8.net - jirafeau.git/commitdiff
Jirafeau version 4.1.1 4.1.1
authorJerome Jutteau <jerome@jutteau.fr>
Fri, 22 Nov 2019 22:58:28 +0000 (23:58 +0100)
committerJerome Jutteau <jerome@jutteau.fr>
Fri, 22 Nov 2019 22:58:28 +0000 (23:58 +0100)
Signed-off-by: Jerome Jutteau <jerome@jutteau.fr>
README.md
lib/settings.php

index 4ef315be1ec6865ef26e3c9105d199a6d65db017..8e6fe31c93b4ee4cec2d829bc01fd185168b31bd 100644 (file)
--- a/README.md
+++ b/README.md
@@ -128,10 +128,11 @@ find files -type f ! -name "*_count" | while read f; do bn="$(basename "$f")"; d
 find links -type f | while read link; do bn="$(basename "$link")"; mkdir "links/$bn"; mv "$link" "links/$bn/"; done; find links -maxdepth 1 -type d -iname "?" -exec rm -rf {} \;
 ```
 
-### From 4.0.0 to 4.1.0
+### From 4.0.0 to 4.1.1
 
 There is nothing special to do to update from/to the following versions:
 - 4.0.0 -> 4.1.0
+- 4.1.0 -> 4.1.1
 
 ### Troubleshooting
 
@@ -475,3 +476,7 @@ The very first version of Jirafeau after the fork of Jyraphe.
 - Cosmetic fixes
 - More languages supported and language fixes
 
+## Version 4.1.1
+
+- Fix lang sanity check
+
index fa7a732ccb3c7c51988cdf028e557061780e3e9f..9bccc86069215cf78abf058268b7c1a0a4a7f75b 100644 (file)
@@ -33,7 +33,7 @@ if (file_exists(JIRAFEAU_ROOT . 'lib/config.local.php')) {
 
 /* Jirafeau package */
 define('JIRAFEAU_PACKAGE', 'Jirafeau');
-define('JIRAFEAU_VERSION', '4.1.0');
+define('JIRAFEAU_VERSION', '4.1.1');
 
 /* Directories. */
 define('VAR_FILES', $cfg['var_root'] . 'files/');

patrick-canterino.de