Finalize: working player, automatic playlist version check, server URL fix, and robust playlist update logic

This commit is contained in:
2025-08-22 23:02:31 +03:00
parent 47d9ec5779
commit 1706ae7afd
11 changed files with 3302 additions and 2055 deletions

View File

@@ -9,10 +9,12 @@ import sys
# Add the current directory to the path so we can import our modules
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
# Import the player module
from tkinter_simple_player import SimpleMediaPlayerApp
# Import the player module from player_app.py
from player_app import SimpleMediaPlayerApp
if __name__ == "__main__":
# Create and run the player
player = SimpleMediaPlayerApp()
import tkinter as tk
root = tk.Tk()
player = SimpleMediaPlayerApp(root)
player.run()