feat: display version, gui and env location in about
Build and Publish / test (pull_request) Failing after 1m27s
Build and Publish / build (pull_request) Skipped
Build and Publish / Build and Deploy Docs (pull_request) Skipped
Build and Publish / test (pull_request_target) Failing after 1m23s
Build and Publish / build (pull_request_target) Skipped
Build and Publish / Build and Deploy Docs (pull_request_target) Skipped
Build and Publish / test (push) Failing after 1m32s
Build and Publish / build (push) Skipped
Build and Publish / Build and Deploy Docs (push) Skipped

This commit was merged in pull request #92.
This commit is contained in:
2026-07-07 17:02:07 +02:00
parent 3ec2bc011b
commit cf879ee2a5
2 changed files with 3 additions and 5 deletions
+1
View File
@@ -1,3 +1,4 @@
import importlib
import os
import sys
import traceback
+2 -5
View File
@@ -27,6 +27,7 @@ from PySide6.QtWidgets import (
QWidget,
)
from aare.gui.about import about_text
from aare.gui.constants import LOGGER_NAME
# Gui Models
@@ -1605,11 +1606,7 @@ class MainWindow(QMainWindow):
self.video_tab.setCurrentIndex(0)
def show_about_dialog(self):
QMessageBox.about(
self,
"About",
"Aare Macromolecular Crystallography GUI\nVersion: 0.3.1\nCopyright: Paul Scherrer Institute 2024-2026",
)
QMessageBox.about(self, "About", about_text())
def show_controls_help(self) -> None:
if self._controls_help_dialog is None: