From b38f8b7c8f32a1729e641cdde9efd8e69733ea6b Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Tue, 26 Aug 2025 12:53:25 -0700 Subject: adjust some terminology and wording in settings window --- Malmstone/Malmstone.csproj | 2 +- Malmstone/Windows/ConfigWindow.cs | 23 +++++++++++++++-------- 2 files changed, 16 insertions(+), 9 deletions(-) diff --git a/Malmstone/Malmstone.csproj b/Malmstone/Malmstone.csproj index 7bfaade..b6b9463 100644 --- a/Malmstone/Malmstone.csproj +++ b/Malmstone/Malmstone.csproj @@ -1,7 +1,7 @@ - 1.0.7.5 + 1.0.8.0 A PVP Series Malmstones Level Calculator https://github.com/goatcorp/Malmstone AGPL-3.0-or-later diff --git a/Malmstone/Windows/ConfigWindow.cs b/Malmstone/Windows/ConfigWindow.cs index eb4e36b..0a322d3 100644 --- a/Malmstone/Windows/ConfigWindow.cs +++ b/Malmstone/Windows/ConfigWindow.cs @@ -36,7 +36,7 @@ public class ConfigWindow : Window, IDisposable // PVP Match Tab if (ImGui.BeginTabItem("PVP Match")) { - ImGui.Text("Default Target Series Level"); + ImGui.Text("Goal Series Level"); var savedTargetSeriesRank = Configuration.DefaultTargetRankProperty; if (ImGui.InputInt("##SavedTargetSeriesRank", ref savedTargetSeriesRank, 1)) { @@ -65,13 +65,13 @@ public class ConfigWindow : Window, IDisposable { ImGui.BeginTooltip(); ImGui.Text( - "Automatically stops showing EXP progression notification after reaching the Default Target Series Level" + + "Automatically stops showing EXP progression notification after Goal Series Level is reached" + "\nOverrides other EXP notification settings"); ImGui.EndTooltip(); } ImGui.SameLine(); - ImGui.Text("Skip EXP progression notifications after default level is achieved"); + ImGui.Text("Skip EXP progression notifications after Goal Series Level is achieved"); @@ -86,13 +86,13 @@ public class ConfigWindow : Window, IDisposable { ImGui.BeginTooltip(); ImGui.Text( - "Automatically stops showing matches remaining chat messages after reaching the the Default Target Series Level" + + "Automatically stops showing matches remaining chat messages after reaching the Goal Series Level" + "\nOverrides other post-match chat notification settings"); ImGui.EndTooltip(); } ImGui.SameLine(); - ImGui.Text("Skip remaining matches chat notifications after default level is achieved"); + ImGui.Text("Skip remaining matches chat notifications after Goal Series Level is achieved"); ImGui.Separator(); @@ -256,7 +256,7 @@ public class ConfigWindow : Window, IDisposable } ImGui.SameLine(); - ImGui.Text("Show matches until Default Target Rank instead of next rank"); + ImGui.Text("Show matches until Goal Series Level instead of next rank"); ImGui.EndTabItem(); @@ -279,11 +279,18 @@ public class ConfigWindow : Window, IDisposable ImGui.EndTooltip(); } ImGui.SameLine(); - ImGui.Text("Show calculations when viewing Series Malmstones"); + ImGui.Text("Show main window when viewing PVP Series Rewards"); ImGui.Separator(); - ImGui.Text("Display Tracked Series Level Above 30 in..."); + ImGui.Text("Display TRUE Series Level in..."); + if (ImGui.IsItemHovered()) + { + ImGui.BeginTooltip(); + ImGui.Text( + "FFXIV stops tracking Series Level after 30.\nMalmstone Calculator can track and display your actual series level far beyond the maximum"); + ImGui.EndTooltip(); + } var showTrueSeriesLevelPVPReward = Configuration.ShowTrueSeriesLevelPVPReward; if (ImGui.Checkbox("##ShowTrueSeriesLevelPVPReward", ref showTrueSeriesLevelPVPReward)) { -- cgit v1.2.3