Skip to content

Commit

Permalink
# deew 3.2.0:
Browse files Browse the repository at this point in the history
- add Windows 7 support with custom Python build:
  https://github.com/adang1345/PythonWin7
  • Loading branch information
pcroland committed Jan 1, 2024
1 parent 662ca4e commit d3fbdf8
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 13 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,15 @@ 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
uses: actions/setup-python@v5
with:
python-version: "3.12"
run: |
wget https://github.com/adang1345/PythonWin7/raw/master/3.12.1/python-3.12.1-amd64-full.exe -O python-installer.exe
./python-installer.exe /quiet InstallAllUsers=1 PrependPath=1 Include_test=0
- name: Set up libraries
run: |
Expand All @@ -77,7 +82,7 @@ jobs:
- name: Build
run: |
pyinstaller -F __main__.py -n deew --icon logo/icon.ico
python -m pyinstaller -F __main__.py -n deew --icon logo/icon.ico
- name: Move dist/deew.exe to deew.exe
run: mv dist/deew.exe deew.exe
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
- if DEE throws `Failed to load library "...dll".` errors when you run deew install [VisualCppRedist AIO](https://github.com/abbodi1406/vcredist/releases)

# deew installation
### with standalone build (Windows 8-11/Linux):
### with standalone build (Windows 7-11/Linux):
- grab the latest build from: [https://github.com/pcroland/deew/releases](https://github.com/pcroland/deew/releases)
- run with: `deew`\
*(run the binary from terminal, doubleclicking it won't work)*
Expand Down Expand Up @@ -99,7 +99,7 @@ PATH="/usr/local/bin/ffmpeg:$PATH"
# Usage
```
❯ deew -h
deew 3.1.3
deew 3.2.0
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: 2 additions & 2 deletions README_hu.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
- ha DEE `Failed to load library "...dll".` hibákat dob deew használatakor, telepítsd fel a [VisualCppRedist AIO](https://github.com/abbodi1406/vcredist/releases)-t

# deew telepítése
### standalone buildet használva (Windows 8-11/Linux):
### standalone buildet használva (Windows 7-11/Linux):
- tölsd le a legfrissebb buildet innen: [https://github.com/pcroland/deew/releases](https://github.com/pcroland/deew/releases)
- futtasd: `deew`\
*(terminálból futtasd, duplaklikk nem fog működni)*
Expand Down Expand Up @@ -99,7 +99,7 @@ PATH="/usr/local/bin/ffmpeg:$PATH"
# Használat
```
❯ deew -h
deew 3.1.3
deew 3.2.0
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: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 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.1.3'
prog_version = '3.2.0'

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.1.3
deew 3.2.0

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 dev_scripts/readme/readme_template_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ description_placeholder
- if DEE throws `Failed to load library "...dll".` errors when you run deew install [VisualCppRedist AIO](https://github.com/abbodi1406/vcredist/releases)

# deew installation
### with standalone build (Windows 8-11/Linux):
### with standalone build (Windows 7-11/Linux):
- grab the latest build from: [https://github.com/pcroland/deew/releases](https://github.com/pcroland/deew/releases)
- run with: `deew`\
*(run the binary from terminal, doubleclicking it won't work)*
Expand Down
2 changes: 1 addition & 1 deletion dev_scripts/readme/readme_template_hu.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ description_placeholder
- ha DEE `Failed to load library "...dll".` hibákat dob deew használatakor, telepítsd fel a [VisualCppRedist AIO](https://github.com/abbodi1406/vcredist/releases)-t

# deew telepítése
### standalone buildet használva (Windows 8-11/Linux):
### standalone buildet használva (Windows 7-11/Linux):
- tölsd le a legfrissebb buildet innen: [https://github.com/pcroland/deew/releases](https://github.com/pcroland/deew/releases)
- futtasd: `deew`\
*(terminálból futtasd, duplaklikk nem fog működni)*
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.3"
version = "3.2.0"
description = "Dolby Encoding Engine Wrapper"
authors = ["pcroland <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit d3fbdf8

Please sign in to comment.