RWELabs / Stardew-Valley-Mod-Manager

[Passion Project] The Stardew Valley Mod Manager is a powerful tool that is designed to be used alongside SMAPI to help you install and manage mods, automatically install modpacks and manage your game saves.
Other
29 stars 1 forks source link

[Issue] "Download Available" prompt contains incorrect wording. #65

Closed RyanWalpole closed 2 years ago

RyanWalpole commented 2 years ago

Describe the Issue

When the user is delivered a prompt that an update is available, the text of the popup says that an update is available and asks the user if they would like to view the latest release instead of asking if they would like to download the latest release. This is leftover wording in the code from when updates were done manually, where clicking "yes" would open the latest release in a web browser instead of downloading it directly from the application.

Screenshots

image

Environment:

RyanWalpole commented 2 years ago

Resolution

Current Implementation

Splash.cs, MainPage.cs

DialogResult dr = MessageBox.Show(
"There are updates available for Stardew Mod Manager. Would you like to view the latest release?",

"Update | Stardew Valley Mod Manager", 
MessageBoxButtons.YesNo, MessageBoxIcon.Question);

Resolution Implementation:

Change the code of the MessageBox.Show event. Make the wording more clear that this is a "download and install" and not a "view releases" operation.

DialogResult dr = MessageBox.Show(
"There are updates available for Stardew Mod Manager. Would you like to download 
and install the latest version?",

"Update | Stardew Valley Mod Manager", 
MessageBoxButtons.YesNo, MessageBoxIcon.Question);