From e270daeeb18ecfba40e874acb32ce469152ca35f Mon Sep 17 00:00:00 2001 From: Toastie Date: Thu, 19 Dec 2024 01:29:57 +1300 Subject: [PATCH] Moved repo from Emotions-stuff to EllieBotDevs Also upped version to 1.0.3.3 --- EllieHub/EllieHub.csproj | 2 +- EllieHub/Features/Home/Services/AppResolver.cs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/EllieHub/EllieHub.csproj b/EllieHub/EllieHub.csproj index 8e9abe4..834ac74 100644 --- a/EllieHub/EllieHub.csproj +++ b/EllieHub/EllieHub.csproj @@ -20,7 +20,7 @@ embedded - 1.0.3.2 + 1.0.3.3 app.manifest diff --git a/EllieHub/Features/Home/Services/AppResolver.cs b/EllieHub/Features/Home/Services/AppResolver.cs index 80ae409..de05f50 100644 --- a/EllieHub/Features/Home/Services/AppResolver.cs +++ b/EllieHub/Features/Home/Services/AppResolver.cs @@ -13,8 +13,8 @@ namespace EllieHub.Features.Home.Services; public sealed class AppResolver : IAppResolver { private const string _cachedCurrentVersionKey = "currentVersion:EllieHub"; - private const string _toastielabReleasesEndpointUrl = "https://toastielab.dev/api/v1/repos/Emotions-stuff/EllieHub/releases/latest"; - private const string _toastielabReleasesRepoUrl = "https://toastielab.dev/Emotions-stuff/EllieHub/releases/latest"; + private const string _toastielabReleasesEndpointUrl = "https://toastielab.dev/api/v1/repos/EllieBotDevs/EllieHub/releases/latest"; + private const string _toastielabReleasesRepoUrl = "https://toastielab.dev/EllieBotDevs/EllieHub/releases/latest"; private static readonly string _tempDirectory = Path.GetTempPath(); private static readonly string _downloadedFileName = GetDownloadFileName(); private readonly IHttpClientFactory _httpClientFactory; @@ -213,7 +213,7 @@ public sealed class AppResolver : IAppResolver } catch (InvalidOperationException) { - return $"https://toastielab.dev/Emotions-stuff/EllieHub/releases/download/{latestVersion}/{_downloadedFileName}"; + return $"https://toastielab.dev/EllieBotDevs/EllieHub/releases/download/{latestVersion}/{_downloadedFileName}"; } }