Skip to content

Commit 4b7e9a6

Browse files
Version 4.6.0 (#286)
* Adding #195 640kbps audio (thanks to ObviousInRetrospect and Harybo) * Adding Japanese, Portuguese, Russian, Swedish, and Polish translations * Fixing #272 Codec drop down size fix (thanks to kachijs) * Fixing #278 FastFlix occasionally getting stuck on a single video in a queue (thanks to kamild_) * Fixing build for 3.10 by updating to PySide6 6.2.2.1 (thanks to Nhunz) * Fixing status parser when using -psnr (thanks to ObviousInRetrospect) * Fixing VCE and NVENC encoders would set first subtitle track to default Co-authored-by: ObviousInRetrospect <42229858+obviousinretrospect@users.noreply.github.com>
1 parent 26c53d1 commit 4b7e9a6

31 files changed

+2547
-79
lines changed

CHANGES

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## Version 4.6.0
4+
5+
* Adding #195 640kbps audio (thanks to ObviousInRetrospect and Harybo)
6+
* Adding Japanese, Portuguese, Russian, Swedish, and Polish translations
7+
* Fixing #272 Codec drop down size fix (thanks to kachijs)
8+
* Fixing #278 FastFlix occasionally getting stuck on a single video in a queue (thanks to kamild_)
9+
* Fixing build for 3.10 by updating to PySide6 6.2.2.1 (thanks to Nhunz)
10+
* Fixing status parser when using -psnr (thanks to ObviousInRetrospect)
11+
* Fixing VCE and NVENC encoders would set first subtitle track to default
12+
313
## Version 4.5.1
414

515
* Fixing #273 Realtime VP9 bitrate mode must be single pass (thanks to Owen Quinlan)

FastFlix_Nix_OneFile.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ for root, dirs, files in os.walk('fastflix'):
1111
for file in files:
1212
all_fastflix_files.append((os.path.join(root,file), root))
1313

14-
all_imports = collect_submodules('pydantic') + ['dataclasses', 'colorsys', 'typing_extensions']
14+
all_imports = collect_submodules('pydantic') + ['dataclasses', 'colorsys', 'typing_extensions', 'box']
1515
with open("requirements.txt", "r") as reqs:
1616
for line in reqs:
17-
package = line.split("=")[0].split(">")[0].split("<")[0].replace('"', '').replace("'", '').strip()
17+
package = line.split("[")[0].split("=")[0].split(">")[0].split("<")[0].replace('"', '').replace("'", '').strip()
1818
if package not in ("pyinstaller", "pypiwin32"):
1919
all_imports.append(package)
2020

FastFlix_Windows_Installer.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ for root, dirs, files in os.walk('fastflix'):
1111
for file in files:
1212
all_fastflix_files.append((os.path.join(root,file), root))
1313

14-
all_imports = collect_submodules('pydantic') + ['dataclasses', 'colorsys', 'typing_extensions']
14+
all_imports = collect_submodules('pydantic') + ['dataclasses', 'colorsys', 'typing_extensions', 'box']
1515
with open("requirements.txt", "r") as reqs:
1616
for line in reqs:
17-
package = line.split("=")[0].split(">")[0].split("<")[0].replace('"', '').replace("'", '').strip()
17+
package = line.split("[")[0].split("=")[0].split(">")[0].split("<")[0].replace('"', '').replace("'", '').strip()
1818
if package not in ("pyinstaller", "pypiwin32"):
1919
all_imports.append(package)
2020

FastFlix_Windows_OneFile.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ for root, dirs, files in os.walk('fastflix'):
1111
for file in files:
1212
all_fastflix_files.append((os.path.join(root,file), root))
1313

14-
all_imports = collect_submodules('pydantic') + ['dataclasses', 'colorsys', 'typing_extensions']
14+
all_imports = collect_submodules('pydantic') + ['dataclasses', 'colorsys', 'typing_extensions', 'box']
1515
with open("requirements.txt", "r") as reqs:
1616
for line in reqs:
17-
package = line.split("=")[0].split(">")[0].split("<")[0].replace('"', '').replace("'", '').strip()
17+
package = line.split("[")[0].split("=")[0].split(">")[0].split("<")[0].replace('"', '').replace("'", '').strip()
1818
if package not in ("pyinstaller"):
1919
all_imports.append(package)
2020

1.92 KB
Loading
1.02 KB
Loading
2.53 KB
Loading
2.77 KB
Loading
1.81 KB
Loading
3.85 KB
Loading

0 commit comments

Comments
 (0)