Skip to content

Commit 6938253

Browse files
authored
Merge pull request #784 from kiwix/version_11.0.0
2 parents 1572956 + c5d3ffe commit 6938253

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ jobs:
6363
- name: android_arm
6464
target: android_arm
6565
image_variant: bionic
66-
lib_postfix: '/x86_64-linux-gnu'
66+
lib_postfix: '/arm-linux-androideabi'
6767
- name: android_arm64
6868
target: android_arm64
6969
image_variant: bionic
70-
lib_postfix: '/x86_64-linux-gnu'
70+
lib_postfix: '/aarch64-linux-android'
7171
- name: win32_static
7272
target: win32_static
7373
image_variant: f35
@@ -118,7 +118,7 @@ jobs:
118118
MESON_OPTION="$MESON_OPTION --cross-file $HOME/BUILD_${{matrix.target}}/meson_cross_file.txt"
119119
fi
120120
if [[ "${{matrix.target}}" =~ android_.* ]]; then
121-
MESON_OPTION="$MESON_OPTION -Dandroid=true"
121+
MESON_OPTION="$MESON_OPTION -Dstatic-linkage=true"
122122
fi
123123
cd $HOME/libkiwix
124124
meson . build ${MESON_OPTION}

ChangeLog

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
libkiwix 11.0.0
2+
===============
3+
4+
* [server] Add support for internationalization (@veloman-yunkan #679)
5+
* [server] Use gzip compression instead of deflat (mgautierfr #757)
6+
* [server] Version the static resources. This allow better invalidating
7+
browser cache when resources are changed (@veloman-yunkan #712)
8+
* [server|front] Use integer to query the host for page length (@juuz #772)
9+
* [server] Improve multizim search API:
10+
- Improvement of the cache system
11+
- Better API to select on which books to search in.
12+
- SysAdmin is now able to limit the number of book we search in for a multizim search
13+
* [server] Introduce a opensearch API for multizim fulltext search
14+
* [wrapper] Remove java wrapper
15+
* Testing:
16+
- Testing of search result pages content (@veloman-yunkan #765)
17+
- Better testing structure of xml search result (@veloman-yunkan #780)
18+
119
libkiwix 10.1.1
220
===============
321

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('libkiwix', 'cpp',
2-
version : '10.1.1', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle
2+
version : '11.0.0',
33
license : 'GPLv3+',
44
default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
55

0 commit comments

Comments
 (0)