diff --git a/ChangeLog b/ChangeLog index 390eb1f51..b025a6a76 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 =============== diff --git a/meson.build b/meson.build index da30fd9cb..00694bad5 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('kiwixlib', 'cpp', - version : '0.2.0', + version : '1.0.0', license : 'GPL', 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') 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) ctpp2_include_path = ''