diff --git a/CustomizePlus/Core/Services/Dalamud/DalamudBranchService.cs b/CustomizePlus/Core/Services/Dalamud/DalamudBranchService.cs index 70f6e75..738b361 100644 --- a/CustomizePlus/Core/Services/Dalamud/DalamudBranchService.cs +++ b/CustomizePlus/Core/Services/Dalamud/DalamudBranchService.cs @@ -9,7 +9,7 @@ public class DalamudBranchService : IService /// Message used in various places to tell user why the plugin is disabled /// public const string PluginDisabledMessage = "You are running development or testing version of Dalamud.\n" + - "Regular users are not supposed to run Customize+ on non-release versions of Dalamud therefore Customize+ has disabled itself until you go back to stable version."; + "Regular users are not supposed to run Customize+ on non-release versions of Dalamud therefore Customize+ has disabled itself until you go back to stable version.\n\nYou can go back to stable version by typing /xlbranch, clicking \"release\" and then \"Pick & Restart\"."; /// /// Current Dalamud branch diff --git a/CustomizePlus/UI/Windows/PopupSystem.Messages.cs b/CustomizePlus/UI/Windows/PopupSystem.Messages.cs index f8b7468..33b0ea1 100644 --- a/CustomizePlus/UI/Windows/PopupSystem.Messages.cs +++ b/CustomizePlus/UI/Windows/PopupSystem.Messages.cs @@ -48,6 +48,6 @@ public partial class PopupSystem RegisterPopup(Messages.ClipboardDataNotLongTerm, "Warning: clipboard data is not designed to be used as long-term way of storing your templates.\nCompatibility of copied data between different Customize+ versions is not guaranteed.", true, new Vector2(5, 10)); - RegisterPopup(Messages.PluginDisabledNonReleaseDalamud, DalamudBranchService.PluginDisabledMessage + "\nThis window will not be shown again.", true, new Vector2(5, 8)); + RegisterPopup(Messages.PluginDisabledNonReleaseDalamud, DalamudBranchService.PluginDisabledMessage + "\nThis notification will not be shown again.", true, new Vector2(5, 6)); } }