From 12afe96cb68a2fd1bbc14d766c724c61bd0eef7c Mon Sep 17 00:00:00 2001 From: Vincent BOUQUET Date: Fri, 30 May 2025 21:35:09 +0200 Subject: [PATCH] add version tag --- MainForm.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/MainForm.cs b/MainForm.cs index d00d46a..3942bca 100644 --- a/MainForm.cs +++ b/MainForm.cs @@ -14,6 +14,8 @@ namespace robospot_camera_finder { public partial class MainForm : Form { + public string VERSION = "1.0.0"; + private BindingList all_cameras = new(); public static string cam_username = "admin"; @@ -98,6 +100,8 @@ namespace robospot_camera_finder { InitializeComponent(); + this.Text += " - " + VERSION; + bool got_proper_ip = false; foreach (var net_interface in NetworkInterface.GetAllNetworkInterfaces()) {