Skip to content

Commit

Permalink
# deew 3.1.3:
Browse files Browse the repository at this point in the history
- fix #37: Only show basename for already existing intermediate files
  • Loading branch information
pcroland committed Dec 28, 2023
1 parent 5f1bd09 commit 89f525d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ PATH="/usr/local/bin/ffmpeg:$PATH"
# Usage
```
❯ deew -h
deew 3.1.2
deew 3.1.3
USAGE: deew [-h] [-v] [-i [INPUT ...]] [-ti INDEX] [-o DIRECTORY] [-f FORMAT]
[-b BITRATE] [-dm CHANNELS] [-d DELAY] [-r DRC] [-dn DIALNORM]
Expand Down
2 changes: 1 addition & 1 deletion README_hu.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ PATH="/usr/local/bin/ffmpeg:$PATH"
# Használat
```
❯ deew -h
deew 3.1.2
deew 3.1.3
USAGE: deew [-h] [-v] [-i [INPUT ...]] [-ti INDEX] [-o DIRECTORY] [-f FORMAT]
[-b BITRATE] [-dm CHANNELS] [-d DELAY] [-r DRC] [-dn DIALNORM]
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# deew 3.1.3:
- fix #37: Only show basename for already existing intermediate files

# deew 3.1.2:
- fix `&` in filename by bpoxy

Expand Down
4 changes: 2 additions & 2 deletions deew/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
from deew.xml_base import xml_dd_ddp_base, xml_thd_base, xml_ac4_base

prog_name = 'deew'
prog_version = '3.1.2'
prog_version = '3.1.3'

simplens = SimpleNamespace()

Expand Down Expand Up @@ -933,7 +933,7 @@ def main() -> None:

ffmpeg_print_list.append(ffmpeg_args_print)
dee_print_list.append(dee_args_print)
if intermediate_exists: intermediate_exists_list.append(filelist[i])
if intermediate_exists: intermediate_exists_list.append(os.path.basename(filelist[i]))

delay_in_filename = re.match(r'.+DELAY ([-|+]?[0-9]+m?s)\..+', filelist[i])
if delay_in_filename:
Expand Down
2 changes: 1 addition & 1 deletion dev_scripts/readme/help.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
deew 3.1.2
deew 3.1.3

USAGE: deew [-h] [-v] [-i [INPUT ...]] [-ti INDEX] [-o DIRECTORY] [-f FORMAT]
[-b BITRATE] [-dm CHANNELS] [-d DELAY] [-r DRC] [-dn DIALNORM]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "deew"
version = "3.1.2"
version = "3.1.3"
description = "Dolby Encoding Engine Wrapper"
authors = ["pcroland <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 89f525d

Please sign in to comment.