-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #301 from StuffAnThings/develop
3.6.3
- Loading branch information
Showing
19 changed files
with
388 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,20 @@ | ||
# Requirements Updated | ||
- pre-commit updated to 3.3.3 | ||
- requests updated to 2.31.0 | ||
- ruamel.yaml updated to 0.17.26 | ||
- Adds new dependency bencodepy to generate hash for cross-seed | ||
- Adds new dependency GitPython for checking git branches | ||
|
||
# Bug Fixes | ||
- Fixes bug in cross_seed (Fixes #270) | ||
- Bug causing RecycleBin not to be created when full path is defined. (Fixes #271) | ||
- Fixes Uncaught exception while emptying recycle bin (Fixes #272) | ||
- Changes HardLink Logic (Thanks to @ColinHebert for the suggestion) Fixes #291 | ||
- Additional error checking (Fixes #282) | ||
- Fixes #287 (Thanks to @buthed010203 #290) | ||
- Fixes Remove Orphan crashing when multiprocessing (Thanks to @buthed010203 #289) | ||
- Speed optimization for Remove Orphan (Thanks to @buthed010203 #299) | ||
- Fixes Remove Orphan from crashing in Windows (Fixes #275) | ||
- Fixes #292 | ||
- Fixes #201 | ||
- Fixes #279 | ||
- Updates Dockerfile to debloat and move to Python 3.11 | ||
|
||
**Full Changelog**: https://github.com/StuffAnThings/qbit_manage/compare/v3.6.1...v3.6.2 | ||
**Full Changelog**: https://github.com/StuffAnThings/qbit_manage/compare/v3.6.2...v3.6.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,29 @@ | ||
FROM python:3.10-alpine | ||
|
||
# install packages | ||
RUN apk add --no-cache gcc g++ libxml2-dev libxslt-dev shadow bash curl wget jq grep sed coreutils findutils unzip p7zip ca-certificates | ||
FROM python:3.11-slim-buster | ||
ARG BRANCH_NAME=master | ||
ENV BRANCH_NAME ${BRANCH_NAME} | ||
ENV TINI_VERSION v0.19.0 | ||
ENV QBM_DOCKER True | ||
|
||
COPY requirements.txt / | ||
|
||
RUN echo "**** install python packages ****" \ | ||
# install packages | ||
RUN echo "**** install system packages ****" \ | ||
&& apt-get update \ | ||
&& apt-get upgrade -y --no-install-recommends \ | ||
&& apt-get install -y tzdata --no-install-recommends \ | ||
&& apt-get install -y gcc g++ libxml2-dev libxslt-dev libz-dev bash curl wget jq grep sed coreutils findutils unzip p7zip ca-certificates \ | ||
&& wget -O /tini https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-"$(dpkg --print-architecture | awk -F- '{ print $NF }')" \ | ||
&& chmod +x /tini \ | ||
&& pip3 install --no-cache-dir --upgrade --requirement /requirements.txt \ | ||
&& rm -rf /requirements.txt /tmp/* /var/tmp/* | ||
&& apt-get --purge autoremove gcc g++ libxml2-dev libxslt-dev libz-dev -y \ | ||
&& apt-get clean \ | ||
&& apt-get update \ | ||
&& apt-get check \ | ||
&& apt-get -f install \ | ||
&& apt-get autoclean \ | ||
&& rm -rf /requirements.txt /tmp/* /var/tmp/* /var/lib/apt/lists/* | ||
|
||
COPY . /app | ||
WORKDIR /app | ||
VOLUME /config | ||
ENTRYPOINT ["python3", "qbit_manage.py"] | ||
ENTRYPOINT ["/tini", "-s", "python3", "qbit_manage.py", "--"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.6.2 | ||
3.6.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.