mirror of
https://github.com/kiwix/kiwix-tools.git
synced 2026-01-18 10:57:44 -05:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
98c810eb2a | ||
|
|
50ca36417f | ||
|
|
5a2714c9c9 | ||
|
|
63cc513974 |
@@ -1,3 +1,8 @@
|
||||
kiwix-tools 3.0.1
|
||||
=================
|
||||
|
||||
* Fix --nodatealiases inverted logic regression
|
||||
|
||||
kiwix-tools 3.0.0
|
||||
=================
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
project('kiwix-tools', 'cpp',
|
||||
version : '3.0.0',
|
||||
version : '3.0.1',
|
||||
license : 'GPL',
|
||||
default_options: ['c_std=c11', 'cpp_std=c++11', 'werror=true'])
|
||||
|
||||
|
||||
@@ -85,7 +85,7 @@ int main(int argc, char** argv)
|
||||
int libraryFlag = false;
|
||||
bool noLibraryButtonFlag = false;
|
||||
bool noSearchBarFlag = false;
|
||||
bool noDateAliasesFlag [[gnu::unused]] = false;
|
||||
bool noDateAliasesFlag = false;
|
||||
bool isVerboseFlag = false;
|
||||
string PPIDString;
|
||||
unsigned int PPID = 0;
|
||||
@@ -229,7 +229,7 @@ int main(int argc, char** argv)
|
||||
}
|
||||
#endif
|
||||
|
||||
kiwix::HumanReadableNameMapper nameMapper(library, !noDateAliasesFlag);
|
||||
kiwix::HumanReadableNameMapper nameMapper(library, noDateAliasesFlag);
|
||||
kiwix::Server server(&library, &nameMapper);
|
||||
server.setAddress(address);
|
||||
server.setRoot(rootLocation);
|
||||
|
||||
Reference in New Issue
Block a user