--- Vago/trunk/Vago/about.cpp 2013/03/31 19:02:16 771 +++ Vago/trunk/Vago/about.cpp 2016/10/30 14:42:39 1058 @@ -9,7 +9,39 @@ About::About(QWidget *parent) : 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(ui->lbAbout->text().replace("Vago GUI","Vago GUI "+GlobalVars::AppVersion)); + ui->lbAbout->setText("" + "Vago GUI "+GlobalVars::AppVersion+"" + "

" + "Written by s10k

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

" + "Thanks to:
" + "Neo for OniSplit
" + "EdT for testing, suggestions and icon
" + "Iritscen for testing, bugfixing and suggestions
" + "demos_kratos for original OniSplit GUI
" + "Samer/Mukade/EdT for allow me to use Jubei as icon
" + "Alloc for AIE2 and support
" + "Paradox for Sound documentation and testing
" + "Wiki contributors for the documentation
" + "AE contributors
" + "and in general to all OniCentral Community

" + "Also thanks to:
" + "StackOverflow Community
" + "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 :)
" + "Freepik and Flaticon by the background image wizard icon
" + "qtiplot authors for line numbers in QTextEdit
" + "d1vanov for basic-xml-syntax-highlighter class
" + "

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

" + ""); // Don't use rich text in qtdesigner because it generates platform dependent code } About::~About()