mirror of https://github.com/kiwix/libkiwix.git
Merge pull request #784 from kiwix/version_11.0.0
This commit is contained in:
commit
6938253e59
|
@ -63,11 +63,11 @@ jobs:
|
||||||
- name: android_arm
|
- name: android_arm
|
||||||
target: android_arm
|
target: android_arm
|
||||||
image_variant: bionic
|
image_variant: bionic
|
||||||
lib_postfix: '/x86_64-linux-gnu'
|
lib_postfix: '/arm-linux-androideabi'
|
||||||
- name: android_arm64
|
- name: android_arm64
|
||||||
target: android_arm64
|
target: android_arm64
|
||||||
image_variant: bionic
|
image_variant: bionic
|
||||||
lib_postfix: '/x86_64-linux-gnu'
|
lib_postfix: '/aarch64-linux-android'
|
||||||
- name: win32_static
|
- name: win32_static
|
||||||
target: win32_static
|
target: win32_static
|
||||||
image_variant: f35
|
image_variant: f35
|
||||||
|
@ -118,7 +118,7 @@ jobs:
|
||||||
MESON_OPTION="$MESON_OPTION --cross-file $HOME/BUILD_${{matrix.target}}/meson_cross_file.txt"
|
MESON_OPTION="$MESON_OPTION --cross-file $HOME/BUILD_${{matrix.target}}/meson_cross_file.txt"
|
||||||
fi
|
fi
|
||||||
if [[ "${{matrix.target}}" =~ android_.* ]]; then
|
if [[ "${{matrix.target}}" =~ android_.* ]]; then
|
||||||
MESON_OPTION="$MESON_OPTION -Dandroid=true"
|
MESON_OPTION="$MESON_OPTION -Dstatic-linkage=true"
|
||||||
fi
|
fi
|
||||||
cd $HOME/libkiwix
|
cd $HOME/libkiwix
|
||||||
meson . build ${MESON_OPTION}
|
meson . build ${MESON_OPTION}
|
||||||
|
|
18
ChangeLog
18
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
|
libkiwix 10.1.1
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('libkiwix', 'cpp',
|
project('libkiwix', 'cpp',
|
||||||
version : '10.1.1', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle
|
version : '11.0.0',
|
||||||
license : 'GPLv3+',
|
license : 'GPLv3+',
|
||||||
default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
|
default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue