updated packages

This commit is contained in:
Not Officer 2021-02-18 12:44:25 +01:00
parent 2331b2de71
commit 5680634acc
3 changed files with 5 additions and 5 deletions

View File

@ -41,7 +41,7 @@ namespace FModel.Creator.Bases
if (export.GetExport<NameProperty>("PlaylistName") is { } playlistName && !playlistName.Value.IsNone)
{
ApiResponse<PlaylistV1> playlist = Endpoints.FortniteAPI.V1.Playlists.Get(playlistName.Value.String);
ApiResponse<PlaylistV1> playlist = Endpoints.FortniteAPIClient.V1.Playlists.Get(playlistName.Value.String);
if (playlist.IsSuccess && playlist.Data.Images.HasShowcase)
{

View File

@ -115,11 +115,11 @@
<PackageReference Include="Autoupdater.NET.Official" Version="1.6.4" />
<PackageReference Include="AvalonEdit" Version="6.0.1" />
<PackageReference Include="CSCore" Version="1.2.1.2" />
<PackageReference Include="DiscordRichPresence" Version="1.0.169" />
<PackageReference Include="DiscordRichPresence" Version="1.0.175" />
<PackageReference Include="DotNetZip" Version="1.15.0" />
<PackageReference Include="EpicManifestParser" Version="1.2.0" />
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.0.1" />
<PackageReference Include="Fortnite-API-Wrapper" Version="2.1.0" />
<PackageReference Include="Extended.Wpf.Toolkit" Version="4.0.2" />
<PackageReference Include="Fortnite-API-Wrapper" Version="2.2.0" />
<PackageReference Include="K4os.Compression.LZ4.Streams" Version="1.2.6" />
<PackageReference Include="LZMA-SDK" Version="19.0.0" />
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.19041.1" />

View File

@ -13,7 +13,7 @@ namespace FModel.Utils
{
static class Endpoints
{
public static readonly FortniteApi FortniteAPI = new FortniteApi($"FModel/{Assembly.GetExecutingAssembly().GetName().Version}");
public static readonly FortniteApiClient FortniteAPIClient = new FortniteApiClient($"FModel/{Assembly.GetExecutingAssembly().GetName().Version}");
public const string BENBOT_AES = "https://benbotfn.tk/api/v1/aes";
public const string BENBOT_MAPPINGS = "https://benbotfn.tk/api/v1/mappings";
public const string BENBOT_HOTFIXES = "https://benbotfn.tk/api/v1/hotfixes";