From 34d0369b710c0b336c7253a23ee765b46adef33f Mon Sep 17 00:00:00 2001 From: LemonNexus Date: Wed, 11 Feb 2026 19:36:17 +0000 Subject: [PATCH] feat: add Ko-fi support link --- README-EU-Icon-Extractor.md | 1 + standalone_icon_extractor.py | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/README-EU-Icon-Extractor.md b/README-EU-Icon-Extractor.md index 0a5c948..be34a35 100644 --- a/README-EU-Icon-Extractor.md +++ b/README-EU-Icon-Extractor.md @@ -45,6 +45,7 @@ Documents\Entropia Universe\Icons\ - **Developer:** ImpulsiveFPS - **Discord:** impulsivefps - **GitHub:** https://github.com/ImpulsiveFPS/EU-Icon-Extractor +- **Support Me:** https://ko-fi.com/impulsivefps ## Disclaimer diff --git a/standalone_icon_extractor.py b/standalone_icon_extractor.py index 4899ce5..328d612 100644 --- a/standalone_icon_extractor.py +++ b/standalone_icon_extractor.py @@ -574,6 +574,13 @@ class IconExtractorWindow(QMainWindow): footer_line1.setAlignment(Qt.AlignmentFlag.AlignCenter) footer_layout.addWidget(footer_line1) + # Support me line + support_label = QLabel('☕ Support me on Ko-fi') + support_label.setStyleSheet("color: #888; font-size: 11px;") + support_label.setAlignment(Qt.AlignmentFlag.AlignCenter) + support_label.setOpenExternalLinks(True) + footer_layout.addWidget(support_label) + # Second line - disclaimer with links (no emojis) disclaimer_widget = QWidget() disclaimer_layout = QHBoxLayout(disclaimer_widget)