From aba2f35092f291a98e3edb82cf062fc82531b428 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Fri, 28 Aug 2020 16:04:40 +0200 Subject: [PATCH] New version 9.4.0 --- ChangeLog | 17 +++++++++++++++++ .../kiwixLibAndroid/build.gradle | 2 +- meson.build | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1069b5a2f..08440717e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,20 @@ +kiwix-lib 9.4.0 +=============== + + * [SERVER] Make the headers handling case insensitive. + * [SERVER] Make server answer 204 http status code for empty search + * [PACKAGING] Made CIĀ build deb packages. + * [SERVER] Add a way to prevent taskbar and external link bloquer at article + level. + * Fix meson file to be compatible with meson 0.45 + * [SERVER] Update search requests to use pageStart/pageLength instead of + pageStart/pageEnd arguments. + * [SERVER] Set a fixed favicon size in the main page. + * [SERVER] Refactor the response system code to better handling future new + libzim api. + * Fix segmentation fault around exchange with aria2 process making + kiwix-desktop crash at exit. + kiwix-lib 9.3.1 =============== diff --git a/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle b/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle index 0c7995118..a11d52fa0 100644 --- a/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle +++ b/android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle @@ -26,7 +26,7 @@ task writePom { project { groupId 'org.kiwix.kiwixlib' artifactId 'kiwixlib' - version '9.3.1' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION) + version '9.4.0' + (System.env.KIWIXLIB_BUILDVERSION == null ? '' : '-'+System.env.KIWIXLIB_BUILDVERSION) packaging 'aar' name 'kiwixlib' url 'https://github.com/kiwix/kiwix-lib' diff --git a/meson.build b/meson.build index c205ca7d7..dd8310437 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwix-lib', 'cpp', - version : '9.3.1', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle + version : '9.4.0', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle license : 'GPLv3+', default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])