Skip to content

Commit d19b5fd

Browse files
committed
* Updated UpdateManager library
1 parent ff1446e commit d19b5fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MemPlus/Windows/MainWindow.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public partial class MainWindow
2121
/// <summary>
2222
/// The UpdateManager object that checks for application updates
2323
/// </summary>
24-
private readonly UpdateManager.UpdateManager _updateManager;
24+
private readonly UpdateManager.Classes.UpdateManager _updateManager;
2525
/// <summary>
2626
/// The RamController object that can be used to clear the memory and view memory statistics
2727
/// </summary>
@@ -40,7 +40,7 @@ public MainWindow()
4040
{
4141
_logController = new LogController(600000);
4242
_logController.AddLog(new ApplicationLog("Initializing MainWindow"));
43-
_updateManager = new UpdateManager.UpdateManager(Assembly.GetExecutingAssembly().GetName().Version, "https://codedead.com/Software/MemPlus/update.xml", "MemPlus");
43+
_updateManager = new UpdateManager.Classes.UpdateManager(Assembly.GetExecutingAssembly().GetName().Version, "https://codedead.com/Software/MemPlus/update.xml", "MemPlus", "A new version is now available.\n\nClick the download button to immediately download the update!", "Information", "Cancel", "Download", "No new version is currently available.");
4444

4545
InitializeComponent();
4646
ChangeVisualStyle();

0 commit comments

Comments
 (0)