Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/MakeMKV-Version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Release-PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ jobs:
steps:
-
name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

-
name: Get branch name
id: branch-name
uses: tj-actions/branch-names@v8
uses: tj-actions/branch-names@v9


-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-pr-image-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
-
uses: actions/checkout@v4
uses: actions/checkout@v5

-
name: Setup Docker buildx
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/version_bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ 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
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down Expand Up @@ -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: |
Expand Down
12 changes: 10 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,10 @@ RUN install_clean \
lame \
libavcodec-extra \
lsdvd \
mkcue \
vorbis-tools \
opus-tools
opus-tools \
fdkaac

# install libdvd-pkg
RUN \
Expand All @@ -78,7 +80,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
Expand All @@ -103,6 +104,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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.0
1.6.2
2 changes: 1 addition & 1 deletion VERSION_MAKEMKV
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.18.1
1.18.2
7 changes: 6 additions & 1 deletion makemkv_history.txt
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -11,4 +16,4 @@ MakeMKV v1.18.0 (4.4.2025)
MakeMKV v1.17.9 (1.2.2025)

Version bump, no changes
Updated translatio
Updated translatio
16 changes: 1 addition & 15 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -18,28 +13,19 @@ 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
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
Loading