make inspector version a server api, split up output subtypes and tweak some option names

This commit is contained in:
LukeFZ
2025-07-29 23:46:14 +02:00
parent 6583787d8f
commit 832b0020eb
13 changed files with 57 additions and 56 deletions

View File

@@ -2,7 +2,7 @@ using Microsoft.AspNetCore.SignalR;
namespace Il2CppInspector.Redux.FrontendCore;
internal class Il2CppHub : Hub
public class Il2CppHub : Hub
{
private const string ContextKey = "context";
@@ -51,4 +51,8 @@ internal class Il2CppHub : Hub
{
await State.ExportIl2CppFiles(Client, outputDirectory);
}
public async Task<string> GetInspectorVersion()
{
return await UiContext.GetInspectorVersion();
}
}