Skip to content

Commit

Permalink
Subtitle Edit 4.0.10 (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
double16 authored Jan 3, 2025
1 parent 35fd5eb commit 8109176
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
venv/
.venv/
.git/
.idea/
.pytest_cache/
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ RUN apt-get -q update && \
find /etc/cron.*/* -type f -not -name "*logrotate*" -not -name "*anacron*" -delete &&\
rm -rf /tmp/*

RUN curl -o /tmp/se.zip -L "https://github.com/SubtitleEdit/subtitleedit/releases/download/4.0.8/SE408.zip" &&\
RUN curl -o /tmp/se.zip -L "https://github.com/SubtitleEdit/subtitleedit/releases/download/4.0.10/SE4010.zip" &&\
unzip -d /usr/share/subtitle-edit /tmp/se.zip &&\
rm /tmp/se.zip &&\
curl -L -o /usr/bin/systemctl https://github.com/gdraheim/docker-systemctl-replacement/raw/${SYSTEMCTL_VER}/files/docker/systemctl3.py &&\
Expand Down
2 changes: 1 addition & 1 deletion dvrprocess/common/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class SubtitleEditProcInvoker(SubprocessProcInvoker):
pct_matcher = re.compile(r'([0-9]{1,3})\s*%')

def __init__(self):
super().__init__('subtitle-edit', version_target=['4.0.2'])
super().__init__('subtitle-edit', version_target=['4.0.10'])

def _run(self, arguments: list[str], kwargs) -> int:
if kwargs.get('capture_output', None) is True:
Expand Down

0 comments on commit 8109176

Please sign in to comment.