Skip to content

Commit

Permalink
Merge pull request #24 from KrystianLesniak/develop
Browse files Browse the repository at this point in the history
Release: 1.4.2
  • Loading branch information
KrystianLesniak authored Sep 21, 2023
2 parents 15bdf85 + 065614b commit 7246c30
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 19 deletions.
15 changes: 0 additions & 15 deletions appveyor.yml

This file was deleted.

4 changes: 2 additions & 2 deletions publishScript.ps1
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
dotnet publish src/GamesLauncher -c Release -r win-x64 --no-self-contained
Compress-Archive -Path src/GamesLauncher/bin/Release/win-x64/publish/* -DestinationPath src/GamesLauncher/bin/GamesLauncher.zip -Force
dotnet publish src/GamesLauncher -c Release -r win-x64 --no-self-contained -o publish/
Compress-Archive -Path publish/* -DestinationPath publish/GamesLauncher.zip -Force
3 changes: 2 additions & 1 deletion src/GamesLauncher.Platforms/SyncEngines/XboxSyncEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ public async IAsyncEnumerable<Game> GetGames()
{
var gameTitle = game.DisplayName;

var shellGame = appsFolder.FirstOrDefault(x => x.Name == gameTitle);
var shellGame = appsFolder.FirstOrDefault(x => x.ParsingName.StartsWith(game.Id.Value));

if (shellGame != null)
{
var cmd = $"shell:appsFolder\\{shellGame.ParsingName}";
Expand Down
2 changes: 1 addition & 1 deletion src/GamesLauncher/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Name": "GamesLauncher",
"Description": "Search and launch games from multiple platforms like Steam, Epic Games, Xbox etc.",
"Author": "KrystianLesniak",
"Version": "1.4.1",
"Version": "1.4.2",
"Language": "csharp",
"Website": "https://github.com/KrystianLesniak/Flow.Launcher.Plugin.GamesLauncher",
"IcoPath": "icon.png",
Expand Down

0 comments on commit 7246c30

Please sign in to comment.