Main: simplify banner

FreeCAD advertizes itself too noisy way which brings no usefull
infomation. Unify banner for commandline and GUI application and
drop unicode '(C)' character.
This commit is contained in:
Ladislav Michl
2024-09-12 23:09:20 +02:00
committed by Yorik van Havre
parent 670c42ccf6
commit df0665d789
2 changed files with 4 additions and 21 deletions

View File

@@ -51,17 +51,8 @@ using App::Application;
using Base::Console;
const char sBanner[] =
"(c) Juergen Riegel, Werner Mayer, Yorik van Havre and others 2001-2024\n"
"FreeCAD is free and open-source software licensed under the terms of LGPL2+ license.\n"
"FreeCAD wouldn't be possible without FreeCAD community.\n"
" ##### #### ### #### \n"
" # # # # # # \n"
" # ## #### #### # # # # # \n"
" #### # # # # # # # ##### # # \n"
" # # #### #### # # # # # \n"
" # # # # # # # # # ## ## ##\n"
" # # #### #### ### # # #### ## ## ##\n\n";
"(C) 2001-2024 FreeCAD contributors\n"
"FreeCAD is free and open-source software licensed under the terms of LGPL2+ license.\n\n";
int main(int argc, char** argv)
{

View File

@@ -61,16 +61,8 @@
void PrintInitHelp();
const char sBanner[] =
"\xc2\xa9 Juergen Riegel, Werner Mayer, Yorik van Havre and others 2001-2024\n"
"FreeCAD is free and open-source software licensed under the terms of LGPL2+ license.\n"
"FreeCAD wouldn't be possible without FreeCAD community.\n"
" ##### #### ### #### \n"
" # # # # # # \n"
" # ## #### #### # # # # # \n"
" #### # # # # # # # ##### # # \n"
" # # #### #### # # # # # \n"
" # # # # # # # # # ## ## ##\n"
" # # #### #### ### # # #### ## ## ##\n\n";
"(C) 2001-2024 FreeCAD contributors\n"
"FreeCAD is free and open-source software licensed under the terms of LGPL2+ license.\n\n";
#if defined(_MSC_VER)
void InitMiniDumpWriter(const std::string&);