Skip to content

Commit c5dde94

Browse files
committed
moved buildgdx to github, updated to 1.3.0
1 parent 70dd4f4 commit c5dde94

File tree

4 files changed

+4
-18
lines changed

4 files changed

+4
-18
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>1.2.0</Version>
3+
<Version>1.3.0</Version>
44
<TargetFramework>net9.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<LangVersion>latest</LangVersion>

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<PackageVersion Include="System.Private.Uri" Version="4.3.2" />
3535
<PackageVersion Include="xunit" Version="2.9.3" />
3636
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.1" />
37-
<PackageVersion Include="AWSSDK.S3" Version="3.7.413.3" />
37+
<PackageVersion Include="AWSSDK.S3" Version="3.7.413.4" />
3838
<PackageVersion Include="ConfigureAwaitAnalyzer" Version="1.1.0" />
3939
<PackageVersion Include="Swashbuckle.AspNetCore" Version="7.2.0" />
4040
<PackageVersion Include="Microsoft.AspNetCore.SpaProxy" Version="9.0.1" />

src/Ports/Providers/PortsReleasesRepoRetriever.cs

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -69,19 +69,6 @@ HttpClient httpClient
6969

7070
Dictionary<OSEnum, GeneralReleaseEntity>? result = null;
7171

72-
if (portEnum is PortEnum.BuildGDX)
73-
{
74-
GeneralReleaseEntity bgdxRelease = new()
75-
{
76-
SupportedOS = OSEnum.Windows,
77-
Description = string.Empty,
78-
Version = "1.17",
79-
DownloadUrl = repo.RepoUrl
80-
};
81-
82-
return new() { { OSEnum.Windows, bgdxRelease } };
83-
}
84-
8572
if (repo.RepoUrl is null)
8673
{
8774
return null;

src/Ports/Providers/PortsRepositoriesProvider.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using Common.Entities;
22
using Common.Enums;
3-
using Common.Helpers;
43
using CommunityToolkit.Diagnostics;
54

65
namespace Ports.Providers;
@@ -13,8 +12,8 @@ public static RepositoryEntity GetPortRepo(PortEnum portEnum)
1312
{
1413
return new()
1514
{
16-
RepoUrl = new($"{Consts.FilesRepo}/Ports/BuildGDX_v117.zip"),
17-
WindowsReleasePredicate = null,
15+
RepoUrl = new("https://api.github.com/repos/fgsfds/BuildGDX-Releases/releases"),
16+
WindowsReleasePredicate = static x => x.FileName.EndsWith("windows.zip", StringComparison.OrdinalIgnoreCase),
1817
LinuxReleasePredicate = null,
1918
};
2019
}

0 commit comments

Comments
 (0)