same thing
This commit is contained in:
@@ -76,5 +76,5 @@
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\LightlessAPI\LightlessSyncAPI\LightlessSync.API.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -13,7 +13,7 @@ namespace LightlessSync.Services;
|
||||
|
||||
public sealed class CommandManagerService : IDisposable
|
||||
{
|
||||
private const string _commandName = "/mare";
|
||||
private const string _commandName = "/light";
|
||||
|
||||
private readonly ApiController _apiController;
|
||||
private readonly ICommandManager _commandManager;
|
||||
@@ -38,11 +38,11 @@ public sealed class CommandManagerService : IDisposable
|
||||
{
|
||||
HelpMessage = "Opens the Lightless Sync UI" + Environment.NewLine + Environment.NewLine +
|
||||
"Additionally possible commands:" + Environment.NewLine +
|
||||
"\t /mare toggle - Disconnects from Mare, if connected. Connects to Mare, if disconnected" + Environment.NewLine +
|
||||
"\t /mare toggle on|off - Connects or disconnects to Mare respectively" + Environment.NewLine +
|
||||
"\t /mare gpose - Opens the Mare Character Data Hub window" + Environment.NewLine +
|
||||
"\t /mare analyze - Opens the Mare Character Data Analysis window" + Environment.NewLine +
|
||||
"\t /mare settings - Opens the Mare Settings window"
|
||||
"\t /light toggle - Disconnects from Mare, if connected. Connects to Mare, if disconnected" + Environment.NewLine +
|
||||
"\t /light toggle on|off - Connects or disconnects to Mare respectively" + Environment.NewLine +
|
||||
"\t /light gpose - Opens the Mare Character Data Hub window" + Environment.NewLine +
|
||||
"\t /light analyze - Opens the Mare Character Data Analysis window" + Environment.NewLine +
|
||||
"\t /light settings - Opens the Mare Settings window"
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@@ -1054,7 +1054,7 @@ internal sealed partial class CharaDataHubUi : WindowMediatorSubscriberBase
|
||||
_configService.Current.OpenMareHubOnGposeStart = openInGpose;
|
||||
_configService.Save();
|
||||
}
|
||||
_uiSharedService.DrawHelpText("This will automatically open the import menu when loading into Gpose. If unchecked you can open the menu manually with /mare gpose");
|
||||
_uiSharedService.DrawHelpText("This will automatically open the import menu when loading into Gpose. If unchecked you can open the menu manually with /light gpose");
|
||||
bool downloadDataOnConnection = _configService.Current.DownloadMcdDataOnConnection;
|
||||
if (ImGui.Checkbox("Download MCD Online Data on connecting", ref downloadDataOnConnection))
|
||||
{
|
||||
|
||||
@@ -118,7 +118,7 @@ public sealed class TokenProvider : IDisposable, IMediatorSubscriber
|
||||
Mediator.Publish(new NotificationMessage("Error refreshing token", "Your authentication token could not be renewed. Try reconnecting to Mare manually.",
|
||||
NotificationType.Error));
|
||||
else
|
||||
Mediator.Publish(new NotificationMessage("Error generating token", "Your authentication token could not be generated. Check Mares Main UI (/mare in chat) to see the error message.",
|
||||
Mediator.Publish(new NotificationMessage("Error generating token", "Your authentication token could not be generated. Check Mares Main UI (/light in chat) to see the error message.",
|
||||
NotificationType.Error));
|
||||
Mediator.Publish(new DisconnectedMessage());
|
||||
throw new LightlessAuthFailureException(response);
|
||||
|
||||
Reference in New Issue
Block a user