Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit cc9396a

Browse files
committed
new
1 parent 1247598 commit cc9396a

File tree

2 files changed

+40
-34
lines changed

2 files changed

+40
-34
lines changed

src/utilities/config/app_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from ...localization.localization import Localizer
88

99
default_config = {
10-
"version": "v3.2.1",
10+
"version": "v3.2.2",
1111
"region": ["",Client.fetch_regions()],
1212
"client_id": 811469787657928704,
1313
"presence_refresh_interval": 3,

valorant-rpc.spec

+39-33
Original file line numberDiff line numberDiff line change
@@ -4,37 +4,43 @@
44
block_cipher = None
55

66

7-
a = Analysis(['main.py'],
8-
pathex=['D:\\colin\\programming\\VALORANT\\valorant-rpc'],
9-
binaries=[],
10-
datas=[],
11-
hiddenimports=['pystray._win32'],
12-
hookspath=[],
13-
hooksconfig={},
14-
runtime_hooks=[],
15-
excludes=[],
16-
win_no_prefer_redirects=False,
17-
win_private_assemblies=False,
18-
cipher=block_cipher,
19-
noarchive=False)
20-
pyz = PYZ(a.pure, a.zipped_data,
21-
cipher=block_cipher)
7+
a = Analysis(
8+
['main.py'],
9+
pathex=[],
10+
binaries=[],
11+
datas=[],
12+
hiddenimports=['pystray._win32'],
13+
hookspath=[],
14+
hooksconfig={},
15+
runtime_hooks=[],
16+
excludes=[],
17+
win_no_prefer_redirects=False,
18+
win_private_assemblies=False,
19+
cipher=block_cipher,
20+
noarchive=False,
21+
)
22+
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
2223

23-
exe = EXE(pyz,
24-
a.scripts,
25-
a.binaries,
26-
a.zipfiles,
27-
a.datas,
28-
[],
29-
name='valorant-rpc',
30-
debug=False,
31-
bootloader_ignore_signals=False,
32-
strip=False,
33-
upx=True,
34-
upx_exclude=[],
35-
runtime_tmpdir=None,
36-
console=True,
37-
disable_windowed_traceback=False,
38-
target_arch=None,
39-
codesign_identity=None,
40-
entitlements_file=None , version='version.py', icon='favicon.ico')
24+
exe = EXE(
25+
pyz,
26+
a.scripts,
27+
a.binaries,
28+
a.zipfiles,
29+
a.datas,
30+
[],
31+
name='valorant-rpc',
32+
debug=False,
33+
bootloader_ignore_signals=False,
34+
strip=False,
35+
upx=True,
36+
upx_exclude=[],
37+
runtime_tmpdir=None,
38+
console=True,
39+
disable_windowed_traceback=False,
40+
argv_emulation=False,
41+
target_arch=None,
42+
codesign_identity=None,
43+
entitlements_file=None,
44+
version='version.py',
45+
icon=['favicon.ico'],
46+
)

0 commit comments

Comments
 (0)