From c969467662dcf0bf295f9f07fe228365560d3cd5 Mon Sep 17 00:00:00 2001 From: Julian Waller Date: Thu, 13 Jan 2022 10:12:15 +0000 Subject: [PATCH] chore: minor tidying --- AtemProxy/AtemServer.cs | 2 +- AtemProxy/Program.cs | 20 -------------------- README.md | 5 +++-- 3 files changed, 4 insertions(+), 23 deletions(-) diff --git a/AtemProxy/AtemServer.cs b/AtemProxy/AtemServer.cs index b180eaa..4ff328b 100644 --- a/AtemProxy/AtemServer.cs +++ b/AtemProxy/AtemServer.cs @@ -45,7 +45,7 @@ public void AcceptConnections() _accept = true; } - public void StartAnnounce(string modelName, string deviceId) + public void StartAnnounce(string modelName, string deviceId) { _mdns.UseIpv4 = true; _mdns.UseIpv6 = false; diff --git a/AtemProxy/Program.cs b/AtemProxy/Program.cs index 044d08e..466038e 100644 --- a/AtemProxy/Program.cs +++ b/AtemProxy/Program.cs @@ -39,7 +39,6 @@ public static void Main(string[] args) server.Connections.OnReceive += (sender, pkt) => { log.InfoFormat("Got packet from {0}", sender); - // TODO var acceptedCommands = new List>(); foreach (ParsedCommandSpec rawCmd in pkt.Commands) @@ -130,25 +129,6 @@ public static void Main(string[] args) server.StartReceive(); server.StartPingTimer(); - - /* - var client = new AtemClient("10.42.13.95"); - client.Connect(); - client.OnConnection += (sender) => - { - client.SendCommand(new FairlightMixerSourceSetCommand() - { - Mask = FairlightMixerSourceSetCommand.MaskFlags.Gain, - Index = AudioSource.Mic1, - SourceId = -256, - Gain = -10 - }); - Console.WriteLine("Sent"); - }; - - while(true){} - */ - Console.WriteLine("Press Ctrl+C to terminate..."); AutoResetEvent waitHandle = new AutoResetEvent(false); diff --git a/README.md b/README.md index 9824b39..e935cc9 100644 --- a/README.md +++ b/README.md @@ -18,10 +18,11 @@ Note: It is recommended to connect directly to the atem for clients which are im The primary focus is to support 8.0+ fully. Older versions may work, but are no longer recommended. 7.2 should work pretty well, but is not feature complete. -Currently, 8.0.0 - 8.5.3 should work fully. Newer firmware may work, but could have issues with clients connecting after it has been running for a while. +Currently, 8.0.0 - 8.6.4 should work fully. Newer firmware may work, but could have issues with clients connecting after it has been running for a while. ### Download -When it is ready + +Check the releases tab ### Usage Coming soon