Skip to content

Commit

Permalink
fix: tweak cli ascii art
Browse files Browse the repository at this point in the history
  • Loading branch information
craftablescience committed Jan 7, 2024
1 parent eae4700 commit 07fc82d
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/cli/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ int main(int argc, const char* const* argv) {
argparse::ArgumentParser cli{std::string{PROJECT_NAME} + "cli", PROJECT_VERSION.data(), argparse::default_arguments::help};

cli.add_epilog("Program details:\n"
" /$$ /$$ /$$ /$$ \n"
" | $$ | $$|__/ | $$ \n"
" /$$ /$$/$$$$$$ | $$ /$$ /$$$$$$ /$$$$$$$ /$$ /$$$$$$ \n"
"| $$ /$$/$$__ $$| $$ /$$/ /$$__ $$ /$$__ $$| $$|_ $$_/ \n"
" \\ $$/$$/ $$ \\ $$| $$$$$$/ | $$$$$$$$| $$ | $$| $$ | $$ \n"
" \\ $$$/| $$ | $$| $$_ $$ | $$_____/| $$ | $$| $$ | $$ /$$ \n"
" \\ $/ | $$$$$$$/| $$ \\ $$| $$$$$$$| $$$$$$$| $$ | $$$$/ \n"
" \\_/ | $$____/ |__/ \\__/ \\_______/ \\_______/|__/ \\___/\n"
" | $$ \n"
" | $$ version v"s + PROJECT_VERSION.data() + "\n"
" |__/ \n"
" \n"
"Created by craftablescience. Contributors and libraries used are \n"
" /$$ /$$ /$$ /$$ \n"
" | $$ | $$|__/ | $$ \n"
" /$$ /$$/$$$$$$ | $$ /$$ /$$$$$$ /$$$$$$$ /$$ /$$$$$$ \n"
"| $$ /$$/$$__ $$| $$ /$$/ /$$__ $$ /$$__ $$| $$|_ $$_/ \n"
" \\ $$/$$/ $$ \\ $$| $$$$$$/ | $$$$$$$$| $$ | $$| $$ | $$ \n"
" \\ $$$/| $$ | $$| $$_ $$ | $$_____/| $$ | $$| $$ | $$ /$$ \n"
" \\ $/ | $$$$$$$/| $$ \\ $$| $$$$$$$| $$$$$$$| $$ | $$$$/ \n"
" \\_/ | $$____/ |__/ \\__/ \\_______/ \\_______/|__/ \\____/\n"
" | $$ \n"
" | $$ version v"s + PROJECT_VERSION.data() + "\n"
" |__/ \n"
" \n"
"Created by craftablescience. Contributors and libraries used are \n"
"listed in CREDITS.md. VPKEdit is licensed under the MIT License.");

#ifdef _WIN32
Expand Down

0 comments on commit 07fc82d

Please sign in to comment.