Compare commits

..

10 Commits

Author SHA1 Message Date
David
7eced183e4 Update to 3.14-alpine3.23 2025-12-08 22:39:36 +01:00
dependabot[bot]
65a0e29112 Bump python from 3.13-alpine3.21 to 3.14-alpine3.21
Bumps python from 3.13-alpine3.21 to 3.14-alpine3.21.

---
updated-dependencies:
- dependency-name: python
  dependency-version: 3.14-alpine3.21
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-08 22:38:36 +01:00
David
6e3f82d112 Merge pull request #383 from dmunozv04/dependabot/github_actions/actions/download-artifact-6
Bump actions/download-artifact from 5 to 6
2025-12-08 22:37:16 +01:00
dependabot[bot]
fa41363048 Bump actions/download-artifact from 5 to 6
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/download-artifact
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-08 22:37:01 +01:00
David
e0bba121ff Merge pull request #382 from dmunozv04/dependabot/github_actions/actions/upload-artifact-5
Bump actions/upload-artifact from 4 to 5
2025-12-08 22:36:33 +01:00
dependabot[bot]
3bb1ad89a6 Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-08 22:36:23 +01:00
David
b999d34b1e Merge pull request #387 from dmunozv04/dependabot/github_actions/actions/checkout-6
Bump actions/checkout from 5 to 6
2025-12-08 22:35:33 +01:00
dependabot[bot]
e9519d0e05 Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-08 22:35:06 +01:00
dmunozv04
1116a1f1d5 Fix markdownlint 2025-12-01 20:45:50 +01:00
dmunozv04
a92c0255dc Add warning about shorts not working
Fixes #370
2025-12-01 20:45:05 +01:00
5 changed files with 18 additions and 13 deletions

View File

@@ -28,7 +28,7 @@ jobs:
steps:
# Get the repository's code
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
# Generate docker tags
- name: Docker meta

View File

@@ -30,7 +30,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v6
@@ -46,7 +46,7 @@ jobs:
run: python -m hatch build
- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: sdist-and-wheel
path: dist/*
@@ -104,7 +104,7 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Clone PyApp
run: git clone --depth 1 --branch $PYAPP_VERSION https://github.com/ofek/pyapp $PYAPP_REPO
@@ -141,7 +141,7 @@ jobs:
hatch --version
- name: Get artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: sdist-and-wheel
path: ${{ github.workspace }}/dist
@@ -165,7 +165,7 @@ jobs:
continue-on-error: true # Continue if attestation fails (it will fail on forks)
- name: Upload built binary package
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: binaries-${{ matrix.job.release_suffix }}
path: dist/binary/*
@@ -181,7 +181,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Get artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: sdist-and-wheel
path: dist
@@ -200,7 +200,7 @@ jobs:
if: github.event_name == 'release' && github.event.action == 'published'
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
name: Get artifact
with:
path: dist

View File

@@ -18,7 +18,7 @@ jobs:
steps:
# Get the repository's code
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
# Update description
- name: Update repo description

View File

@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM python:3.13-alpine3.21 AS base
FROM python:3.14-alpine3.23 AS base
FROM base AS compiler
@@ -19,9 +19,9 @@ RUN apk add --no-cache gcc musl-dev && \
pip install -r requirements.txt && \
pip uninstall -y pip wheel && \
apk del gcc musl-dev && \
python3 -m compileall -b -f /usr/local/lib/python3.13/site-packages && \
find /usr/local/lib/python3.13/site-packages -name "*.py" -type f -delete && \
find /usr/local/lib/python3.13/ -name "__pycache__" -type d -exec rm -rf {} +
python3 -m compileall -b -f /usr/local/lib/python3.14/site-packages && \
find /usr/local/lib/python3.14/site-packages -name "*.py" -type f -delete && \
find /usr/local/lib/python3.14/ -name "__pycache__" -type d -exec rm -rf {} +
FROM base

View File

@@ -38,6 +38,11 @@ Open an issue/pull request if you have tested a device that isn't listed here.
*Ad muting won't work when using AirPlay to send the audio to another speaker.
** Shorts aren't fully supported due to limitations on YouTube's side.
A single short can be seen by either selecting the "Disconnect" option in the
warning shown
or by long pressing the thumbnail to open the menu and clicking play from there
## Usage
Run iSponsorBlockTV on a computer that has network access. It doesn't need to