Ajout logo CopyDev, icone et page A propos professionnelle

- Logo CopyDev 500x500 + icone 64x64
- Icone affichee dans la barre de titre et la taskbar
- Page A propos avec logo, version, description, coordonnees
  contact@copydev.fr, www.copydev.fr, copyright 2026

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jules
2026-03-20 11:19:19 +01:00
parent b9f7b38f43
commit 5bd4a18660
4 changed files with 84 additions and 7 deletions

View File

@@ -42,6 +42,12 @@ def main():
app.setApplicationName("Copydev Imposing Tool")
app.setOrganizationName("Copydev")
# Icone application
from PyQt6.QtGui import QIcon
icon_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "resources", "logo.png")
if os.path.exists(icon_path):
app.setWindowIcon(QIcon(icon_path))
if not _check_auth():
sys.exit(1)