Added auto enroll feature #1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "Asuna/Influx:master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Visual studio required me to modify the solution file to actually get it to build. That's why you see that in there.
@ -69,0 +71,4 @@
HelpMessage = "Opens influx configuration"
});
_commandManager.AddHandler("/influx gil", new CommandInfo(ProcessCommand)
I actually didn't know you could add commands with spaces, nevermind whether that is even processed correctly or not. Is there any other plugin that does this?
I saw this on the Doorbell plugin code. I was trying to find a way to include the help info in /xlplugins for it
The sample I saw to get that idea:
https://github.com/Aida-Enna/Doorbell/blob/main/Plugin.cs
I changed it to how Limiana does it for lifestream instead just now
@ -106,0 +106,4 @@
var refIncludeAll = _configuration.AutoEnrollCharacters;
if (ImGui.Checkbox("Auto enroll characters", ref refIncludeAll))
{
_configuration.AutoEnrollCharacters = refIncludeAll;
This is probably missing a
Save(true);
if I'm not mistaken.Thanks!! Fixed and will repush in a sec
@ -138,3 +144,1 @@
ImGui.TextColored(ImGuiColors.DalamudRed,
"This character is currently excluded.");
if (ImGui.Button("Include current character"))
if (_configuration.AutoEnrollCharacters)
The way this is phrased should probably be running in a
IClientState.Login
event, and not only when you open the configuration AND this tab in the UI.Thanks for the input, i made some modifications and will push in a minute
Checkout
From your project repository, check out a new branch and test the changes.