From bd0deec85ed0d59f3eb7cca79f539d7263343093 Mon Sep 17 00:00:00 2001 From: Nick Gal Date: Fri, 13 Oct 2023 17:54:14 -0700 Subject: [PATCH 1/4] README.md typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 92b9f0e..e5f2c61 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Check the [wiki](https://github.com/dmunozv04/iSponsorBlockTV/wiki/Installation) Warning: docker armv7 builds have been deprecated. Amd64 and arm64 builds are still available. ## Compatibility -Leyend: ✅ = Working, ❌ = Not working, ❔ = Not tested +Legend: ✅ = Working, ❌ = Not working, ❔ = Not tested Open an issue/pull request if you have tested a device that isn't listed here. From b9e010af9b25407d358fede6d287cb083f336229 Mon Sep 17 00:00:00 2001 From: Jason Tokoph Date: Fri, 13 Oct 2023 20:17:04 -0700 Subject: [PATCH 2/4] Update Playstation Status in README.md I have tested this with the Youtube app on my Playstation 5 and can confirm that it correctly skips sponsorblock segments. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 92b9f0e..fb55974 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Open an issue/pull request if you have tested a device that isn't listed here. | Fire TV | ❔ | | Nintendo Switch | ✅ | | Xbox One/Series | ❔ | -| Playstation 4/5 | ❔ | +| Playstation 4/5 | ✅ | ## Usage Run iSponsorBlockTV on a computer that has network access. From 245300d06443bb714d5db5ed0e8501c50238b550 Mon Sep 17 00:00:00 2001 From: Josh Cooley Date: Sat, 14 Oct 2023 00:03:35 -0500 Subject: [PATCH 3/4] Fix segment UUID concatenation --- iSponsorBlockTV/api_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iSponsorBlockTV/api_helpers.py b/iSponsorBlockTV/api_helpers.py index 2afc20c..c6f5dd2 100644 --- a/iSponsorBlockTV/api_helpers.py +++ b/iSponsorBlockTV/api_helpers.py @@ -138,7 +138,7 @@ class ApiHelper: segment_dict["start"] - segment_before_end < 1 ): # Less than 1 second appart, combine them and skip them together segment_dict["start"] = segment_before_start - segment_dict["UUID"].append(segment_before_UUID) + segment_dict["UUID"].extend(segment_before_UUID) segments.pop() segments.append(segment_dict) except Exception: From 7e45f623f71b064f4bbcf2bc310b51ea6831d50f Mon Sep 17 00:00:00 2001 From: David <39565245+dmunozv04@users.noreply.github.com> Date: Sat, 14 Oct 2023 10:36:52 +0200 Subject: [PATCH 4/4] Update update_docker_readme.yml Fix dockerhub description updater --- .github/workflows/update_docker_readme.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/update_docker_readme.yml b/.github/workflows/update_docker_readme.yml index 886264a..5f4974e 100644 --- a/.github/workflows/update_docker_readme.yml +++ b/.github/workflows/update_docker_readme.yml @@ -18,12 +18,13 @@ jobs: steps: # Get the repository's code - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 # Update description - name: Update repo description - uses: peter-evans/dockerhub-description@v2 + uses: peter-evans/dockerhub-description@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_PASSWORD }} - repository: dmunozv04/isponsorblocktv \ No newline at end of file + repository: dmunozv04/isponsorblocktv + short-description: ${{ github.event.repository.description }}