Skip to content

Commit f6cc20e

Browse files
Updated NuGet, manifest
1 parent 7b73177 commit f6cc20e

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

external/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"version": "1.0.0.3",
2+
"version": "1.0.0.4",
33
"display_name": "Amethyst Tracking Relay",
4-
"download": "plugin_Relay.zip",
4+
"download_": "plugin_Relay.zip",
55
"changelog": "New transport layer.",
66
"guid": "K2VRTEAM-AME2-APII-DVCE-TRACKINGRELAY"
77
}

plugin_Relay/RelayDevice.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace plugin_Relay;
2727
[ExportMetadata("Name", "Amethyst Tracking Relay")]
2828
[ExportMetadata("Guid", "K2VRTEAM-AME2-APII-DVCE-TRACKINGRELAY")]
2929
[ExportMetadata("Publisher", "K2VR Team")]
30-
[ExportMetadata("Version", "1.0.0.3")]
30+
[ExportMetadata("Version", "1.0.0.4")]
3131
[ExportMetadata("Website", "https://github.com/KimihikoAkayasaki/plugin_Relay")]
3232
public class RelayDevice : ITrackingDevice
3333
{

plugin_Relay/RelayService.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace plugin_Relay;
3030
[ExportMetadata("Name", "Amethyst Tracking Relay")]
3131
[ExportMetadata("Guid", "K2VRTEAM-AME2-APII-DVCE-TRACKINGRELAY")]
3232
[ExportMetadata("Publisher", "K2VR Team")]
33-
[ExportMetadata("Version", "1.0.0.3")]
33+
[ExportMetadata("Version", "1.0.0.4")]
3434
[ExportMetadata("Website", "https://github.com/KimihikoAkayasaki/plugin_Relay")]
3535
public class RelayService : IServiceEndpoint
3636
{
@@ -101,6 +101,7 @@ public bool IsBackfeed
101101
public bool IsSettingsDaemonSupported => true;
102102
public int ServiceStatus { get; set; } = -1;
103103
public Uri ErrorDocsUri => new("https://docs.k2vr.tech/");
104+
public Dictionary<TrackerType, SortedSet<IKeyInputAction>> SupportedInputActions => [];
104105
public bool IsAmethystVisible => true;
105106
public bool IsRestartOnChangesNeeded => false;
106107
public bool CanAutoStartAmethyst => false;
@@ -181,6 +182,11 @@ public void Heartbeat()
181182
}
182183
}
183184

185+
public Task ProcessKeyInput(IKeyInputAction action, object data, TrackerType? receiver, CancellationToken? token = null)
186+
{
187+
return Task.CompletedTask;
188+
}
189+
184190
// This initializes/connects to the service
185191
public int Initialize()
186192
{

plugin_Relay/plugin_Relay.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@
2424
</ItemGroup>
2525

2626
<ItemGroup>
27-
<PackageReference Include="Amethyst.Plugins.Contract" Version="0.2.25" />
27+
<PackageReference Include="Amethyst.Plugins.Contract" Version="0.3.33" />
2828
<PackageReference Include="MemoryPack" Version="1.10.0" />
29-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
30-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
29+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
30+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.0" />
3131
<PackageReference Include="Stl.Generators" Version="6.8.11" />
3232
<PackageReference Include="Stl.Rpc" Version="6.8.11" />
3333
<PackageReference Include="Stl.Rpc.Server" Version="6.8.11" />
34-
<PackageReference Include="System.ComponentModel.Composition" Version="8.0.0" />
35-
<PackageReference Include="System.ComponentModel.Composition.Registration" Version="8.0.0" />
34+
<PackageReference Include="System.ComponentModel.Composition" Version="9.0.0" />
35+
<PackageReference Include="System.ComponentModel.Composition.Registration" Version="9.0.0" />
3636
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240627000" />
3737
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1" />
3838
</ItemGroup>

0 commit comments

Comments
 (0)