Skip to content

Commit

Permalink
Merge pull request kiwix#92 from kiwix/new_version
Browse files Browse the repository at this point in the history
New release 1.0.0
  • Loading branch information
mgautierfr authored Oct 23, 2017
2 parents 41e3707 + 3134ab6 commit 48078c8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
===============

Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -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'])

Expand All @@ -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 = ''
Expand Down

0 comments on commit 48078c8

Please sign in to comment.