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); 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};