From 7a269832e487922f071dd0966876ede7ed22e6f1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 22:35:28 +0930 Subject: [PATCH 01/11] Bump markdown from 3.8 to 3.8.2 (#431) Bumps [markdown](https://github.com/Python-Markdown/markdown) from 3.8 to 3.8.2. - [Release notes](https://github.com/Python-Markdown/markdown/releases) - [Changelog](https://github.com/Python-Markdown/markdown/blob/master/docs/changelog.md) - [Commits](https://github.com/Python-Markdown/markdown/compare/3.8...3.8.2) --- updated-dependencies: - dependency-name: markdown dependency-version: 3.8.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 1edadb9d..cedf8b45 100644 --- a/requirements.txt +++ b/requirements.txt @@ -18,7 +18,7 @@ idna==3.10 itsdangerous==2.1.2 Jinja2==3.1.2 Mako==1.3.9 -Markdown==3.8 +Markdown==3.8.2 MarkupSafe==2.1.3 musicbrainzngs==0.7.1 netifaces==0.11.0 From aa449892c197aa0e97f472e311feade263c4f028 Mon Sep 17 00:00:00 2001 From: Kevin Menard Date: Mon, 30 Jun 2025 08:23:25 -0400 Subject: [PATCH 02/11] [FEATURE] Add mkcue for making cue sheets. (#423) Add mkcue for making cue sheets. --- Dockerfile | 1 + VERSION | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1715b36f..12b8d5b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,6 +65,7 @@ RUN install_clean \ lame \ libavcodec-extra \ lsdvd \ + mkcue \ vorbis-tools \ opus-tools diff --git a/VERSION b/VERSION index e21e727f..bc80560f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.4.0 \ No newline at end of file +1.5.0 From db6961c1813240585bfac69f38cf6e72b63ac92c Mon Sep 17 00:00:00 2001 From: Mtech <62650032+microtechno9000@users.noreply.github.com> Date: Mon, 30 Jun 2025 21:54:13 +0930 Subject: [PATCH 03/11] [BUGFIX] Timezone patch to support timezones in ARM (#422) * bugfix - timezone patch #1379 addition of tzdata into the container to support timezone values in the main ARM container * Update VERSION --- Dockerfile | 8 +++++++- VERSION | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 12b8d5b2..fabf6b72 100644 --- a/Dockerfile +++ b/Dockerfile @@ -79,7 +79,6 @@ COPY requirements.txt ./requirements.txt RUN pip3 install --upgrade pip wheel setuptools psutil pyudev RUN pip3 install --ignore-installed --prefer-binary -r ./requirements.txt - ########################################################### # install makemkv and handbrake FROM deps-ripper AS install-makemkv-handbrake @@ -104,6 +103,13 @@ COPY scripts/healthcheck.sh /healthcheck.sh RUN chmod +x /healthcheck.sh HEALTHCHECK --interval=5m --timeout=15s --start-period=30s CMD /healthcheck.sh +# Set Timezone data +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Etc/UTC +RUN install_clean tzdata && \ + ln -sf /usr/share/zoneinfo/$TZ /etc/localtime && \ + dpkg-reconfigure --frontend noninteractive tzdata + ARG VERSION ARG BUILD_DATE # set metadata diff --git a/VERSION b/VERSION index bc80560f..8e03717d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.0 +1.5.1 \ No newline at end of file From 77ea8ebdfcfad7e6f6280680ca2c880c69784d02 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Jul 2025 07:25:02 +0930 Subject: [PATCH 04/11] Bump tj-actions/branch-names from 8 to 9 (#439) Bumps [tj-actions/branch-names](https://github.com/tj-actions/branch-names) from 8 to 9. - [Release notes](https://github.com/tj-actions/branch-names/releases) - [Changelog](https://github.com/tj-actions/branch-names/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/branch-names/compare/v8...v9) --- updated-dependencies: - dependency-name: tj-actions/branch-names dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/deploy-docker.yml | 2 +- .github/workflows/version_bump.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-docker.yml b/.github/workflows/deploy-docker.yml index 718cc7f6..69d5d72a 100644 --- a/.github/workflows/deploy-docker.yml +++ b/.github/workflows/deploy-docker.yml @@ -38,7 +38,7 @@ jobs: - name: Get branch name id: branch-name - uses: tj-actions/branch-names@v8 + uses: tj-actions/branch-names@v9 - diff --git a/.github/workflows/version_bump.yml b/.github/workflows/version_bump.yml index 20a0075c..5e42b6b0 100644 --- a/.github/workflows/version_bump.yml +++ b/.github/workflows/version_bump.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Get branch name id: branch-name - uses: tj-actions/branch-names@v8 + uses: tj-actions/branch-names@v9 - name: Checkout code uses: actions/checkout@v4 From 9ff7ae568ae23ebe25dff29d88ae480eb2f8eb6c Mon Sep 17 00:00:00 2001 From: Mtech <62650032+microtechno9000@users.noreply.github.com> Date: Wed, 30 Jul 2025 07:26:03 +0930 Subject: [PATCH 05/11] [FEATURE] Added fdkaac (#438) * Added fdkaac ARM #1478 * Update VERSION --- Dockerfile | 3 ++- VERSION | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index fabf6b72..54ed33f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,7 +67,8 @@ RUN install_clean \ lsdvd \ mkcue \ vorbis-tools \ - opus-tools + opus-tools \ + fdkaac # install libdvd-pkg RUN \ diff --git a/VERSION b/VERSION index 8e03717d..dc1e644a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.1 \ No newline at end of file +1.6.0 From 78160471bef6566ecc06270677bf9a5029598827 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 19:51:39 +0930 Subject: [PATCH 06/11] Bump actions/checkout from 4 to 5 (#448) Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/MakeMKV-Version.yml | 2 +- .github/workflows/Release-PR.yml | 2 +- .github/workflows/deploy-docker.yml | 2 +- .github/workflows/test-pr-image-build.yml | 2 +- .github/workflows/version_bump.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/MakeMKV-Version.yml b/.github/workflows/MakeMKV-Version.yml index b4b54fd2..5ae0abf7 100644 --- a/.github/workflows/MakeMKV-Version.yml +++ b/.github/workflows/MakeMKV-Version.yml @@ -22,7 +22,7 @@ jobs: if: github.ref == 'refs/heads/main' steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get latest MakeMKV version run: | diff --git a/.github/workflows/Release-PR.yml b/.github/workflows/Release-PR.yml index 6ebf2177..a2383a25 100644 --- a/.github/workflows/Release-PR.yml +++ b/.github/workflows/Release-PR.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Create Release PR uses: peter-evans/create-pull-request@v6 diff --git a/.github/workflows/deploy-docker.yml b/.github/workflows/deploy-docker.yml index 69d5d72a..eaeb506a 100644 --- a/.github/workflows/deploy-docker.yml +++ b/.github/workflows/deploy-docker.yml @@ -33,7 +33,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get branch name diff --git a/.github/workflows/test-pr-image-build.yml b/.github/workflows/test-pr-image-build.yml index 20186288..b69d65a7 100644 --- a/.github/workflows/test-pr-image-build.yml +++ b/.github/workflows/test-pr-image-build.yml @@ -20,7 +20,7 @@ jobs: steps: - - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Docker buildx diff --git a/.github/workflows/version_bump.yml b/.github/workflows/version_bump.yml index 5e42b6b0..c63ad664 100644 --- a/.github/workflows/version_bump.yml +++ b/.github/workflows/version_bump.yml @@ -25,7 +25,7 @@ jobs: uses: tj-actions/branch-names@v9 - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 From 7e9ae37d79ff6aeebd983e576488b58374413c2f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Sep 2025 14:36:46 +0930 Subject: [PATCH 07/11] Bump actions/github-script from 7 to 8 (#454) Bumps [actions/github-script](https://github.com/actions/github-script) from 7 to 8. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/version_bump.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version_bump.yml b/.github/workflows/version_bump.yml index c63ad664..99671a8c 100644 --- a/.github/workflows/version_bump.yml +++ b/.github/workflows/version_bump.yml @@ -124,7 +124,7 @@ jobs: - name: Comment on PR if: env.VERSION_UPDATED == 'false' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | From 88276e211b0c648efb1ff9275e871558ae6be631 Mon Sep 17 00:00:00 2001 From: xieve <20223093+xieve@users.noreply.github.com> Date: Tue, 16 Sep 2025 07:09:09 +0200 Subject: [PATCH 08/11] [BUGFIX] remove unused dependencies (#437) * fix: remove unused dependencies * chore: bump version --------- Co-authored-by: Mtech <62650032+microtechno9000@users.noreply.github.com> --- VERSION | 2 +- requirements.txt | 14 -------------- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/VERSION b/VERSION index dc1e644a..9c6d6293 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.6.0 +1.6.1 diff --git a/requirements.txt b/requirements.txt index cedf8b45..223b3f04 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,11 +1,6 @@ alembic==1.14.1 apprise==1.7.6 bcrypt==3.2.2 # Newer versions dont have Wheel -beautifulsoup4==4.12.3 -certifi==2025.1.31 -cffi==1.16.0 -click==8.1.8 -charset-normalizer==3.4.1 discid==1.2.0 Flask==2.2.5 # broken Flask-Cors==4.0.0 @@ -22,24 +17,15 @@ Markdown==3.8.2 MarkupSafe==2.1.3 musicbrainzngs==0.7.1 netifaces==0.11.0 -oauthlib==3.2.2 prettytable==3.10.0 psutil==6.1.1 -pycparser==2.21 -pycurl==7.45.2 pydvdid==1.1 PyYAML==6.0.2 pyudev==0.24.3 requests==2.32.3 -requests-oauthlib==1.3.1 -robobrowser==0.5.3 -six==1.16.0 -soupsieve==2.5 SQLAlchemy==2.0.19 -tinydownload==0.1.0 urllib3==2.3.0 # broken waitress==2.1.2 -wcwidth==0.2.13 Werkzeug==2.3.6 WTForms==3.0.1 xmltodict==0.13.0 From 679e8f51a70d6f5c2ea1348a65e24b9e1060d5b7 Mon Sep 17 00:00:00 2001 From: 1337-server Date: Thu, 2 Oct 2025 10:38:47 +0100 Subject: [PATCH 09/11] Update VERSION_MAKEMKV --- VERSION_MAKEMKV | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION_MAKEMKV b/VERSION_MAKEMKV index ec6d649b..b57fc722 100644 --- a/VERSION_MAKEMKV +++ b/VERSION_MAKEMKV @@ -1 +1 @@ -1.18.1 +1.18.2 From 3f1bef94ee674d03eaae79647c887b45afac0c55 Mon Sep 17 00:00:00 2001 From: 1337-server Date: Thu, 2 Oct 2025 10:39:43 +0100 Subject: [PATCH 10/11] Update makemkv_history.txt --- makemkv_history.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/makemkv_history.txt b/makemkv_history.txt index a762dc63..8bea7297 100644 --- a/makemkv_history.txt +++ b/makemkv_history.txt @@ -1,3 +1,8 @@ +MakeMKV v1.18.2 (25.9.2025) + + Improved handling for discs with mastering errors + Small improvements and bugfixes + MakeMKV v1.18.1 (5.4.2025) Bugfix for 1.18.0 @@ -11,4 +16,4 @@ MakeMKV v1.18.0 (4.4.2025) MakeMKV v1.17.9 (1.2.2025) Version bump, no changes - Updated translatio \ No newline at end of file + Updated translatio From 74f297d9efe7b9999fb717a0ce9c24818e1344ef Mon Sep 17 00:00:00 2001 From: 1337-server Date: Thu, 2 Oct 2025 10:47:04 +0100 Subject: [PATCH 11/11] Update VERSION --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 9c6d6293..fdd3be6d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.6.1 +1.6.2