From 5fecd29666a676d43b98c57ab8e7bded2a78056f Mon Sep 17 00:00:00 2001 From: Theophile Terraz Date: Thu, 26 Feb 2026 16:57:42 +0100 Subject: [PATCH] =?UTF-8?q?Claude=20Fran=C3=A7ois?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/View/About/Window.py | 2 +- src/View/MainWindow.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/View/About/Window.py b/src/View/About/Window.py index 5472d7ae..b8d66f8e 100644 --- a/src/View/About/Window.py +++ b/src/View/About/Window.py @@ -55,7 +55,7 @@ class AboutWindow(PamhyrDialog): label = self.get_label_text("label_version") label = label.replace("@version", version) - label = label.replace("@codename", "") + label = label.replace("@codename", "(Claude François)") self.set_label_text("label_version", label) # Authors diff --git a/src/View/MainWindow.py b/src/View/MainWindow.py index 85720ee9..405a3312 100644 --- a/src/View/MainWindow.py +++ b/src/View/MainWindow.py @@ -195,10 +195,10 @@ class ApplicationWindow(QMainWindow, ListedSubWindow, WindowToolKit): title = "(dbg) " if self.conf.debug else "" if self._study is not None: - title += f"Pamhyr2 - {self._study.name}" + title += f"Pamhyr2 (Claude François) - {self._study.name}" self.setWindowTitle(title) else: - title += "Pamhyr2" + title += "Pamhyr2 (Claude François)" self.setWindowTitle(title) def setup_tab(self):