From 0e53619fa4dcac390af2ea1ad2af2ba80c59ed28 Mon Sep 17 00:00:00 2001 From: goaaats Date: Thu, 3 Feb 2022 03:07:41 +0100 Subject: [PATCH] feat: new PluginMaster URL with changelogs from PRs --- Dalamud/Plugin/Internal/PluginRepository.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dalamud/Plugin/Internal/PluginRepository.cs b/Dalamud/Plugin/Internal/PluginRepository.cs index 6ed646b0d..a3e7fbaba 100644 --- a/Dalamud/Plugin/Internal/PluginRepository.cs +++ b/Dalamud/Plugin/Internal/PluginRepository.cs @@ -1,7 +1,6 @@ using System; using System.Collections.Generic; using System.Collections.ObjectModel; -using System.Net.Http; using System.Threading.Tasks; using Dalamud.Logging.Internal; @@ -14,9 +13,9 @@ namespace Dalamud.Plugin.Internal /// /// This class represents a single plugin repository. /// - internal partial class PluginRepository + internal class PluginRepository { - private const string DalamudPluginsMasterUrl = "https://raw.githubusercontent.com/goatcorp/DalamudPlugins/api5/pluginmaster.json"; + private const string DalamudPluginsMasterUrl = "https://kamori.goats.dev/Plugin/GetPluginMaster"; private static readonly ModuleLog Log = new("PLUGINR");