mirror of https://github.com/kiwix/libkiwix.git
commit
3721d7439d
|
@ -1,3 +1,10 @@
|
||||||
|
kiwix-lib 5.1.0
|
||||||
|
===============
|
||||||
|
|
||||||
|
* Add function to pause, resume and stop downloads.
|
||||||
|
* Add zim's tags in the opds stream.
|
||||||
|
* Addapt to new libzim 5.0.0 API.
|
||||||
|
|
||||||
kiwix-lib 5.0.0
|
kiwix-lib 5.0.0
|
||||||
===============
|
===============
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('kiwix-lib', 'cpp',
|
project('kiwix-lib', 'cpp',
|
||||||
version : '5.0.0',
|
version : '5.1.0',
|
||||||
license : 'GPL',
|
license : 'GPL',
|
||||||
default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
|
default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ endif
|
||||||
|
|
||||||
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', version : '>=4.0.0', static:static_deps)
|
libzim_dep = dependency('libzim', version : '>=5.0.0', static:static_deps)
|
||||||
pugixml_dep = dependency('pugixml', static:static_deps)
|
pugixml_dep = dependency('pugixml', static:static_deps)
|
||||||
libcurl_dep = dependency('libcurl', static:static_deps)
|
libcurl_dep = dependency('libcurl', static:static_deps)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue