Skip to content

Commit

Permalink
feat(core): add beta update download stream (#306)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsee committed Jun 23, 2024
1 parent 59b7179 commit 161d945
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/BSH.Main/Dialogs/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,14 @@ private void MitWindowsStartenToolStripMenuItem_Click(object sender, EventArgs e

private void AufAktualisierungenPrüfenToolStripMenuItem_Click(object sender, EventArgs e)
{
AutoUpdater.Start("https://updates.brightbits.de/backup_service_home/v3/auto_updater.xml");
if (Settings.Default.DownloadBeta)
{
AutoUpdater.Start("https://updates.brightbits.de/backup_service_home/v3/auto_updater_beta.xml");
}
else
{
AutoUpdater.Start("https://updates.brightbits.de/backup_service_home/v3/auto_updater.xml");
}
}

private async void ZurücksetzenToolStripMenuItem_Click(object sender, EventArgs e)
Expand Down

0 comments on commit 161d945

Please sign in to comment.