From a3351866d157e39a1579943094837e8579086091 Mon Sep 17 00:00:00 2001 From: Michael Steenbeek Date: Sat, 24 Jan 2026 00:59:19 +0100 Subject: [PATCH 1/2] Enable OpenLoco for macOS --- src/openlauncher/MainWindow.axaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openlauncher/MainWindow.axaml.cs b/src/openlauncher/MainWindow.axaml.cs index 56b10f7..29f4ffe 100644 --- a/src/openlauncher/MainWindow.axaml.cs +++ b/src/openlauncher/MainWindow.axaml.cs @@ -38,7 +38,7 @@ public MainWindow() var openRCT2Game = new GameMenuItem(Game.OpenRCT2, "avares://openlauncher/resources/icon-openrct2.png"); var openLocoGame = new GameMenuItem(Game.OpenLoco, "avares://openlauncher/resources/icon-openloco.png"); - if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { + if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows) || RuntimeInformation.IsOSPlatform(OSPlatform.OSX)) { gameListView.Items = new [] {openRCT2Game, openLocoGame}; } else { gameListView.Items = new [] {openRCT2Game}; From acffb832da3541893edec81c3946c08739f5b5f4 Mon Sep 17 00:00:00 2001 From: Michael Steenbeek Date: Sat, 24 Jan 2026 01:13:58 +0100 Subject: [PATCH 2/2] Fix failing test --- src/IntelOrca.OpenLauncher.Core/BuildService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IntelOrca.OpenLauncher.Core/BuildService.cs b/src/IntelOrca.OpenLauncher.Core/BuildService.cs index bba1bb2..7144bfc 100644 --- a/src/IntelOrca.OpenLauncher.Core/BuildService.cs +++ b/src/IntelOrca.OpenLauncher.Core/BuildService.cs @@ -30,7 +30,7 @@ public async Task> GetBuildsAsync(RepositoryName repo, boo { StartPage = 1, PageCount = 1, - PageSize = 50 + PageSize = 75 }; var releases = await _gitHubClient.Repository.Release.GetAll(repo.Owner, repo.Name, apiOptions) .ConfigureAwait(false);