Skip to content

Commit 9cc7f12

Browse files
committed
Improve branch warning text
1 parent cbc732d commit 9cc7f12

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CustomizePlus/Core/Services/Dalamud/DalamudBranchService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class DalamudBranchService : IService
99
/// Message used in various places to tell user why the plugin is disabled
1010
/// </summary>
1111
public const string PluginDisabledMessage = "You are running development or testing version of Dalamud.\n" +
12-
"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.";
12+
"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\".";
1313

1414
/// <summary>
1515
/// Current Dalamud branch

CustomizePlus/UI/Windows/PopupSystem.Messages.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ private void RegisterMessages()
4848

4949
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));
5050

51-
RegisterPopup(Messages.PluginDisabledNonReleaseDalamud, DalamudBranchService.PluginDisabledMessage + "\nThis window will not be shown again.", true, new Vector2(5, 8));
51+
RegisterPopup(Messages.PluginDisabledNonReleaseDalamud, DalamudBranchService.PluginDisabledMessage + "\nThis notification will not be shown again.", true, new Vector2(5, 6));
5252
}
5353
}

0 commit comments

Comments
 (0)