Skip to content

Commit e65c9c4

Browse files
authored
Merge pull request #850 from kiwix/version_12.0.0
2 parents 0d8971e + 0ae31bd commit e65c9c4

File tree

2 files changed

+43
-3
lines changed

2 files changed

+43
-3
lines changed

ChangeLog

+41-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,51 @@
1+
libkiwix 12.0.0
2+
===============
3+
4+
* [API Break] Remove wrapper around libzim (@mgautierfr #789)
5+
* Allow kiwix-serve to use custom resource files (@veloman-yunkan #779)
6+
* Properly handle searchProtocolPrefix when rendering search result (@veloman-yunkan #823)
7+
* Prevent search on multi language content (@veloman-yunkan #838)
8+
* Use new `zim::Archive::getMediaCount` from libzim (@mgautierfr #836)
9+
* Catalog:
10+
- Include tags in free text catalog search (@veloman-yunkan #802)
11+
- Illustration's url is based on book's uuid (@veloman-yunkan #804)
12+
- Cleanup of the opds-dumper (@veloman-yunkan #829)
13+
- Allow filtering of catalog content using multiple languages (@veloman-yunkan #841)
14+
- Make opds-dumper respect the namemapper (@mgautierfr #837)
15+
* Server:
16+
- Correctly handle `\` in suggestion json generation (@veloman-yunkan #843)
17+
- Better http caching (@veloman-yunkan #833)
18+
- Make `/suggest` endpoint thread-safe (@veloman-yunkan #834)
19+
- Better redirection of main page (@veloman-yunkan #827)
20+
- Remove jquery (@mgautierfr @juuz0 #796)
21+
- Better Viewer of zim content :
22+
. Introduce `/content` endpoints (@veloman-yunkan #806)
23+
. Switch to iframe based content viewer (@veloman-yunkan #716)
24+
- Optimised design of the welcome page:
25+
. Alignement (@juuz0 @kelson42 #786)
26+
. Exit download modal on pressing escape key (@juzz0 #800)
27+
. Add favicon for different devices (@juzz0 #805)
28+
. Fix auto hidding of the toolbar (@veloman-yunkan #821)
29+
. Allow user to filter books by tags in the front page (@juuz0 #711)
30+
* CI :
31+
- Trigger CI on pull_request (@kelson42 #791)
32+
- Drop Ubuntu Impish packaging (@legoktm #825)
33+
- Add Ubuntu Kinetic packaging (@legoktm #801)
34+
* Testing:
35+
- Test ICULanguageInfo (@veloman-yunkan #795)
36+
- Introduce fake `test` language to test i18n (@veloman-yunkan #848)
37+
* Fix documentation (@kelson42 #816)
38+
* Udpate translation (#787 #839 #847)
39+
40+
141
libkiwix 11.0.0
242
===============
343

444
* [server] Add support for internationalization (@veloman-yunkan #679)
545
* [server] Use gzip compression instead of deflat (mgautierfr #757)
646
* [server] Version the static resources. This allow better invalidating
747
browser cache when resources are changed (@veloman-yunkan #712)
8-
* [server|front] Use integer to query the host for page length (@juuz #772)
48+
* [server|front] Use integer to query the host for page length (@juuz0 #772)
949
* [server] Improve multizim search API:
1050
- Improvement of the cache system
1151
- Better API to select on which books to search in.

meson.build

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('libkiwix', 'cpp',
2-
version : '11.0.0',
2+
version : '12.0.0',
33
license : 'GPLv3+',
44
default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
55

@@ -35,7 +35,7 @@ else
3535
error('Cannot found header mustache.hpp')
3636
endif
3737

38-
libzim_dep = dependency('libzim', version : '>=7.2.0', static:static_deps)
38+
libzim_dep = dependency('libzim', version : '>=8.1.0', static:static_deps)
3939
if not compiler.has_header_symbol('zim/zim.h', 'LIBZIM_WITH_XAPIAN')
4040
error('Libzim seems to be compiled without xapian. Xapian support is mandatory.')
4141
endif

0 commit comments

Comments
 (0)