diff options
| -rw-r--r-- | Malmstone/Malmstone.csproj | 2 | ||||
| -rw-r--r-- | Malmstone/Windows/ConfigWindow.cs | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/Malmstone/Malmstone.csproj b/Malmstone/Malmstone.csproj index 1e70f01..626d7b5 100644 --- a/Malmstone/Malmstone.csproj +++ b/Malmstone/Malmstone.csproj @@ -3,7 +3,7 @@ <Import Project="Dalamud.Plugin.Bootstrap.targets" /> <PropertyGroup> - <Version>1.0.6.5</Version> + <Version>1.0.7.0</Version> <Description>A PVP Series Malmstones Level Calculator</Description> <PackageProjectUrl>https://github.com/goatcorp/Malmstone</PackageProjectUrl> <PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression> diff --git a/Malmstone/Windows/ConfigWindow.cs b/Malmstone/Windows/ConfigWindow.cs index 7b61334..a4df91c 100644 --- a/Malmstone/Windows/ConfigWindow.cs +++ b/Malmstone/Windows/ConfigWindow.cs @@ -294,7 +294,8 @@ public class ConfigWindow : Window, IDisposable if (ImGui.IsItemHovered()) { ImGui.BeginTooltip(); - ImGui.Text("Show plugin tracked Series Level in the PVP Reward window (supports Series Levels above 30)"); + ImGui.Text("Show plugin tracked Series Level in the PVP Reward window (supports Series Levels above 30)" + + "\n[This modifies the game's native UI]"); ImGui.EndTooltip(); } ImGui.SameLine(); @@ -313,7 +314,8 @@ public class ConfigWindow : Window, IDisposable if (ImGui.IsItemHovered()) { ImGui.BeginTooltip(); - ImGui.Text("Show plugin tracked Series Level in the PVP Profile window (supports Series Levels above 30)"); + ImGui.Text("Show plugin tracked Series Level in the PVP Profile window (supports Series Levels above 30)" + + "\n[This modifies the game's native UI]"); ImGui.EndTooltip(); } ImGui.SameLine(); |
