Skip to content

Commit

Permalink
Update CHangelog and SettingsWindow loc
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluefissure committed Mar 15, 2022
1 parent 8a13284 commit 55270a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Http.Json;
Expand All @@ -11,7 +11,7 @@ namespace Dalamud.Interface.Internal.Windows.PluginInstaller
/// </summary>
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();

Expand Down
2 changes: 1 addition & 1 deletion Dalamud/Interface/Internal/Windows/SettingsWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 55270a7

Please sign in to comment.