File tree 3 files changed +22
-4
lines changed
3 files changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -63,11 +63,11 @@ jobs:
63
63
- name : android_arm
64
64
target : android_arm
65
65
image_variant : bionic
66
- lib_postfix : ' /x86_64 -linux-gnu '
66
+ lib_postfix : ' /arm -linux-androideabi '
67
67
- name : android_arm64
68
68
target : android_arm64
69
69
image_variant : bionic
70
- lib_postfix : ' /x86_64 -linux-gnu '
70
+ lib_postfix : ' /aarch64 -linux-android '
71
71
- name : win32_static
72
72
target : win32_static
73
73
image_variant : f35
@@ -118,7 +118,7 @@ jobs:
118
118
MESON_OPTION="$MESON_OPTION --cross-file $HOME/BUILD_${{matrix.target}}/meson_cross_file.txt"
119
119
fi
120
120
if [[ "${{matrix.target}}" =~ android_.* ]]; then
121
- MESON_OPTION="$MESON_OPTION -Dandroid =true"
121
+ MESON_OPTION="$MESON_OPTION -Dstatic-linkage =true"
122
122
fi
123
123
cd $HOME/libkiwix
124
124
meson . build ${MESON_OPTION}
Original file line number Diff line number Diff line change
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
+
1
19
libkiwix 10.1.1
2
20
===============
3
21
Original file line number Diff line number Diff line change 1
1
project (' libkiwix' , ' cpp' ,
2
- version : ' 10.1.1 ' , # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle
2
+ version : ' 11.0.0 ' ,
3
3
license : ' GPLv3+' ,
4
4
default_options : [' c_std=c11' , ' cpp_std=c++11' , ' werror=true' ])
5
5
You can’t perform that action at this time.
0 commit comments