Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fallenbagel/jellyseerr
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f887fff5384beac6b6557573d350b71c378d18a1
Choose a base ref
..
head repository: fallenbagel/jellyseerr
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f378f3e8564b073c131d7558be9adfb4b402c6e7
Choose a head ref
Showing with 270 additions and 797 deletions.
  1. +1 −1 .github/FUNDING.yml
  2. +7 −7 .github/workflows/ci.yml
  3. +1 −1 .github/workflows/codeql.yml
  4. +2 −2 .github/workflows/cypress.yml
  5. +5 −5 .github/workflows/preview.yml
  6. +9 −9 .github/workflows/release.yml
  7. +4 −4 .github/workflows/snap.yaml
  8. +2 −2 .github/workflows/support.yml
  9. +0 −211 CHANGELOG.md
  10. +1 −1 package.json
  11. BIN public/android-chrome-192x192.png
  12. BIN public/android-chrome-192x192_maskable.png
  13. BIN public/android-chrome-512x512.png
  14. BIN public/android-chrome-512x512_maskable.png
  15. BIN public/apple-splash-1125-2436.jpg
  16. BIN public/apple-splash-1136-640.jpg
  17. BIN public/apple-splash-1170-2532.jpg
  18. BIN public/apple-splash-1179-2556.jpg
  19. BIN public/apple-splash-1242-2208.jpg
  20. BIN public/apple-splash-1242-2688.jpg
  21. BIN public/apple-splash-1284-2778.jpg
  22. BIN public/apple-splash-1290-2796.jpg
  23. BIN public/apple-splash-1334-750.jpg
  24. BIN public/apple-splash-1488-2266.jpg
  25. BIN public/apple-splash-1536-2048.jpg
  26. BIN public/apple-splash-1620-2160.jpg
  27. BIN public/apple-splash-1640-2360.jpg
  28. BIN public/apple-splash-1668-2224.jpg
  29. BIN public/apple-splash-1668-2388.jpg
  30. BIN public/apple-splash-1792-828.jpg
  31. BIN public/apple-splash-2048-1536.jpg
  32. BIN public/apple-splash-2048-2732.jpg
  33. BIN public/apple-splash-2160-1620.jpg
  34. BIN public/apple-splash-2208-1242.jpg
  35. BIN public/apple-splash-2224-1668.jpg
  36. BIN public/apple-splash-2266-1488.jpg
  37. BIN public/apple-splash-2360-1640.jpg
  38. BIN public/apple-splash-2388-1668.jpg
  39. BIN public/apple-splash-2436-1125.jpg
  40. BIN public/apple-splash-2532-1170.jpg
  41. BIN public/apple-splash-2556-1179.jpg
  42. BIN public/apple-splash-2688-1242.jpg
  43. BIN public/apple-splash-2732-2048.jpg
  44. BIN public/apple-splash-2778-1284.jpg
  45. BIN public/apple-splash-2796-1290.jpg
  46. BIN public/apple-splash-640-1136.jpg
  47. BIN public/apple-splash-750-1334.jpg
  48. BIN public/apple-splash-828-1792.jpg
  49. BIN public/apple-touch-icon.png
  50. BIN public/badge-128x128.png
  51. BIN public/favicon-16x16.png
  52. BIN public/favicon-32x32.png
  53. BIN public/favicon.ico
  54. BIN public/images/overseerr_poster_not_found.png
  55. BIN public/images/overseerr_poster_not_found_logo_center.png
  56. BIN public/images/overseerr_poster_not_found_logo_top.png
  57. BIN public/logo_full.png
  58. +69 −185 public/logo_full.svg
  59. +70 −139 public/logo_stacked.svg
  60. +45 −118 public/os_icon.svg
  61. BIN public/os_logo_filled.png
  62. BIN public/os_logo_square.png
  63. BIN public/preview.jpg
  64. +27 −49 server/api/jellyfin.ts
  65. +1 −14 server/routes/settings/index.ts
  66. +5 −43 src/components/Settings/SettingsJellyfin.tsx
  67. +21 −3 src/components/Settings/SonarrModal/index.tsx
  68. +0 −3 src/i18n/locale/en.json
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github: [Fallenbagel]
github: [Fallenbagel]
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ jobs:
container: node:18.18-alpine
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Install dependencies
env:
HUSKY: 0
@@ -34,18 +34,18 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v2
- name: Log in to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
@@ -56,7 +56,7 @@ jobs:
env:
OWNER: ${{ github.repository_owner }}
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
4 changes: 2 additions & 2 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
@@ -13,9 +13,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Cypress run
uses: cypress-io/github-action@v6
uses: cypress-io/github-action@v4
with:
build: yarn cypress:build
start: yarn start
10 changes: 5 additions & 5 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
@@ -11,21 +11,21 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Get the version
id: get_version
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v2
- name: Log in to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -10,19 +10,19 @@ jobs:
HUSKY: 0
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 16
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v2
- name: Log in to Docker Hub
uses: docker/login-action@v3
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
@@ -48,7 +48,7 @@ jobs:
- armhf
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Switch to main branch
@@ -65,7 +65,7 @@ jobs:
echo "RELEASE=edge" >> $GITHUB_OUTPUT
fi
- name: Set Up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v1
with:
image: tonistiigi/binfmt@sha256:df15403e06a03c2f461c1f7938b171fda34a5849eb63a70e2a2109ed5a778bde
- name: Build Snap Package
@@ -74,7 +74,7 @@ jobs:
with:
architecture: ${{ matrix.architecture }}
- name: Upload Snap Package
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v2
with:
name: jellyseerr-snap-package-${{ matrix.architecture }}
path: ${{ steps.build.outputs.snap }}
8 changes: 4 additions & 4 deletions .github/workflows/snap.yaml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ jobs:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.12.1
uses: styfle/cancel-workflow-action@0.10.0
with:
access_token: ${{ secrets.GITHUB_TOKEN }}

@@ -29,7 +29,7 @@ jobs:
- armhf
steps:
- name: Checkout Code
uses: actions/checkout@v4
uses: actions/checkout@v3
- name: Prepare
id: prepare
run: |
@@ -40,7 +40,7 @@ jobs:
echo "RELEASE=edge" >> $GITHUB_OUTPUT
fi
- name: Set Up QEMU
uses: docker/setup-qemu-action@v3
uses: docker/setup-qemu-action@v2
- name: Configure Git
run: git config --add safe.directory /data/parts/jellyseerr/src
- name: Build Snap Package
@@ -49,7 +49,7 @@ jobs:
with:
architecture: ${{ matrix.architecture }}
- name: Upload Snap Package
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: jellyseerr-snap-package-${{ matrix.architecture }}
path: ${{ steps.build.outputs.snap }}
4 changes: 2 additions & 2 deletions .github/workflows/support.yml
Original file line number Diff line number Diff line change
@@ -6,9 +6,9 @@ on:

jobs:
support:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: dessant/support-requests@v4
- uses: dessant/support-requests@v2
with:
github-token: ${{ github.token }}
support-label: 'support'
Loading