diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cf2f82a58..668a55195 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,11 +63,11 @@ jobs: - name: android_arm target: android_arm image_variant: bionic - lib_postfix: '/x86_64-linux-gnu' + lib_postfix: '/arm-linux-androideabi' - name: android_arm64 target: android_arm64 image_variant: bionic - lib_postfix: '/x86_64-linux-gnu' + lib_postfix: '/aarch64-linux-android' - name: win32_static target: win32_static image_variant: f35 @@ -118,7 +118,7 @@ jobs: MESON_OPTION="$MESON_OPTION --cross-file $HOME/BUILD_${{matrix.target}}/meson_cross_file.txt" fi if [[ "${{matrix.target}}" =~ android_.* ]]; then - MESON_OPTION="$MESON_OPTION -Dandroid=true" + MESON_OPTION="$MESON_OPTION -Dstatic-linkage=true" fi cd $HOME/libkiwix meson . build ${MESON_OPTION} diff --git a/ChangeLog b/ChangeLog index e806ba465..ed18433f4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,21 @@ +libkiwix 11.0.0 +=============== + + * [server] Add support for internationalization (@veloman-yunkan #679) + * [server] Use gzip compression instead of deflat (mgautierfr #757) + * [server] Version the static resources. This allow better invalidating + browser cache when resources are changed (@veloman-yunkan #712) + * [server|front] Use integer to query the host for page length (@juuz #772) + * [server] Improve multizim search API: + - Improvement of the cache system + - Better API to select on which books to search in. + - SysAdmin is now able to limit the number of book we search in for a multizim search + * [server] Introduce a opensearch API for multizim fulltext search + * [wrapper] Remove java wrapper + * Testing: + - Testing of search result pages content (@veloman-yunkan #765) + - Better testing structure of xml search result (@veloman-yunkan #780) + libkiwix 10.1.1 =============== diff --git a/meson.build b/meson.build index 3816f26e2..81279341b 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libkiwix', 'cpp', - version : '10.1.1', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle + version : '11.0.0', license : 'GPLv3+', default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])