diff --git a/config/app_config.json b/config/app_config.json index 9b1178b..7814f5f 100644 --- a/config/app_config.json +++ b/config/app_config.json @@ -1,7 +1,7 @@ { - "server_ip": "172.18.0.1", - "port": "5000", - "screen_name": "rpi-tvholba1", + "server_ip": "https://digi-signage.moto-adv.com", + "port": "80", + "screen_name": "tv-acasa", "quickconnect_key": "8887779", "orientation": "Landscape", "touch": "True", diff --git a/repo/python-wheels/Kivy-2.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl b/repo/python-wheels/Kivy-2.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl new file mode 100644 index 0000000..0942fe1 Binary files /dev/null and b/repo/python-wheels/Kivy-2.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl differ diff --git a/repo/python-wheels/certifi-2025.11.12-py3-none-any.whl b/repo/python-wheels/certifi-2025.11.12-py3-none-any.whl new file mode 100644 index 0000000..f7543ae Binary files /dev/null and b/repo/python-wheels/certifi-2025.11.12-py3-none-any.whl differ diff --git a/repo/python-wheels/cython-3.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl b/repo/python-wheels/cython-3.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl new file mode 100644 index 0000000..8d89e6f Binary files /dev/null and b/repo/python-wheels/cython-3.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl differ diff --git a/repo/python-wheels/docutils-0.22.3-py3-none-any.whl b/repo/python-wheels/docutils-0.22.3-py3-none-any.whl new file mode 100644 index 0000000..477622e Binary files /dev/null and b/repo/python-wheels/docutils-0.22.3-py3-none-any.whl differ diff --git a/repo/python-wheels/filetype-1.2.0-py2.py3-none-any.whl b/repo/python-wheels/filetype-1.2.0-py2.py3-none-any.whl new file mode 100644 index 0000000..c65b73b Binary files /dev/null and b/repo/python-wheels/filetype-1.2.0-py2.py3-none-any.whl differ diff --git a/repo/python-wheels/requests-2.32.5-py3-none-any.whl b/repo/python-wheels/requests-2.32.5-py3-none-any.whl new file mode 100644 index 0000000..2931062 Binary files /dev/null and b/repo/python-wheels/requests-2.32.5-py3-none-any.whl differ diff --git a/repo/python-wheels/setuptools-80.9.0-py3-none-any.whl b/repo/python-wheels/setuptools-80.9.0-py3-none-any.whl new file mode 100644 index 0000000..4c2c095 Binary files /dev/null and b/repo/python-wheels/setuptools-80.9.0-py3-none-any.whl differ diff --git a/requirements.txt b/requirements.txt index 0b4dcb3..ee1483f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -kivy==2.1.0 +kivy>=2.3.0 requests==2.32.4 bcrypt==4.2.1 aiohttp==3.9.1 diff --git a/src/__pycache__/get_playlists.cpython-311.pyc b/src/__pycache__/get_playlists.cpython-311.pyc index 0e41443..67e275d 100644 Binary files a/src/__pycache__/get_playlists.cpython-311.pyc and b/src/__pycache__/get_playlists.cpython-311.pyc differ diff --git a/start.sh b/start.sh index 73fe33b..c484236 100755 --- a/start.sh +++ b/start.sh @@ -33,13 +33,13 @@ fi echo "" # Check if configuration exists -if [ ! -f "config/app_config.txt" ]; then +if [ ! -f "config/app_config.json" ]; then echo "==========================================" echo "⚠ WARNING: Configuration file not found!" echo "==========================================" echo "" echo "Please configure the player before running:" - echo " 1. Copy config/app_config.txt.example to config/app_config.txt" + echo " 1. Copy config/app_config.json.example to config/app_config.json" echo " 2. Edit the configuration file with your server details" echo "" read -p "Press Enter to continue anyway, or Ctrl+C to exit..."