Skip to content

Commit

Permalink
Bump version 0.4.0 -> 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dkgv committed Jul 23, 2023
1 parent 40054e4 commit 9e14790
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Pinpoint.Core/AppConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ public static class AppConstants

public const string LocalPluginsDirectoryKey = "local_plugins_directory";

public const string Version = "0.4.0";
public const string Version = "0.4.1";
}
}
2 changes: 1 addition & 1 deletion Pinpoint.Win/Views/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ private async Task CheckForUpdates()
return;
}

var response = MessageBox.Show($"Pinpoint v{newestVersion} is available, you are using v{currentVersion}. Do you want to update?", "Update Available", MessageBoxButton.YesNo, MessageBoxImage.Information);
var response = MessageBox.Show($"Pinpoint version {newestVersion} is available, you are using {currentVersion}. Do you want to update?", "Update Available", MessageBoxButton.YesNo, MessageBoxImage.Information);
if (response == MessageBoxResult.Yes)
{
ProcessHelper.OpenUrl("https://github.com/dkgv/pinpoint/releases");
Expand Down

0 comments on commit 9e14790

Please sign in to comment.