Code: Select all
const char sBanner[] = "(c) Juergen Riegel, Werner Mayer, Yorik van Havre 2001-2018\n"\
Code: Select all
const char sBanner[] = "\xc2\xa9 Juergen Riegel, Werner Mayer, Yorik van Havre 2001-2018\n"\
Code: Select all
App::Application::Config()["CopyrightInfo"] = "\xc2\xa9 Juergen Riegel, Werner Mayer, Yorik van Havre 2001-2018\n";
Just stumbled upon this: http://doc.qt.io/qt-5/qcolordialog.html#details
One thing is crystal clear, @NormandC is at the verge of doing his first PR and becoming a full-fledged FreeCAD developer...NormandC wrote: ↑Wed Jan 02, 2019 10:31 pmTime to update these, guys!
src/Main/MainCmd.cpp
Code: Select all
const char sBanner[] = "(c) Juergen Riegel, Werner Mayer, Yorik van Havre 2001-2018\n"\
src/Main/MainGui.cpp
Code: Select all
const char sBanner[] = "\xc2\xa9 Juergen Riegel, Werner Mayer, Yorik van Havre 2001-2018\n"\
src/Main/FreeCADGuiPy.cpp
Code: Select all
App::Application::Config()["CopyrightInfo"] = "\xc2\xa9 Juergen Riegel, Werner Mayer, Yorik van Havre 2001-2018\n";
Code: Select all
(c) Juergen Riegel, Werner Mayer and the FreeCAD community 2001-2019
git commit 8358d7f876NormandC wrote: ↑Wed Jan 02, 2019 11:44 pmJust stumbled upon this: http://doc.qt.io/qt-5/qcolordialog.html#details
Why doesn't the color chooser in FreeCAD look like the one in the Qt5 doc, which looks identical to what FreeCAD/Qt4 has?
Funny, but that won't happen anytime soon as long as there is no clear "Making PRs for dummies" step-by-step summary. The topic about it is too damn long and confusing for someone who still struggles with Git like me.