From 0578ecfdfeafa7d083692b11cb99eb07fed795d5 Mon Sep 17 00:00:00 2001 From: Garry Newman Date: Wed, 1 Jan 2020 15:34:21 +0000 Subject: [PATCH] Add Target Version --- Constants.cs | 5 +++++ UI/MainWindow.cs | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Constants.cs b/Constants.cs index 7ccf8b2..03e3fb0 100644 --- a/Constants.cs +++ b/Constants.cs @@ -40,5 +40,10 @@ public static class Constants /// Where OpenSSL's Config is located (it's installed with Composer) /// public const string OpenSslConfig = @"C:\Program Files (x86)\Control4\Composer\Pro\RemoteAccess\config\openssl.cfg"; + + /// + /// What version of Director/Composer we're aiming at + /// + public const string TargetDirectorVersion = @"3.1.0"; } } diff --git a/UI/MainWindow.cs b/UI/MainWindow.cs index f828688..b6cc0db 100644 --- a/UI/MainWindow.cs +++ b/UI/MainWindow.cs @@ -24,7 +24,7 @@ public MainWindow() { InitializeComponent(); - this.Text += $" - v{Constants.Version}"; + this.Text += $" - v{Constants.Version} - For C4 v{Constants.TargetDirectorVersion}"; MainTabControl.TabPages.Clear();