Skip to content

Commit 38d247b

Browse files
Merge pull request #54 from KrystianLesniak/develop
Release: 1.9.1
2 parents 796e442 + 10b81d2 commit 38d247b

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
run: dotnet publish src/GamesLauncher -c Release -r win-x64 --no-self-contained -o publish/
2020
- uses: actions/upload-artifact@v4
2121
with:
22-
name: GamesLauncher.zip
22+
name: GamesLauncher
2323
path: publish/
2424
if-no-files-found: error

publishScript.ps1

-2
This file was deleted.

src/GamesLauncher.Common/Settings/LastPlayedGames.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public void AddLaunchedGameToLastPlayed(string internalGameId)
1515
{
1616
OrderedGames.Add(internalGameId);
1717

18-
if (OrderedGames.Count > 10)
18+
if (OrderedGames.Count > 100)
1919
OrderedGames.RemoveAt(0);
2020
}
2121
}

src/GamesLauncher.Platforms/SyncEngines/Epic/Models/EpicGame.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ internal class EpicGame
2626
if (displayName == null || catalogNamespace == null || catalogItemId == null || appName == null)
2727
return null;
2828

29-
var isIncompleteInstall = jObject.Value<bool?>("bIsIncompleteInstall");
29+
if (jObject.Value<string?>("MainGameCatalogItemId") != catalogItemId) // If this is an addon/DLC mainGameCatalogItemId and catalogItemId will be different
30+
return null;
3031

31-
if (isIncompleteInstall == true)
32+
if (jObject.Value<bool?>("bIsIncompleteInstall") == true) // If game installation is not completed this flag is true
3233
return null;
3334

3435
return new EpicGame

src/GamesLauncher/plugin.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Name": "GamesLauncher",
55
"Description": "Search and launch games from multiple platforms like Steam, Epic Games, Xbox etc.",
66
"Author": "KrystianLesniak",
7-
"Version": "1.9.0",
7+
"Version": "1.9.1",
88
"Language": "csharp",
99
"Website": "https://github.com/KrystianLesniak/Flow.Launcher.Plugin.GamesLauncher",
1010
"IcoPath": "icon.png",

0 commit comments

Comments
 (0)