From b70b99d572ecfad16f4b1702cf04e661faebfed7 Mon Sep 17 00:00:00 2001 From: ken910606 Date: Thu, 12 Mar 2026 02:04:23 +0800 Subject: [PATCH] Release v1.0.0 --- src/GUI/gui.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/GUI/gui.py b/src/GUI/gui.py index 18dd407..015167f 100644 --- a/src/GUI/gui.py +++ b/src/GUI/gui.py @@ -22,9 +22,11 @@ from mission_planner import FormationPlanner # ================================================================================ class ControlStationUI(QMainWindow): + VERSION = '1.0.0' + def __init__(self): super().__init__() - self.setWindowTitle('GCS') + self.setWindowTitle(f'GCS v{self.VERSION}') self.resize(1400, 900) # 初始化ROS2 @@ -675,7 +677,7 @@ class ControlStationUI(QMainWindow): 'y': y } # 更新 overview table 的位置欄位 (只顯示 x, y) - local_text = f"({x:.1f}, {y:.1f})" + local_text = f"{x:.1f}, {y:.1f}" self.update_overview_table(drone_id, 'local', local_text) elif msg_type == 'hud':