diff --git a/Data/Sys/Resources/dolphin_logo.png b/Data/Sys/Resources/dolphin_logo.png index 8ef18c616d..2a139b6c95 100644 Binary files a/Data/Sys/Resources/dolphin_logo.png and b/Data/Sys/Resources/dolphin_logo.png differ diff --git a/Data/Sys/Resources/dolphin_logo@2x.png b/Data/Sys/Resources/dolphin_logo@2x.png index f63521d493..2a139b6c95 100644 Binary files a/Data/Sys/Resources/dolphin_logo@2x.png and b/Data/Sys/Resources/dolphin_logo@2x.png differ diff --git a/Installer/Dolphin.ico b/Installer/Dolphin.ico index d82a452109..b6f018ecc6 100644 Binary files a/Installer/Dolphin.ico and b/Installer/Dolphin.ico differ diff --git a/Source/Core/DolphinNoGUI/DolphinNoGUI.aps b/Source/Core/DolphinNoGUI/DolphinNoGUI.aps new file mode 100644 index 0000000000..51bd2426a4 Binary files /dev/null and b/Source/Core/DolphinNoGUI/DolphinNoGUI.aps differ diff --git a/Source/Core/DolphinQt/AboutDialog.cpp b/Source/Core/DolphinQt/AboutDialog.cpp index 8bb8957f61..9de4b9d335 100644 --- a/Source/Core/DolphinQt/AboutDialog.cpp +++ b/Source/Core/DolphinQt/AboutDialog.cpp @@ -19,7 +19,7 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent) const QString text = QStringLiteral(R"( -
Dolphin
+Dolphin MPN
%VERSION_STRING%
@@ -61,7 +61,7 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent) // is "free" as in "freedom" - it refers to certain properties of the // software's license, not the software's price. (It is true that Dolphin // can be downloaded at no cost, but that's not what this message says.) - tr("Dolphin is a free and open-source GameCube and Wii emulator.")) + tr("Dolphin-MPN is a free and open-source GameCube and Wii emulator.")) .replace(QStringLiteral("%GAMES_YOU_OWN%"), tr("This software should not be used to play games you do not legally own.")) .replace(QStringLiteral("%LICENSE%"), tr("License")) @@ -79,7 +79,8 @@ AboutDialog::AboutDialog(QWidget* parent) : QDialog(parent) // in your translation, please use the type of curly quotes that's appropriate for // your language. If you aren't sure which type is appropriate, see // https://en.wikipedia.org/wiki/Quotation_mark#Specific_language_features - tr("\u00A9 2003-2015+ Dolphin Team. \u201cGameCube\u201d and \u201cWii\u201d are " + tr("\u00A9 2003-2015+ Dolphin Team. " + "\u201cGameCube\u201d and \u201cWii\u201d are " "trademarks of Nintendo. Dolphin is not affiliated with Nintendo in any way."))); QLabel* logo = new QLabel(); diff --git a/Source/Core/DolphinQt/DolphinQt.aps b/Source/Core/DolphinQt/DolphinQt.aps new file mode 100644 index 0000000000..3a1d3bc552 Binary files /dev/null and b/Source/Core/DolphinQt/DolphinQt.aps differ diff --git a/Source/Core/DolphinQt/Main.cpp b/Source/Core/DolphinQt/Main.cpp index 4ba9564d87..92f2b6ada6 100644 --- a/Source/Core/DolphinQt/Main.cpp +++ b/Source/Core/DolphinQt/Main.cpp @@ -156,12 +156,6 @@ int main(int argc, char* argv[]) QCoreApplication::setOrganizationDomain(QStringLiteral("dolphin-emu.org")); QCoreApplication::setApplicationName(QStringLiteral("dolphin-emu")); - #ifdef _WIN32 - // The windowsvista style doesn't support dark mode (and the windows style looks bad), so default - // to fusion on windows. Qt on other OSs defaults to styles which support dark mode. - QApplication::setStyle(QStringLiteral("fusion")); - #endif - // MPN Lets inject our update code here QProcess* process = new QProcess(); QString path = QStringLiteral("Updater\\UpdateSilent.bat"); diff --git a/Source/Core/DolphinQt/MainWindow.cpp b/Source/Core/DolphinQt/MainWindow.cpp index fe68d8a12b..b0f9d3e160 100644 --- a/Source/Core/DolphinQt/MainWindow.cpp +++ b/Source/Core/DolphinQt/MainWindow.cpp @@ -1386,7 +1386,7 @@ void MainWindow::ShowSettingsWindow() InstallHotkeyFilter(m_settings_window); } - SetQWidgetWindowDecorations(m_settings_window); + //SetQWidgetWindowDecorations(m_settings_window); m_settings_window->show(); m_settings_window->raise(); m_settings_window->activateWindow(); diff --git a/Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp b/Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp index 6646ce2cd4..9228573155 100644 --- a/Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp +++ b/Source/Core/DolphinQt/NetPlay/NetPlaySetupDialog.cpp @@ -176,7 +176,7 @@ void NetPlaySetupDialog::CreateMainLayout() connection_layout->addWidget( new QLabel(tr( "ALERT:\n\n" - "All players must use the same Dolphin version, unless MPN Dolphin is used to host\n" + "All players must use the same Dolphin version, unless Dolphin-MPN is used to host\n" "If enabled, SD cards must be identical between players.\n" "If DSP LLE is used, DSP ROMs must be identical between players.\n" "If a game is hanging on boot, it may not support Dual Core Netplay." @@ -249,16 +249,18 @@ NetPlaySetupDialog::~NetPlaySetupDialog() void NetPlaySetupDialog::ConnectWidgets() { - connect(m_connection_type, &QComboBox::currentIndexChanged, this, + connect(m_connection_type, qOverload