File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ from pathlib import Path
4
4
import platform
5
5
from PyInstaller .utils .hooks import collect_submodules
6
6
7
+ DEBUG = False
7
8
8
9
APP = 'socketjoy'
9
10
block_cipher = None
@@ -59,7 +60,7 @@ if platform.system() == 'Linux':
59
60
[],
60
61
exclude_binaries = True ,
61
62
name = APP ,
62
- debug = False ,
63
+ debug = DEBUG ,
63
64
bootloader_ignore_signals = False ,
64
65
strip = False ,
65
66
upx = True ,
97
98
[f'{ APP } /app.py' ],
98
99
pathex = [Path .cwd ()],
99
100
binaries = windows_data ,
100
- datas = [] ,
101
+ datas = static_files ,
101
102
hiddenimports = hidden_imports ,
102
103
hookspath = [],
103
104
runtime_hooks = [],
@@ -120,7 +121,7 @@ else:
120
121
a .datas ,
121
122
[],
122
123
name = APP ,
123
- debug = False ,
124
+ debug = DEBUG ,
124
125
bootloader_ignore_signals = False ,
125
126
strip = False ,
126
127
upx = True ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ bidict==0.21.2
2
2
dnspython == 1.16.0
3
3
evdev == 1.3.0 ; platform_system != "Windows"
4
4
eventlet == 0.30.0
5
- greenlet == 0.4.17 ; platform_system != "Windows"
5
+ greenlet == 1.0.0
6
6
python-engineio == 4.0.0
7
7
python-socketio == 5.0.4
8
8
qrcode == 6.1
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ if (isLocal) {
30
30
} , 10000 ) ;
31
31
32
32
33
- sock . emit ( "fetchstuff " ) ;
33
+ sock . emit ( "fetch_lobby " ) ;
34
34
sock . on ( "qrcode" , ( data ) => {
35
35
document . getElementById ( "qrcode" ) . innerHTML = data . qr
36
36
} ) ;
You can’t perform that action at this time.
0 commit comments