feat: new PluginMaster URL with changelogs from PRs

This commit is contained in:
goaaats 2022-02-03 03:07:41 +01:00
parent d2e6003abe
commit 0e53619fa4
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

@ -1,7 +1,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
using System.Net.Http;
using System.Threading.Tasks; using System.Threading.Tasks;
using Dalamud.Logging.Internal; using Dalamud.Logging.Internal;
@ -14,9 +13,9 @@ namespace Dalamud.Plugin.Internal
/// <summary> /// <summary>
/// This class represents a single plugin repository. /// This class represents a single plugin repository.
/// </summary> /// </summary>
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"); private static readonly ModuleLog Log = new("PLUGINR");