Skip to content

Commit

Permalink
# deew 3.2.1:
Browse files Browse the repository at this point in the history
- handle `-master` in dee's version string
  • Loading branch information
pcroland committed Jan 4, 2024
1 parent 1875777 commit a43734d
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 @@ -99,7 +99,7 @@ PATH="/usr/local/bin/ffmpeg:$PATH"
# Usage
```
❯ deew -h
deew 3.2.0
deew 3.2.1
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 @@ -99,7 +99,7 @@ PATH="/usr/local/bin/ffmpeg:$PATH"
# Használat
```
❯ deew -h
deew 3.2.0
deew 3.2.1
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.2.1:
- handle `-master` in dee's version string

# deew 3.2.0:
- add Windows 7 support with custom Python build:
https://github.com/adang1345/PythonWin7
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.2.0'
prog_version = '3.2.1'

simplens = SimpleNamespace()

Expand Down Expand Up @@ -318,7 +318,7 @@ def parse_version_string(inp: list) -> str:
try:
v = subprocess.run(inp, capture_output=True, encoding='utf-8').stdout
v = v.split('\n')[0].split(' ')[2]
v = v.replace(',', '').replace('-static', '')
v = v.replace(',', '').replace('-static', '').replace('-master', '')
if len(v) > 30:
v = f'{v[0:27]}...'
except Exception:
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.2.0
deew 3.2.1

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.2.0"
version = "3.2.1"
description = "Dolby Encoding Engine Wrapper"
authors = ["pcroland <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit a43734d

Please sign in to comment.