diff --git a/Dalamud/Interface/Internal/Windows/PluginInstaller/DalamudChangelogManager.cs b/Dalamud/Interface/Internal/Windows/PluginInstaller/DalamudChangelogManager.cs index f0fef8163c..6d2fa63597 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstaller/DalamudChangelogManager.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstaller/DalamudChangelogManager.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Net.Http; using System.Net.Http.Json; @@ -11,7 +11,7 @@ namespace Dalamud.Interface.Internal.Windows.PluginInstaller /// internal class DalamudChangelogManager : IDisposable { - private const string ChangelogUrl = "https://kamori.goats.dev/Plugin/CoreChangelog"; + private const string ChangelogUrl = "https://dalamudassets-1253720819.cos.ap-nanjing.myqcloud.com/Changelog/Changelog.json"; private readonly HttpClient client = new(); diff --git a/Dalamud/Interface/Internal/Windows/SettingsWindow.cs b/Dalamud/Interface/Internal/Windows/SettingsWindow.cs index 057385cc7f..c3f8e4e1cd 100644 --- a/Dalamud/Interface/Internal/Windows/SettingsWindow.cs +++ b/Dalamud/Interface/Internal/Windows/SettingsWindow.cs @@ -481,7 +481,7 @@ private void DrawServerInfoBarTab() ImGui.Text(Loc.Localize("DalamudSettingServerInfoBarDirection", "Server Info Bar direction")); ImGui.TextColored(ImGuiColors.DalamudGrey, Loc.Localize("DalamudSettingServerInfoBarDirectionHint", "If checked, the Server Info Bar elements will expand to the right instead of the left.")); - ImGui.Checkbox("Swap Direction", ref this.dtrSwapDirection); + ImGui.Checkbox(Loc.Localize("DalamudSettingServerInfoSwapDirection", "Swap Direction"), ref this.dtrSwapDirection); } private void DrawExperimentalTab()