[RELEASE] Final version.

This commit is contained in:
2026-03-28 18:24:08 +05:30
parent a90e3a0d84
commit 1993d7eea3
12 changed files with 379 additions and 47 deletions

View File

@@ -59,21 +59,16 @@ class EnvBar(QWidget):
layout.setContentsMargins(12, 0, 12, 0)
layout.setSpacing(6)
# EKIKA logo
logo_path = os.path.join(_ASSETS_DIR, "ekika_logo.png")
if os.path.exists(logo_path):
# App logo icon
app_logo_path = os.path.join(_ASSETS_DIR, "app_logo_32.png")
if os.path.exists(app_logo_path):
logo_lbl = QLabel()
logo_lbl.setObjectName("ekikaLogo")
pix = QPixmap(logo_path)
logo_lbl.setPixmap(pix.scaledToHeight(26, Qt.TransformationMode.SmoothTransformation))
logo_lbl.setToolTip("EKIKA")
logo_lbl.setObjectName("appLogo")
pix = QPixmap(app_logo_path)
logo_lbl.setPixmap(pix.scaledToHeight(32, Qt.TransformationMode.SmoothTransformation))
logo_lbl.setToolTip("APIClient - Agent")
layout.addWidget(logo_lbl)
# Thin separator
sep = QLabel("|")
sep.setObjectName("brandSub")
sep.setFixedWidth(12)
sep.setAlignment(Qt.AlignmentFlag.AlignCenter)
layout.addWidget(sep)
layout.addSpacing(4)
brand = QLabel("APIClient")
brand.setObjectName("brandName")