From 72501532fe23bcd9d8b277da1551cf90547d4dbf Mon Sep 17 00:00:00 2001 From: Vincent BOUQUET Date: Sat, 31 May 2025 23:44:27 +0200 Subject: [PATCH] fix adding two cams with same ip bump version --- MainForm.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MainForm.cs b/MainForm.cs index f29b8e1..d28a95b 100644 --- a/MainForm.cs +++ b/MainForm.cs @@ -14,7 +14,7 @@ namespace robospot_camera_finder { public partial class MainForm : Form { - public string VERSION = "1.0.0"; + public string VERSION = "1.1.0"; private BindingList all_cameras = new(); @@ -235,7 +235,7 @@ namespace robospot_camera_finder { string ipAddress = manualForm.ipAddress; - Camera camera_to_add = new Camera("Camera " + ipAddress, ipAddress, "", ""); + Camera camera_to_add = new Camera("Camera " + ipAddress, ipAddress, "", "CAM_FINDER_" + DateTime.Now.Ticks.ToString()); add_camera(camera_to_add); } }