Skip to content

Commit

Permalink
Fix some naming (QBDLX => QBDLX-MOD)
Browse files Browse the repository at this point in the history
  • Loading branch information
DJDoubleD committed Sep 3, 2023
1 parent 86d2c8a commit 6f1f5ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions QobuzDownloaderX/View/LoginForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -183,18 +183,18 @@ private async void LoginFrm_Load(object sender, EventArgs e)
if (currentVersion.CompareTo(remoteVersion) < 0)
{
// Remote version is newer, propose update.
string updateDialogContents = "New version of QBDLX is available!\r\n\r\nInstalled Version - "
string updateDialogContents = "New version of QBDLX-MOD is available!\r\n\r\nInstalled Version - "
+ currentVersionString
+ "\r\nLatest version - "
+ remoteVersionString
+ "\r\n\r\nChangelog Below\r\n==============\r\n"
+ changes.Replace("\\r\\n", "\r\n")
+ "\r\n==============\r\n\r\nWould you like to update?";

DialogResult dialogResult = FlexibleMessageBox.Show(updateDialogContents, "QBDLX | Update Available", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
DialogResult dialogResult = FlexibleMessageBox.Show(updateDialogContents, "QBDLX-MOD | Update Available", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
if (dialogResult == DialogResult.Yes)
{
// If "Yes" is clicked, open GitHub page and close QBDLX.
// If "Yes" is clicked, open GitHub page and close QBDLX-MOD.
Process.Start(Globals.GITHUB_LATEST_URL);
Application.Exit();
}
Expand Down

0 comments on commit 6f1f5ec

Please sign in to comment.