I have the following code in the load function:
if (updCheck.NewUpdateReleased(_VER))
{
updateBtn.Enabled = true;
}
...
public bool NewUpdateReleased(float currentVer)
{
using (WebClient webClient = new WebClient())
{
var ver = float.Parse(webClient.DownloadString(new Uri("verysecret")));
if (ver > currentVer)
return true;
}
return false;
}
There’s no exception getting thrown or anything, everything just stops there. The only tab that’s getting loaded is the plugin tab, I.E. the Live and Playback tabs are gone.