Update default version in AboutDialog

Changed the default version displayed in the AboutDialog from '4.7.0' to '4.8.0b' to reflect the latest release.
This commit is contained in:
Your Name
2025-08-26 19:27:51 +03:00
parent eaf1786d21
commit 47609c7017
@@ -155,7 +155,7 @@ class AboutDialog(QDialog):
layout.addWidget(title_label)
version_label = QLabel(
f"<span style='color: #cccccc; font-size: 13px; font-weight: normal;'>Version {getattr(self._parent, 'version', '4.7.0')}</span>"
f"<span style='color: #cccccc; font-size: 13px; font-weight: normal;'>Version {getattr(self._parent, 'version', '4.8.0b')}</span>"
)
version_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
layout.addWidget(version_label)