Added a "no update available" popup

This commit is contained in:
Zesty Fernandez 2022-07-14 11:28:00 -07:00
parent e081da0375
commit 192d41fe0e

View file

@ -504,6 +504,16 @@ namespace UWUVCI_AIO_WPF
catch (Exception) { }
cm.ShowDialog();
}
else
{
var cm = new Custom_Message("No Update Available", "This is currently the latest version.");
try
{
cm.Owner = mw;
}
catch (Exception) { }
cm.ShowDialog();
}
}
}