Skip to content

Commit e0fb909

Browse files
committed
Update about dialog
- Credited FanatSors - Added Qt version, audio engine, and build date
1 parent 032e53d commit e0fb909

1 file changed

Lines changed: 26 additions & 10 deletions

File tree

src/lobby.cpp

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -353,27 +353,43 @@ void Lobby::on_connect_released()
353353

354354
void Lobby::on_about_clicked()
355355
{
356+
#ifdef BASSAUDIO
357+
const QString audio = "BASS";
358+
#elif defined(QTAUDIO)
359+
const QString audio = "Qt Multimedia";
360+
#else
361+
const QString audio = "null";
362+
#endif
363+
356364
QString msg =
357365
tr("<h2>Attorney Online %1</h2>"
358366
"The courtroom drama simulator"
359367
"<p><b>Source code:</b> "
360368
"<a href='https://github.com/AttorneyOnline/AO2-Client'>"
361369
"https://github.com/AttorneyOnline/AO2-Client</a>"
362370
"<p><b>Major development:</b><br>"
363-
"OmniTroid, stonedDiscord, longbyte1, gameboyprinter, Cerapter"
364-
"<p><b>2.8 Major Release development:</b><br>"
371+
"OmniTroid, stonedDiscord, longbyte1, gameboyprinter, Cerapter, "
365372
"Crystalwarrior, Iamgoofball"
366-
"<p><b>2.8 Quality Assurance:</b><br>"
367-
"WillDean, Captain N, Mr M, Riel, Seimmet, Fury McFlurry,"
368-
"CedricDewitt, Chewable Tablets, Fantos, Futugaze,"
369-
"Geck, Minx, Pandae, Sierra, CrazyJC, CaseyMayCazy,"
373+
"<p><b>QA testing:</b><br>"
374+
"WillDean, Captain N, Mr M, Riel, Seimmet, Fury McFlurry, "
375+
"CedricDewitt, Chewable Tablets, Fantos, Futugaze, "
376+
"Geck, Minx, Pandae, Sierra, CrazyJC, CaseyMayCazy, "
370377
"GreenBowers, Robotic Overlord, Veritas, Gin-Gi"
371378
"<p><b>Special thanks:</b><br>"
372-
"Remy, Iamgoofball, Hibiki, Qubrick (webAO), Ruekasu (UI design), "
379+
"Remy, Hibiki, Qubrick (webAO), Ruekasu (UI design), "
373380
"Draxirch (UI design), Unishred, Argoneus (tsuserver), Fiercy, "
374-
"Noevain, Cronnicossy, the AO2 community, server hosts, game masters,"
375-
"case makers, content creators and players!")
376-
.arg(ao_app->get_version_string());
381+
"Noevain, Cronnicossy, FanatSors (AO1), server hosts, game masters, "
382+
"case makers, content creators, and the whole AO2 community!"
383+
"<p>The Attorney Online networked visual novel project "
384+
"is copyright (c) 2016-2020 Attorney Online developers. Open-source "
385+
"licenses apply. All other assets are the property of their "
386+
"respective owners."
387+
"<p>Running on Qt version %2 with the %3 audio engine."
388+
"<p>Built on %4")
389+
.arg(ao_app->get_version_string())
390+
.arg(QLatin1String(QT_VERSION_STR))
391+
.arg(audio)
392+
.arg(QLatin1String(__DATE__));
377393
QMessageBox::about(this, tr("About"), msg);
378394
}
379395

0 commit comments

Comments
 (0)