Skip to content

Commit

Permalink
Include pre releases in version check
Browse files Browse the repository at this point in the history
  • Loading branch information
leMicin committed Dec 28, 2024
1 parent 7016494 commit 27009d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ private void InitializeTray()

menuItems.AddRange(new List<TrayMenuItem>()
{
new(label: "Sidekick Beta - " + GetVersion()),
new(label: "Sidekick - " + GetVersion()),
new(label: Resources["Open_Website"],
onClick: () =>
{
Expand Down
2 changes: 1 addition & 1 deletion src/Sidekick.Common.Updater/AutoUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class AutoUpdater(
{
public async Task CheckForUpdates()
{
var source = new Velopack.Sources.GithubSource("https://github.com/Sidekick-Poe/Sidekick", null, false);
var source = new Velopack.Sources.GithubSource("https://github.com/Sidekick-Poe/Sidekick", null, true);
var updateManager = new UpdateManager(source);

logger.LogInformation("[AutoUpdater] Checking for updates.");
Expand Down

0 comments on commit 27009d7

Please sign in to comment.