File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 "
4646WEBSERVER_BASE_URL = "https://webserver-ecru.vercel.app"
4747GAMES_INDEX_URL = f"{ WEBSERVER_BASE_URL } /api/games_index.json"
4848LUA_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) ───
You can’t perform that action at this time.
0 commit comments