Skip to content

Commit

Permalink
restore
Browse files Browse the repository at this point in the history
  • Loading branch information
pcroland committed Jan 2, 2024
1 parent a2d5363 commit 001b86e
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 22 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,20 +58,20 @@ jobs:
- name: Checkout source
uses: actions/checkout@v4

# - name: Set up Python
# uses: actions/setup-python@v5
# with:
# python-version: "3.12"

- name: Set up Python
run: |
Invoke-WebRequest -Uri "https://github.com/adang1345/PythonWin7/raw/master/3.12.1/python.3.12.1.nupkg" -OutFile "python.3.12.1.nupkg"
mkdir "C:\custom_python"
nuget --version
nuget install python -Source "python.3.12.1.nupkg" -OutputDirectory "C:\custom_python"
echo "C:\custom_python" >> $GITHUB_PATH
echo "C:\custom_python\Scripts" >> $GITHUB_PATH
python --version
uses: actions/setup-python@v5
with:
python-version: "3.12"

# - name: Set up Python
# run: |
# Invoke-WebRequest -Uri "https://github.com/adang1345/PythonWin7/raw/master/3.12.1/python.3.12.1.nupkg" -OutFile "python.3.12.1.nupkg"
# mkdir "C:\custom_python"
# nuget --version
# nuget install python -Source "python.3.12.1.nupkg" -OutputDirectory "C:\custom_python"
# echo "C:\custom_python" >> $GITHUB_PATH
# echo "C:\custom_python\Scripts" >> $GITHUB_PATH
# python --version

- name: Set up libraries
run: |
Expand Down
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.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 @@ -99,7 +99,7 @@ PATH="/usr/local/bin/ffmpeg:$PATH"
# Használat
```
❯ deew -h
deew 3.2.0
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
4 changes: 0 additions & 4 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# deew 3.2.0:
- add Windows 7 support with custom Python build:
https://github.com/adang1345/PythonWin7

# deew 3.1.3:
- fix #37: Only show basename for already existing intermediate files

Expand Down
2 changes: 1 addition & 1 deletion 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.1.3'

simplens = SimpleNamespace()

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

0 comments on commit 001b86e

Please sign in to comment.