Merge branch 'master' of ssh://code.nikooneshot.ru:222/Sunshine/mkxp-sunshine

This commit is contained in:
DepressedTWM 2026-08-18 20:23:23 +04:00
commit 8da6b3d7d6
3 changed files with 16 additions and 1 deletions

View file

@ -18,6 +18,8 @@
| Ouzly | Tester and telegram moderator | |
| anmitali | Ports programmer | |
| Kyronix Team | Kyronix Port developers | |
| theboxyguy | programmer | |
| Каламус | tester | |
# Donators:
| Donator |

View file

@ -22,7 +22,20 @@ mkdir -p build/bandle/Data
#cp "$STEAMWORKS_PATH/redistributable_bin/linux64/libsteam_api.so" .
#make -j${make_threads} > steamshim.make.out
#cd ../..
if [ ! -d "venv" ]; then
echo "Creating venv folder and installing pip packages"
python3 -m venv venv
source venv/bin/activate
# the packages themselves
pip install --upgrade pip
pip install pyqt5 pyinstaller
else
echo "The 'venv' folder already exists."
source venv/bin/activate
fi
pyinstaller journal/unix/journal.spec #--windowed
deactivate
ruby rpgscript.rb scripts/ build/bandle/
cp -r dist/_______/* build/bandle/

View file

@ -625,7 +625,7 @@ Graphics::~Graphics(){
void Graphics::update(bool limitFps){
// TODO: move this to ruby thread update, idk where it is
shState->rubyDispatcher().process();
shState->rubyDispatcher().process(); // <-'
p->checkShutDownReset();
p->checkSyncLock();