Skip to content

Commit

Permalink
Merge pull request #270 from lardbit/rm-arm-32-bit
Browse files Browse the repository at this point in the history
Remove 32-bit armv7 since other dependencies have (e.g. jackett)
  • Loading branch information
lardbit authored Jan 3, 2024
2 parents c7c5112 + d8a711c commit ac99127
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
# build image (cache result)
docker buildx build \
--platform linux/amd64,linux/arm/v7,linux/arm64 \
--platform linux/amd64,linux/arm64 \
--output "type=image,push=false" \
--cache-to "type=local,dest=/tmp/.buildx-cache" \
--build-arg tag=$tag \
Expand All @@ -90,7 +90,7 @@ jobs:
# push image (from cached result)
docker buildx build \
--platform linux/amd64,linux/arm/v7,linux/arm64 \
--platform linux/amd64,linux/arm64 \
--output "type=image,push=true" \
--cache-from "type=local,src=/tmp/.buildx-cache" \
--build-arg tag=$tag \
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
It uses [Jackett](https://github.com/Jackett/Jackett/) and [Transmission](https://transmissionbt.com/) under the hood. Jackett searches for torrents and Transmission handles the downloading.

Features:
- [x] Search and discover TV & Movies (by popularity, genres, year etc)
- [x] Search and discover TV & Movies (by popularity, genres, year etc.)
- [x] Auto download TV & Movies
- [x] Find similar and recommended TV & Movies (via The Movie Database & Rotten Tomatoes)
- [x] Manually search and download Jackett's torrent results
- [x] Supports blacklisting torrent results (i.e, permanently avoid a bad/fake torrent)
- [X] Supports quality profiles (i.e only download *1080p* Movies and *720p* TV)
- [x] Supports blacklisting torrent results (i.e. permanently avoid a bad/fake torrent)
- [X] Supports quality profiles (i.e. only download *1080p* Movies and *720p* TV)
- [x] Supports whether to download media with hardcoded subtitles or not
- [x] Supports user defined keywords to filter results (i.e, ignore "x265", "hevc" codecs)
- [x] Supports user defined keywords to filter results (i.e. ignore "x265", "hevc" codecs)
- [x] Monitor transmission results & status from within the app
- [x] Self/auto updating application, so you're always up-to-date
- [x] Supports multiple users and permission groups (i.e, admin users and regular users)
- [x] Supports multiple users and permission groups (i.e. admin users and regular users)
- [x] Responsive Design (looks great on desktops, tablets and small devices like phones)
- [x] Includes movie trailers
- [x] Automatically renames media
Expand Down
2 changes: 1 addition & 1 deletion docs/SBC.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
For single board systems / low memory systems, like the raspberry pi, I recommend only running a single **celery** worker. Celery is the task/worker component that
handles all the searching and downloading behind the scenes.

If you skip this step, **celery** will use every available cpu (ie. the pi v4 has 4 cpus), which I've found is too much for the raspberry pi to handle.
If you skip this step, **celery** will use every available cpu (i.e. the pi v4 has 4 cpus), which I've found is too much for the raspberry pi to handle.

### Specify the number of celery workers

Expand Down

0 comments on commit ac99127

Please sign in to comment.