2021-01-18 12:58:54 +05:30
/* Copyright 2013-2021 MultiMC Contributors
2013-10-09 02:41:24 +05:30
*
* Licensed under the Apache License , Version 2.0 ( the " License " ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing , software
* distributed under the License is distributed on an " AS IS " BASIS ,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
* See the License for the specific language governing permissions and
* limitations under the License .
*/
2013-11-04 07:23:05 +05:30
# include "AboutDialog.h"
# include "ui_AboutDialog.h"
# include <QIcon>
# include "MultiMC.h"
2014-04-06 07:29:37 +05:30
# include "BuildConfig.h"
2013-10-09 02:15:48 +05:30
2015-02-09 06:21:14 +05:30
# include <net/NetJob.h>
2014-05-01 23:13:55 +05:30
2017-05-06 21:57:47 +05:30
# include "HoeDown.h"
2019-10-01 03:20:32 +05:30
namespace {
2014-05-01 23:13:55 +05:30
// Credits
// This is a hack, but I can't think of a better way to do this easily without screwing with QTextDocument...
2019-10-01 03:20:32 +05:30
QString getCreditsHtml ( QStringList patrons )
2014-05-01 23:13:55 +05:30
{
2019-10-01 03:20:32 +05:30
QString patronsHeading = QObject : : tr ( " Patrons " , " About Credits " ) ;
QString output ;
QTextStream stream ( & output ) ;
stream < < " <center> \n " ;
// TODO: possibly retrieve from git history at build time?
stream < < " <h3> " < < QObject : : tr ( " MultiMC Developers " , " About Credits " ) < < " </h3> \n " ;
stream < < " <p>Andrew Okin <<a href='mailto:forkk@forkk.net'>forkk@forkk.net</a>></p> \n " ;
stream < < " <p>Petr Mrázek <<a href='mailto:peterix@gmail.com'>peterix@gmail.com</a>></p> \n " ;
stream < < " <p>Sky Welch <<a href='mailto:multimc@bunnies.io'>multimc@bunnies.io</a>></p> \n " ;
stream < < " <p>Jan (02JanDal) <<a href='mailto:02jandal@gmail.com'>02jandal@gmail.com</a>></p> \n " ;
stream < < " <p>RoboSky <<a href='https://twitter.com/RoboSky_'>@RoboSky_</a>></p> \n " ;
stream < < " <br /> \n " ;
stream < < " <h3> " < < QObject : : tr ( " With thanks to " , " About Credits " ) < < " </h3> \n " ;
stream < < " <p>Orochimarufan <<a href='mailto:orochimarufan.x3@gmail.com'>orochimarufan.x3@gmail.com</a>></p> \n " ;
stream < < " <p>TakSuyu <<a href='mailto:taksuyu@gmail.com'>taksuyu@gmail.com</a>></p> \n " ;
stream < < " <p>Kilobyte <<a href='mailto:stiepen22@gmx.de'>stiepen22@gmx.de</a>></p> \n " ;
stream < < " <p>Rootbear75 <<a href='https://twitter.com/rootbear75'>@rootbear75</a>></p> \n " ;
2020-03-29 06:42:57 +05:30
stream < < " <p>Zeker Zhayard <<a href='https://twitter.com/zeker_zhayard'>@Zeker_Zhayard</a>></p> \n " ;
2019-10-01 03:20:32 +05:30
stream < < " <br /> \n " ;
if ( ! patrons . isEmpty ( ) ) {
stream < < " <h3> " < < QObject : : tr ( " Patrons " , " About Credits " ) < < " </h3> \n " ;
2018-07-15 18:21:05 +05:30
for ( QString patron : patrons )
{
2019-10-01 03:20:32 +05:30
stream < < " <p> " < < patron < < " </p> \n " ;
2018-07-15 18:21:05 +05:30
}
}
2019-10-01 03:20:32 +05:30
stream < < " </center> \n " ;
return output ;
2014-05-01 23:13:55 +05:30
}
2019-10-01 03:20:32 +05:30
QString getLicenseHtml ( )
2017-05-06 21:57:47 +05:30
{
2018-07-15 18:21:05 +05:30
HoeDown hoedown ;
QFile dataFile ( " :/documents/COPYING.md " ) ;
dataFile . open ( QIODevice : : ReadOnly ) ;
QString output = hoedown . process ( dataFile . readAll ( ) ) ;
return output ;
2017-05-06 21:57:47 +05:30
}
2019-10-01 03:20:32 +05:30
}
2013-11-04 07:23:05 +05:30
AboutDialog : : AboutDialog ( QWidget * parent ) : QDialog ( parent ) , ui ( new Ui : : AboutDialog )
2013-10-09 05:33:02 +05:30
{
2018-07-15 18:21:05 +05:30
ui - > setupUi ( this ) ;
2013-10-09 02:15:48 +05:30
2018-07-15 18:21:05 +05:30
QString chtml = getCreditsHtml ( QStringList ( ) ) ;
ui - > creditsText - > setHtml ( chtml ) ;
2014-05-01 23:13:55 +05:30
2018-07-15 18:21:05 +05:30
QString lhtml = getLicenseHtml ( ) ;
ui - > licenseText - > setHtml ( lhtml ) ;
2017-05-06 21:57:47 +05:30
2018-07-15 18:21:05 +05:30
ui - > urlLabel - > setOpenExternalLinks ( true ) ;
2014-01-09 11:08:34 +05:30
2018-07-15 18:21:05 +05:30
ui - > icon - > setPixmap ( MMC - > getThemedIcon ( " logo " ) . pixmap ( 64 ) ) ;
ui - > title - > setText ( " MultiMC 5 " ) ;
2014-01-08 06:01:31 +05:30
2018-07-15 18:21:05 +05:30
ui - > versionLabel - > setText ( tr ( " Version " ) + " : " + BuildConfig . printableVersionString ( ) ) ;
ui - > platformLabel - > setText ( tr ( " Platform " ) + " : " + BuildConfig . BUILD_PLATFORM ) ;
2014-01-08 06:01:31 +05:30
2018-07-15 18:21:05 +05:30
if ( BuildConfig . VERSION_BUILD > = 0 )
ui - > buildNumLabel - > setText ( tr ( " Build Number " ) + " : " + QString : : number ( BuildConfig . VERSION_BUILD ) ) ;
else
ui - > buildNumLabel - > setVisible ( false ) ;
2014-01-08 06:01:31 +05:30
2018-07-15 18:21:05 +05:30
if ( ! BuildConfig . VERSION_CHANNEL . isEmpty ( ) )
ui - > channelLabel - > setText ( tr ( " Channel " ) + " : " + BuildConfig . VERSION_CHANNEL ) ;
else
ui - > channelLabel - > setVisible ( false ) ;
2014-01-08 06:01:31 +05:30
2019-10-01 03:20:32 +05:30
ui - > redistributionText - > setHtml ( tr (
" <p>We keep MultiMC open source because we think it's important to be able to see the source code for a project like this, and we do so using the Apache license.</p> \n "
" <p>Part of the reason for using the Apache license is we don't want people using the "MultiMC" name when redistributing the project. "
" This means people must take the time to go through the source code and remove all references to "MultiMC", including but not limited to the project "
" icon and the title of windows, (no <b>MultiMC-fork</b> in the title).</p> \n "
" <p>The Apache license covers reasonable use for the name - a mention of the project's origins in the About dialog and the license is acceptable. "
" However, it should be abundantly clear that the project is a fork <b>without</b> implying that you have our blessing.</p> "
) ) ;
2018-07-15 18:21:05 +05:30
connect ( ui - > closeButton , SIGNAL ( clicked ( ) ) , SLOT ( close ( ) ) ) ;
2013-10-09 02:15:48 +05:30
2018-07-15 18:21:05 +05:30
connect ( ui - > aboutQt , & QPushButton : : clicked , & QApplication : : aboutQt ) ;
2014-05-01 23:13:55 +05:30
2018-07-15 18:21:05 +05:30
loadPatronList ( ) ;
2013-11-04 07:23:05 +05:30
}
2013-10-12 18:49:49 +05:30
2013-11-04 07:23:05 +05:30
AboutDialog : : ~ AboutDialog ( )
{
2018-07-15 18:21:05 +05:30
delete ui ;
2013-11-04 07:23:05 +05:30
}
2014-05-01 23:13:55 +05:30
void AboutDialog : : loadPatronList ( )
{
2018-07-15 18:21:05 +05:30
netJob . reset ( new NetJob ( " Patreon Patron List " ) ) ;
2018-11-02 17:34:08 +05:30
netJob - > addNetAction ( Net : : Download : : makeByteArray ( QUrl ( " https://files.multimc.org/patrons.txt " ) , & dataSink ) ) ;
2018-07-15 18:21:05 +05:30
connect ( netJob . get ( ) , & NetJob : : succeeded , this , & AboutDialog : : patronListLoaded ) ;
netJob - > start ( ) ;
2014-05-01 23:13:55 +05:30
}
void AboutDialog : : patronListLoaded ( )
{
2018-07-15 18:21:05 +05:30
QString patronListStr ( dataSink ) ;
dataSink . clear ( ) ;
QString html = getCreditsHtml ( patronListStr . split ( " \n " , QString : : SkipEmptyParts ) ) ;
ui - > creditsText - > setHtml ( html ) ;
2014-05-01 23:13:55 +05:30
}