mirror of https://github.com/kiwix/libkiwix.git
New version 2.0.0
This commit is contained in:
parent
e216c44034
commit
45a000edaa
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'])
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue