Prepare v0.1.0 for public release

- Reorganize wiki images into structured folders
- Remove old UserGuides directory structure
- Update CHANGELOG and README for first release
- Engine updates and GUI improvements
This commit is contained in:
Omni
2025-09-11 14:57:45 +01:00
parent 1de7f2a80a
commit b14132b0eb
342 changed files with 121 additions and 46 deletions

View File

@@ -150,6 +150,22 @@ class SuccessDialog(QDialog):
)
card_layout.addWidget(next_steps_label)
# Subtle Ko-Fi support link
kofi_label = QLabel('<a href="https://ko-fi.com/omni1" style="color:#72A5F2; text-decoration:none;">Enjoying Jackify? Support development ♥</a>')
kofi_label.setAlignment(Qt.AlignCenter)
kofi_label.setStyleSheet(
"QLabel { "
" color: #72A5F2; "
" font-size: 11px; "
" margin-top: 8px; "
" padding: 4px; "
" background-color: transparent; "
"}"
)
kofi_label.setTextInteractionFlags(Qt.TextBrowserInteraction)
kofi_label.setOpenExternalLinks(True)
card_layout.addWidget(kofi_label)
layout.addStretch()
layout.addWidget(card, alignment=Qt.AlignCenter)
layout.addStretch()