Version 2.0 from testing branch #1

Merged
olesteep merged 105 commits from testing into master 2025-02-18 23:38:05 +03:00
2 changed files with 6 additions and 2 deletions
Showing only changes of commit 775b5c539f - Show all commits

View file

@ -8,6 +8,8 @@ xcopy FFMpeg-Compressor\ffmpeg-comp.toml output\bin /Y
move /Y output\ffmpeg-comp.exe output\bin
python -m nuitka --jobs=%NUMBER_OF_PROCESSORS% --output-dir=output --follow-imports --onefile --output-filename=rendroid-unpack RenPy-Android-Unpack\unpack.py || goto :exit
move /Y output\rendroid-unpack.exe output\bin
python -m nuitka --jobs=%NUMBER_OF_PROCESSORS% --output-dir=output --follow-imports --onefile --output-filename=vnds2renpy VNDS-to-RenPy/convert.py || goto :exit
move /Y output\vnds2renpy.exe output\bin
:exit
pause

View file

@ -1,5 +1,5 @@
#!/bin/bash
sed -e
set -e
mkdir -p output
mkdir -p output/bin
python3 -m pip install -r FFMpeg-Compressor/requirements.txt
@ -12,4 +12,6 @@ python3 -m nuitka "${jobs}" --output-dir=output --onefile --follow-imports --out
cp FFMpeg-Compressor/ffmpeg-comp.toml output/bin
mv output/ffmpeg-comp output/bin
python3 -m nuitka "${jobs}" --output-dir=output --onefile --follow-imports --output-filename=rendroid-unpack RenPy-Android-Unpack/unpack.py
mv output/rendroid-unpack output/bin
mv output/rendroid-unpack output/bin
python3 -m nuitka "${jobs}" --output-dir=output --onefile --follow-imports --output-filename=vnds2renpy VNDS-to-RenPy/convert.py
mv output/vnds2renpy output/bin