mirror of https://github.com/kiwix/libkiwix.git
commit
e9ab074b5d
21
ChangeLog
21
ChangeLog
|
@ -1,4 +1,23 @@
|
||||||
kiwix-lib 1.1.0
|
kiwix-lib 2.0.0
|
||||||
|
===============
|
||||||
|
|
||||||
|
* Introduce a new API to retrive content from a reader.
|
||||||
|
* Introduce the `Entry` class.
|
||||||
|
* Reader's methods return an `Entry`.
|
||||||
|
* Content and other information can be retrieved from the `Entry`.
|
||||||
|
* Older Reader's methods are depreciated.
|
||||||
|
* Add an `OPDSDumper` class to dump a whole `Library` as an OPDS feed.
|
||||||
|
* Add a tool function to get the content of a file.
|
||||||
|
* Add a tool function to create a tempory directory.
|
||||||
|
* Add a `Downloader` class to download a file.
|
||||||
|
* Allow the manager to populate a `Library` from an OPDS feed.
|
||||||
|
* Try to locate libctpp2 in default system libdir and then fallback in 'lib'
|
||||||
|
directory.
|
||||||
|
* Build kiwix-lib setting RPATH.
|
||||||
|
* Build kiwix-lib without warning (werror=true)
|
||||||
|
* Build kiwix-lib on macos.
|
||||||
|
|
||||||
|
kiwix-lib 1.1.1
|
||||||
===============
|
===============
|
||||||
|
|
||||||
* Correct the name of kiwix-lib (from `kiwixlib`) in meson.build to generate
|
* Correct the name of kiwix-lib (from `kiwixlib`) in meson.build to generate
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('kiwix-lib', 'cpp',
|
project('kiwix-lib', 'cpp',
|
||||||
version : '1.1.1',
|
version : '2.0.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'])
|
||||||
|
|
||||||
|
@ -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', version : '>=3.2.0', static:static_deps)
|
libzim_dep = dependency('libzim', version : '>=3.3.0', static:static_deps)
|
||||||
pugixml_dep = dependency('pugixml', static:static_deps)
|
pugixml_dep = dependency('pugixml', static:static_deps)
|
||||||
libaria2_dep = dependency('libaria2', static:static_deps)
|
libaria2_dep = dependency('libaria2', static:static_deps)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue