From d4e35c7067d0cf858411b878020c8137f33944ba Mon Sep 17 00:00:00 2001 From: Emmanuel Engelhart Date: Sat, 22 May 2021 12:49:53 +0200 Subject: [PATCH] Rename kiwix-lib in libkiwix --- ChangeLog | 5 +++++ include/entry.h | 2 +- meson.build | 2 +- src/tools/pathTools.cpp | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 682ca57cf..2b4cff1b5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +libkiwix 10.0.0 +=============== + + * ... + kiwix-lib 9.4.1 =============== diff --git a/include/entry.h b/include/entry.h index c3a01521c..bbddebd0e 100644 --- a/include/entry.h +++ b/include/entry.h @@ -103,7 +103,7 @@ class Entry * Some entry (ie binary ones) have their content plain stored * in the zim file. Knowing the offset where the content is stored * an user can directly read the content in the zim file bypassing the - * kiwix-lib/libzim. + * libkiwix/libzim. * * @return A pair specifying where to read the content. * The string is the real file to read (may be different that .zim diff --git a/meson.build b/meson.build index 3ca1004f2..fcc0b03bf 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('kiwix-lib', 'cpp', +project('libkiwix', 'cpp', version : '10.0.0', # Also change this in android-kiwix-lib-publisher/kiwixLibAndroid/build.gradle license : 'GPLv3+', default_options : ['c_std=c11', 'cpp_std=c++11', 'werror=true']) diff --git a/src/tools/pathTools.cpp b/src/tools/pathTools.cpp index 678acf644..e7817b8e6 100644 --- a/src/tools/pathTools.cpp +++ b/src/tools/pathTools.cpp @@ -339,7 +339,7 @@ std::string makeTmpDirectory() _wmkdir(ctmp); return WideToUtf8(ctmp); #else - char _template_array[] = {"/tmp/kiwix-lib_XXXXXX"}; + char _template_array[] = {"/tmp/libkiwix_XXXXXX"}; std::string dir = mkdtemp(_template_array); return dir; #endif