-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated .exe file. Added support for single executable. Few improvements
.exe file correctly updated because there was a change in discord.py .exe now has all images and .txt embeded being a single independent file after_invoke updated because it was changed in discord.py
- Loading branch information
Showing
12 changed files
with
104 additions
and
61 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
[Users] | ||
Fytex=321346463148015626 | ||
USER1=123456789012345678 | ||
USER2=123456789012345678 | ||
USER3=123456789012345678 | ||
|
||
[Options] | ||
Token= | ||
CooldownBypass=False | ||
OfflineMode=False | ||
CooldownBypass=True | ||
OfflineMode=False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
H43.exe | ||
"H43 BOT".exe | ||
PAUSE |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
[Users] | ||
Fytex=321346463148015626 | ||
USER1=123456789012345678 | ||
USER2=123456789012345678 | ||
USER3=123456789012345678 | ||
|
||
[Options] | ||
Token= | ||
CooldownBypass=False | ||
CooldownBypass=True | ||
OfflineMode=False |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# -*- mode: python ; coding: utf-8 -*- | ||
|
||
from os.path import join as path_join | ||
|
||
block_cipher = None | ||
|
||
|
||
a = Analysis(['h43.py'], | ||
pathex=[], | ||
binaries=[], | ||
datas=[ | ||
(path_join('extras', 'Guilds_Icon.png'), 'extras'), | ||
(path_join('extras', 'art_h43.txt'), 'extras') | ||
], | ||
hiddenimports=[ | ||
'cogs.exploit', | ||
'cogs.admin_ext', | ||
'cogs.error_handler' | ||
], | ||
hookspath=[], | ||
runtime_hooks=[], | ||
excludes=[], | ||
win_no_prefer_redirects=False, | ||
win_private_assemblies=False, | ||
cipher=block_cipher, | ||
noarchive=False) | ||
|
||
|
||
pyz = PYZ(a.pure, a.zipped_data, | ||
cipher=block_cipher) | ||
|
||
|
||
exe = EXE(pyz, | ||
a.scripts, | ||
a.binaries, | ||
a.zipfiles, | ||
a.datas, | ||
[], | ||
name='H43 BOT', | ||
debug=False, | ||
bootloader_ignore_signals=False, | ||
strip=False, | ||
upx=True, | ||
upx_exclude=[], | ||
runtime_tmpdir=None, | ||
console=True, | ||
icon=path_join('extras', 'icon_h43.ico')) |