private void mnuCheckForUpdates_Click(object sender, EventArgs e) { UpdatesChecker.CheckForUpdates(); }
private async void UpdateTimer_Tick(object args) { await UpdatesChecker.CheckForUpdates(); }
private async void mnuCheckForUpdates_Click(object sender, EventArgs e) { await UpdatesChecker.CheckForUpdates(); }
private async void MainForm_Load(object sender, EventArgs e) { LoadPlugins(); LoadWindowSettings(); await UpdatesChecker.CheckForUpdates(true); }