Skip to content

Commit 4a33feb

Browse files
committed
added a credit section
1 parent 7dfb47a commit 4a33feb

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

main.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def get_resource_path(relative_path):
4242
# CONFIGURATION
4343
# ═══════════════════════════════════════════════════════════════════════════════
4444

45-
APP_VERSION = "1.0"
45+
APP_VERSION = "1.0-beta"
4646
WEBSERVER_BASE_URL = "https://webserver-ecru.vercel.app"
4747
GAMES_INDEX_URL = f"{WEBSERVER_BASE_URL}/api/games_index.json"
4848
LUA_FILE_URL = f"{WEBSERVER_BASE_URL}/lua/"
@@ -507,10 +507,17 @@ def _init_ui(self):
507507

508508
# Version Label
509509
version_label = QLabel(f"v{APP_VERSION}")
510-
version_label.setStyleSheet(f"color: {Colors.GLASS_BORDER}; font-size: 12px; font-weight: bold;")
510+
version_label.setStyleSheet(f"color: {Colors.TEXT_SECONDARY}; font-size: 12px; font-weight: bold;")
511511
version_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
512512
left_col.addWidget(version_label)
513513

514+
# Creator Footer
515+
creator_label = QLabel('<a href="https://github.com/sayedalimollah2602-prog" style="color: #94A3B8; text-decoration: none;">created by leVI</a>')
516+
creator_label.setStyleSheet(f"font-size: 11px;")
517+
creator_label.setAlignment(Qt.AlignmentFlag.AlignCenter)
518+
creator_label.setOpenExternalLinks(True)
519+
left_col.addWidget(creator_label)
520+
514521
main_layout.addLayout(left_col, 35) # 35% width
515522

516523
# ─── RIGHT COLUMN: SEARCH & LIST (2/3 width) ───

0 commit comments

Comments
 (0)