Wording in help page

This commit is contained in:
Leonetienne 2022-06-01 03:46:27 +02:00
parent 309dacadc8
commit 35a5c9496d
No known key found for this signature in database
GPG Key ID: C33879CD92E9708C
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#ifndef GCRYPTCLI_VERSION_H #ifndef GCRYPTCLI_VERSION_H
#define GCRYPTCLI_VERSION_H #define GCRYPTCLI_VERSION_H
#define GCRYPTCLI_VERSION 0.1251 #define GCRYPTCLI_VERSION 0.12511
#endif #endif

View File

@ -13,7 +13,7 @@ void CommandlineInterface::Init(int argc, const char* const* argv) {
std::stringstream ss; std::stringstream ss;
ss << "CLI for the GCrypt cipher/obfuscator" << std::endl ss << "CLI for the GCrypt cipher/obfuscator" << std::endl
<< "Copyright (c) 2022 Leon Etienne" << std::endl << "Copyright (c) 2022 Leon Etienne" << std::endl
<< "GCrypt v" << GCRYPT_VERSION << std::endl << "GCryptLib v" << GCRYPT_VERSION << std::endl
<< "GCryptCLI v" << GCRYPTCLI_VERSION << std::endl << "GCryptCLI v" << GCRYPTCLI_VERSION << std::endl
<< "THIS IS EXPERIMENTAL SOFTWARE AND MUST BE CONSIDERED INSECURE. DO NOT USE THIS TO ENCRYPT SENSITIVE DATA! READ THE README FILES ACCESSIBLE AT \"https://gitea.leonetienne.de/leonetienne/GCrypt\""; << "THIS IS EXPERIMENTAL SOFTWARE AND MUST BE CONSIDERED INSECURE. DO NOT USE THIS TO ENCRYPT SENSITIVE DATA! READ THE README FILES ACCESSIBLE AT \"https://gitea.leonetienne.de/leonetienne/GCrypt\"";
nupp.SetBriefDescription(ss.str()); nupp.SetBriefDescription(ss.str());