- Add command info for db viewer

- french loc update
This commit is contained in:
Infi
2024-05-23 20:53:35 +02:00
parent 0936c87f8d
commit 8bbfba5a10
9 changed files with 722 additions and 123 deletions
+2 -2
View File
@@ -61,12 +61,12 @@ public class DbViewer : Window
RespectCloseHotkey = false;
DisableWindowSounds = true;
Plugin.Commands.Register("/chat2Viewer").Execute += Toggle;
Plugin.Commands.Register("/chat2Viewer", "Database Viewer", true).Execute += Toggle;
}
public void Dispose()
{
Plugin.Commands.Register("/chat2Viewer").Execute -= Toggle;
Plugin.Commands.Register("/chat2Viewer", "Database Viewer", true).Execute -= Toggle;
}
private void Toggle(string _, string __) => Toggle();
+2 -2
View File
@@ -26,14 +26,14 @@ public class DebuggerWindow : Window
DisableWindowSounds = true;
#if DEBUG
Plugin.Commands.Register("/chat2Debugger").Execute += Toggle;
Plugin.Commands.Register("/chat2Debugger", showInHelp: false).Execute += Toggle;
#endif
}
public void Dispose()
{
#if DEBUG
Plugin.Commands.Register("/chat2Debugger").Execute -= Toggle;
Plugin.Commands.Register("/chat2Debugger", showInHelp: false).Execute -= Toggle;
#endif
}
+2 -2
View File
@@ -28,14 +28,14 @@ public class SeStringDebugger : Window
DisableWindowSounds = true;
#if DEBUG
Plugin.Commands.Register("/chat2SeString").Execute += Toggle;
Plugin.Commands.Register("/chat2SeString", showInHelp: false).Execute += Toggle;
#endif
}
public void Dispose()
{
#if DEBUG
Plugin.Commands.Register("/chat2SeString").Execute -= Toggle;
Plugin.Commands.Register("/chat2SeString", showInHelp: false).Execute -= Toggle;
#endif
}