From 871a40df8b73ce50251e2827c1e193902756ddac Mon Sep 17 00:00:00 2001 From: Jerome Jutteau Date: Fri, 22 Nov 2019 23:58:28 +0100 Subject: [PATCH] Jirafeau version 4.1.1 Signed-off-by: Jerome Jutteau --- README.md | 7 ++++++- lib/settings.php | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4ef315b..8e6fe31 100644 --- 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 + diff --git a/lib/settings.php b/lib/settings.php index fa7a732..9bccc86 100644 --- a/lib/settings.php +++ b/lib/settings.php @@ -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/'); -- 2.34.1