Zmiana metody kompresji na chunkowanie, zmiana nazwy z Void Archive na expak

This commit is contained in:
yanczi 2025-09-30 00:33:16 +02:00
parent f6150b0d17
commit aef8daae9b
15 changed files with 320 additions and 93 deletions

View file

@ -38,21 +38,30 @@ void RenderHelp()
{
const std::string HelpTitle = "< Manual >";
const std::string HelpInstruction =
"voidarchive <parametr> <plik & katalog> \n"
" \n"
"COMPRESSION -c Pack and compress files from the specified directory \n"
"PACKING -p Pack files from the specified directory \n"
"FILTERING -f Pack the files according to the guidelines given in the <directory>.txt\n"
"EXTRACTING -x Extract files from the specified container \n"
"LISTING -ls List files stored in a container \n"
" \n"
" \n"
"<catalog>.txt \n"
" \n"
"Keys: \n"
" \n"
" {compress} - Compressing files -> /path/data/file.txt *.txt *.* - All files \n"
" {ignore} - Ignoring concrete files -> /path/data/file.txt *.txt \n";
"pakcmd <parametr> <catalog> \n"
" \n"
" -c Pack and compress with LZ4 \n"
" -p Pack files from the specified directory \n"
" -e Pack and encrypted from the specified directory \n"
" -f Pack the files according to the guidelines given in the <directory>.txt \n"
" \n"
"Extracting: \n"
" -x Extract files from the specified container \n"
" -ls List files stored in a container \n"
" \n"
" \n"
"<catalog>.txt \n"
" \n"
"Keys: \n"
" \n"
" {compress} - Compressing files \n"
" {crypt} - Encrypted files with AES256 \n"
" {ignore} - Ignoring concrete files \n"
" \n"
" /path/to/file.ext - Concrete file \n"
" *.ext - All files with concrete extension \n"
" *.* - All files !NOT WORKING WITH {ignore} KEY! \n"
" \n";
Interface tui;
tui.TextBorder(HelpTitle, HelpInstruction);