Bug fix et mise à jour fichier .spec

This commit is contained in:
2026-03-13 14:02:59 +01:00
parent d0ede2acd5
commit 8e22b69f81
4 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
# -*- mode: python ; coding: utf-8 -*-
a = Analysis(
['src\\mainwindow.py'],
['src\\main.py'],
pathex=[],
binaries=[],
datas=[

View File

@@ -3,7 +3,7 @@ from PySide6.QtMultimedia import QMediaPlayer, QAudioOutput
from config.config_manager import ConfigManager, VOLUME_KEY
from src.constants import MP3_PATH
from constants import MP3_PATH
class AudioController:
# Encapsule toute la logique audio : lecture, volume, mute.

View File

@@ -1,7 +1,7 @@
from PySide6.QtCore import QPropertyAnimation, QEasingCurve
from PySide6.QtWidgets import QGraphicsDropShadowEffect
from src.constants import GLOW_COLOR, GLOW_BLUR_BASE, GLOW_BLUR_PEAK, GLOW_ANIM_DURATION
from constants import GLOW_COLOR, GLOW_BLUR_BASE, GLOW_BLUR_PEAK, GLOW_ANIM_DURATION
class GlowAnimator:

View File

@@ -6,7 +6,7 @@ from PySide6.QtUiTools import QUiLoader
from PySide6.QtWidgets import QMainWindow
from config.config_manager import ConfigManager
from src.constants import URLS, NO_STAFF
from constants import URLS, NO_STAFF
from controllers.audio_controller import AudioController
from controllers.glow_animator import GlowAnimator
from controllers.window_dragger import WindowDragger