This commit is contained in:
afkarxyz
2025-05-30 22:22:14 +07:00
parent 2b12684960
commit c13855fadd
2 changed files with 16 additions and 6 deletions
+3 -3
View File
@@ -550,7 +550,7 @@ class QobuzRegionComboBox(QComboBox):
class SpotiFLACGUI(QWidget):
def __init__(self):
super().__init__()
self.current_version = "2.8"
self.current_version = "2.9"
self.tracks = []
self.reset_state()
@@ -954,7 +954,7 @@ class SpotiFLACGUI(QWidget):
sections = [
("Check for Updates", "https://github.com/afkarxyz/SpotiFLAC/releases"),
("Report an Issue", "https://github.com/afkarxyz/SpotiFLAC/issues"),
("Lucida Site", "https://lucida.to/stats")
("Lucida Status", "https://status.lucida.to")
]
for title, url in sections:
@@ -995,7 +995,7 @@ class SpotiFLACGUI(QWidget):
spacer = QSpacerItem(20, 6, QSizePolicy.Policy.Minimum, QSizePolicy.Policy.Fixed)
about_layout.addItem(spacer)
footer_label = QLabel("v2.8 | May 2025")
footer_label = QLabel("v2.9 | May 2025")
footer_label.setStyleSheet("font-size: 12px; margin-top: 10px;")
about_layout.addWidget(footer_label, alignment=Qt.AlignmentFlag.AlignCenter)