diff --git a/Needlework.Net/Assets/Icons/gears.png b/Needlework.Net/Assets/Icons/gears.png deleted file mode 100644 index 456fb01..0000000 Binary files a/Needlework.Net/Assets/Icons/gears.png and /dev/null differ diff --git a/Needlework.Net/Needlework.Net.csproj b/Needlework.Net/Needlework.Net.csproj index ef9256d..3d32a89 100644 --- a/Needlework.Net/Needlework.Net.csproj +++ b/Needlework.Net/Needlework.Net.csproj @@ -27,17 +27,17 @@ - - + + - - + + - + diff --git a/Needlework.Net/ViewModels/Pages/Endpoints/ResponseViewModel.cs b/Needlework.Net/ViewModels/Pages/Endpoints/ResponseViewModel.cs index 3e31434..ebc6fde 100644 --- a/Needlework.Net/ViewModels/Pages/Endpoints/ResponseViewModel.cs +++ b/Needlework.Net/ViewModels/Pages/Endpoints/ResponseViewModel.cs @@ -28,7 +28,7 @@ public partial class ResponseViewModel : ObservableObject private static ProcessInfo? GetProcessInfo() { - if (ProcessFinder.IsActive()) return ProcessFinder.Get(); + if (ProcessFinder.IsActive()) return ProcessFinder.GetProcessInfo(); return null; } } diff --git a/Needlework.Net/ViewModels/Pages/Websocket/WebsocketViewModel.cs b/Needlework.Net/ViewModels/Pages/Websocket/WebsocketViewModel.cs index fc36805..2d636e6 100644 --- a/Needlework.Net/ViewModels/Pages/Websocket/WebsocketViewModel.cs +++ b/Needlework.Net/ViewModels/Pages/Websocket/WebsocketViewModel.cs @@ -50,7 +50,7 @@ public partial class WebsocketViewModel : PageBase client.ReconnectionHappened.Subscribe(OnReconnection); client.Start(); - client.Send(new EventMessage(RequestType.Subscribe, EventMessage.Kinds.OnJsonApiEvent)); + client.Send(new EventMessage(EventRequestType.Subscribe, EventKinds.OnJsonApiEvent)); Client = client; return; } diff --git a/Needlework.Net/ViewModels/Shared/LcuRequestViewModel.cs b/Needlework.Net/ViewModels/Shared/LcuRequestViewModel.cs index 18c4616..52ceef8 100644 --- a/Needlework.Net/ViewModels/Shared/LcuRequestViewModel.cs +++ b/Needlework.Net/ViewModels/Shared/LcuRequestViewModel.cs @@ -59,7 +59,7 @@ public partial class LcuRequestViewModel : ObservableObject _ => throw new Exception("Method is not selected or missing."), }; - var processInfo = ProcessFinder.Get(); + var processInfo = ProcessFinder.GetProcessInfo(); RequestText?.Invoke(this, this); var content = new StringContent(RequestBody ?? string.Empty, new System.Net.Http.Headers.MediaTypeHeaderValue("application/json")); var client = Connector.GetLcuHttpClientInstance();