diff --git a/PEOPLES.md b/PEOPLES.md index 7fc4e45..0c12c62 100644 --- a/PEOPLES.md +++ b/PEOPLES.md @@ -18,6 +18,8 @@ | Ouzly | Tester and telegram moderator | | | anmitali | Ports programmer | | | Kyronix Team | Kyronix Port developers | | +| theboxyguy | programmer | | +| Каламус | tester | | # Donators: | Donator | diff --git a/make-oneshot-linux.sh b/make-oneshot-linux.sh index f4410ef..4ddf992 100755 --- a/make-oneshot-linux.sh +++ b/make-oneshot-linux.sh @@ -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/ diff --git a/src/graphics.cpp b/src/graphics.cpp index 5723ea0..b71a22f 100644 --- a/src/graphics.cpp +++ b/src/graphics.cpp @@ -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();