From f34421bb18e60c6800ed3669ed87106563b8c0a8 Mon Sep 17 00:00:00 2001 From: claudi Date: Fri, 20 Feb 2026 08:35:20 +0100 Subject: [PATCH] Update about dialog with enhanced product description and contact information --- src/webdrop_bridge/ui/main_window.py | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/src/webdrop_bridge/ui/main_window.py b/src/webdrop_bridge/ui/main_window.py index a6b3b56..0a12eca 100644 --- a/src/webdrop_bridge/ui/main_window.py +++ b/src/webdrop_bridge/ui/main_window.py @@ -1158,10 +1158,21 @@ class MainWindow(QMainWindow): f"{self.config.app_name}
" f"Version: {self.config.app_version}
" f"
" - f"A professional Qt-based desktop application that converts " - f"web-based drag-and-drop text paths into native file operations.
" + f"Bridges web-based drag-and-drop workflows with native file operations " + f"for professional desktop applications.
" f"
" - f"© 2026 WebDrop Bridge Contributors" + f"Product of:
" + f"Hörl Information Management GmbH
" + f"Silberburgstraße 126
" + f"70176 Stuttgart, Germany
" + f"
" + f"" + f"Email: info@hoerl-im.de
" + f"Phone: +49 (0) 711 933 42 52 – 0
" + f"Web: https://www.hoerl-im.de/
" + f"
" + f"
" + f"© 2026 Hörl Information Management GmbH. All rights reserved." ) QMessageBox.about(self, f"About {self.config.app_name}", about_text)