Merge pull request #92 from kiwix/new_version

New release 1.0.0
This commit is contained in:
Matthieu Gautier 2017-10-23 10:11:38 +02:00 committed by GitHub
commit 48078c809b
2 changed files with 17 additions and 2 deletions

View File

@ -1,3 +1,18 @@
kiwix-lib 1.0.0
===============
* Correctly regenerate template resource using cttp2c at compilation time.
* Suggestion use xapian database when available
* Support multi-zim search in kiwix-lib (a search can now search on several
embedded database in zims in the same time)
* Fix some wording
* Fix license issues
* Add out argument to jni getContent* method to get the title of article in
the same time we get the content
* Rename `compile_resources.py` script to `kiwix-compile-resources`
* Use static lib when building for android or in "static mode"
* Make the ResourceNotFound exception public
kiwix-lib 0.2.0 kiwix-lib 0.2.0
=============== ===============

View File

@ -1,5 +1,5 @@
project('kiwixlib', 'cpp', project('kiwixlib', 'cpp',
version : '0.2.0', version : '1.0.0',
license : 'GPL', license : 'GPL',
default_options : ['c_std=c11', 'cpp_std=c++11']) default_options : ['c_std=c11', 'cpp_std=c++11'])
@ -10,7 +10,7 @@ static_deps = get_option('android') or get_option('default_library') == 'static'
thread_dep = dependency('threads') thread_dep = dependency('threads')
libicu_dep = dependency('icu-i18n', static:static_deps) libicu_dep = dependency('icu-i18n', static:static_deps)
libzim_dep = dependency('libzim', static:static_deps) libzim_dep = dependency('libzim', version : '>=3.0.0', static:static_deps)
pugixml_dep = dependency('pugixml', static:static_deps) pugixml_dep = dependency('pugixml', static:static_deps)
ctpp2_include_path = '' ctpp2_include_path = ''