Skip to content

Commit f522c05

Browse files
committed
Remove references to MPN
1 parent d01a91e commit f522c05

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

Source/Core/Common/HttpRequest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ HttpRequest::Response HttpRequest::Impl::Fetch(const std::string& url, Method me
279279
list = curl_slist_append(list, (name + ": " + *value).c_str());
280280
}
281281

282-
list = curl_slist_append(list, "User-Agent: Dolphin-MPN/1.0");
282+
list = curl_slist_append(list, "User-Agent: Dolphin/1.0");
283283

284284
curl_easy_setopt(m_curl.get(), CURLOPT_HTTPHEADER, list);
285285

Source/Core/DolphinQt/DolphinQt.vcxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
</ImportGroup>
2020
<PropertyGroup Label="UserMacros" />
2121
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
22-
<TargetName>Dolphin-MPN</TargetName>
22+
<TargetName>Dolphin</TargetName>
2323
</PropertyGroup>
2424
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
25-
<TargetName>Dolphin-MPN</TargetName>
25+
<TargetName>Dolphin</TargetName>
2626
</PropertyGroup>
2727
<ItemDefinitionGroup>
2828
<ClCompile>

Source/Core/DolphinQt/ProjectPlus/InstallUpdateDialog.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ void InstallUpdateDialog::install()
9999
this->label->setText(QStringLiteral("Extracting %1...").arg(this->filename));
100100
this->progressBar->setValue(50);
101101

102-
QString extractDirectory = this->temporaryDirectory + QDir::separator() + QStringLiteral("Dolphin-MPN");
102+
QString extractDirectory = this->temporaryDirectory + QDir::separator() + QStringLiteral("Dolphin");
103103

104104
// Hack to remove stuck directory
105105
QDir extractDirectoryHack(extractDirectory);
@@ -111,7 +111,7 @@ void InstallUpdateDialog::install()
111111
QDir dir(this->temporaryDirectory);
112112
if (!QDir(extractDirectory).exists())
113113
{
114-
if (!dir.mkdir(QStringLiteral("Dolphin-MPN")))
114+
if (!dir.mkdir(QStringLiteral("Dolphin")))
115115
{
116116
QMessageBox::critical(this, QStringLiteral("Error"),
117117
QStringLiteral("Failed to create extract directory."));
@@ -145,7 +145,7 @@ void InstallUpdateDialog::install()
145145
QStringLiteral("cp -r \"") + extractDirectory + QStringLiteral("/\"* \"") + appPath +
146146
QStringLiteral("\""),
147147
QStringLiteral("echo '== Launching the updated application'"),
148-
QStringLiteral("open \"") + appPath + QStringLiteral("/Dolphin-MPN.app\""),
148+
QStringLiteral("open \"") + appPath + QStringLiteral("/Dolphin.app\""),
149149
QStringLiteral("echo '== Cleaning up temporary files'"),
150150
QStringLiteral("rm -rf \"") + this->temporaryDirectory + QStringLiteral("\""),
151151
QStringLiteral("exit 0")};
@@ -165,8 +165,8 @@ void InstallUpdateDialog::install()
165165
QStringLiteral(" xcopy /S /Y /I \"") + extractDirectory + QStringLiteral("\\*\" \"") +
166166
appPath + QStringLiteral("\""),
167167
QStringLiteral(" echo == Attempting to start '") + appPath +
168-
QStringLiteral("\\Dolphin-MPN.exe'"),
169-
QStringLiteral(" start \"\" \"") + appPath + QStringLiteral("\\Dolphin-MPN.exe\""),
168+
QStringLiteral("\\Dolphin.exe'"),
169+
QStringLiteral(" start \"\" \"") + appPath + QStringLiteral("\\Dolphin.exe\""),
170170
QStringLiteral(")"),
171171
QStringLiteral("IF NOT ERRORLEVEL 0 ("),
172172
QStringLiteral(" start \"\" cmd /c \"echo Update failed && pause\""),

0 commit comments

Comments
 (0)