Skip to content

Commit

Permalink
Main: simplify banner
Browse files Browse the repository at this point in the history
FreeCAD advertizes itself too noisy way which brings no usefull
infomation. Unify banner for commandline and GUI application and
drop unicode '(C)' character.
  • Loading branch information
3x380V authored and yorikvanhavre committed Sep 16, 2024
1 parent 60b8c89 commit 758674d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 21 deletions.
13 changes: 2 additions & 11 deletions src/Main/MainCmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down
12 changes: 2 additions & 10 deletions src/Main/MainGui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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&);
Expand Down

0 comments on commit 758674d

Please sign in to comment.