@@ -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" ) ]
3535public 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 {
0 commit comments