--- Vago/trunk/Vago/about.cpp 2016/04/02 15:58:07 1039 +++ s10k/Vago/about.cpp 2017/12/30 13:43:28 1092 @@ -7,12 +7,11 @@ About::About(QWidget *parent) : { ui->setupUi(this); this->setAttribute(Qt::WA_DeleteOnClose,true ); //destroy itself once finished. - this->layout()->setSizeConstraint( QLayout::SetFixedSize ); //fixed size - ui->lbAbout->setOpenExternalLinks(true); //allow navigate to oni central ui->lbAbout->setText("" - "Vago GUI "+GlobalVars::AppVersion+"" - "

" + "

Vago GUI " + GlobalVars::AppVersion + "

" + "

" "Written by s10k

" + "Build Date " + __DATE__ + " " + __TIME__ + "

" "Thanks to:
" "Neo for OniSplit
" "EdT for testing, suggestions and icon
" @@ -26,16 +25,27 @@ About::About(QWidget *parent) : "and in general to all OniCentral Community

" "Also thanks to:
" "StackOverflow Community
" - "Fabrizio Angius for PKZIP 2.0 for zip handling
" + "Sergey A. Tachenov for the QuaZIP library
" + "Antonio Borondo for the documentation how to setup QuaZIP
" + "Arseny Kapoulkine (and contributors)for pugixml library
" "smashingmagazine for the folder icon :)
" - "

" - "Visit us at:
" - "" - "oni.bungie.org" - "
" - "" + "Freepik and Flaticon by the background image wizard and text editing icons
" + "qtiplot authors for line numbers in QTextEdit
" + "d1vanov for basic-xml-syntax-highlighter class
" "

" ""); // Don't use rich text in qtdesigner because it generates platform dependent code + + ui->lbOniCommunity->setText("" + "

" + "

" + "Visit us at:
" + "" + "oni.bungie.org" + "" + "
" + "

" + "" + ); } About::~About()