mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 13:29:54 +00:00
Merge branch 'master' of ssh://code.nikooneshot.ru:222/Sunshine/mkxp-sunshine
This commit is contained in:
commit
8da6b3d7d6
3 changed files with 16 additions and 1 deletions
|
|
@ -18,6 +18,8 @@
|
||||||
| Ouzly | Tester and telegram moderator | |
|
| Ouzly | Tester and telegram moderator | |
|
||||||
| anmitali | Ports programmer | |
|
| anmitali | Ports programmer | |
|
||||||
| Kyronix Team | Kyronix Port developers | |
|
| Kyronix Team | Kyronix Port developers | |
|
||||||
|
| theboxyguy | programmer | |
|
||||||
|
| Каламус | tester | |
|
||||||
|
|
||||||
# Donators:
|
# Donators:
|
||||||
| Donator |
|
| Donator |
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,20 @@ mkdir -p build/bandle/Data
|
||||||
#cp "$STEAMWORKS_PATH/redistributable_bin/linux64/libsteam_api.so" .
|
#cp "$STEAMWORKS_PATH/redistributable_bin/linux64/libsteam_api.so" .
|
||||||
#make -j${make_threads} > steamshim.make.out
|
#make -j${make_threads} > steamshim.make.out
|
||||||
#cd ../..
|
#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
|
pyinstaller journal/unix/journal.spec #--windowed
|
||||||
|
deactivate
|
||||||
ruby rpgscript.rb scripts/ build/bandle/
|
ruby rpgscript.rb scripts/ build/bandle/
|
||||||
|
|
||||||
cp -r dist/_______/* build/bandle/
|
cp -r dist/_______/* build/bandle/
|
||||||
|
|
|
||||||
|
|
@ -625,7 +625,7 @@ Graphics::~Graphics(){
|
||||||
|
|
||||||
void Graphics::update(bool limitFps){
|
void Graphics::update(bool limitFps){
|
||||||
// TODO: move this to ruby thread update, idk where it is
|
// TODO: move this to ruby thread update, idk where it is
|
||||||
shState->rubyDispatcher().process();
|
shState->rubyDispatcher().process(); // <-'
|
||||||
|
|
||||||
p->checkShutDownReset();
|
p->checkShutDownReset();
|
||||||
p->checkSyncLock();
|
p->checkSyncLock();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue