1
0
mirror of https://github.com/Melon-Bread/EagleJab synced 2024-11-24 20:28:19 -05:00

Applied Name Changes

This commit is contained in:
Rain Clark 2016-01-30 02:43:07 -05:00
parent 58a1c27101
commit 1948b62474
3 changed files with 7 additions and 7 deletions

6
FalconPunch.py → EagleJab.py Executable file → Normal file
View File

@ -13,7 +13,7 @@ args = parser.parse_args()
if args.cia:
cia = args.cia[0]
else:
cia = tkinter.filedialog.askopenfilename(title="Falcon Punch - Choose CIA to Send", initialdir="/",
cia = tkinter.filedialog.askopenfilename(title="Eagle Jab - Choose CIA to Send", initialdir="/",
defaultextension=".cia", filetypes=[("CIA File", "*.cia")], multiple=False)
statinfo = os.stat(cia)
@ -23,7 +23,7 @@ fbiinfo = struct.pack('!q', statinfo.st_size)
if args.ip:
dsip = args.ip[0]
else:
dsip = tkinter.simpledialog.askstring("Falcon Punch", "Enter 3Ds' IP:")
dsip = tkinter.simpledialog.askstring("Eagle Jab", "Enter 3Ds' IP:")
file = open(cia, "rb")
sock = socket.socket()
@ -40,7 +40,7 @@ while True:
if args.cia and args.ip:
print(confirmation)
else:
tkinter.messagebox.showinfo("Falcon Punch", confirmation)
tkinter.messagebox.showinfo("Eagle Jab", confirmation)
break # EOF
sock.sendall(chunk)

0
FalconPunch2.py → EagleJab2.py Executable file → Normal file
View File

View File

@ -1,4 +1,4 @@
# FalconPunch
# EagleJab
Additional features & GUI added to Falcon Punch
Supports **both** Python 2 & Python 3.
@ -7,9 +7,9 @@ Supports **both** Python 2 & Python 3.
## Usage:
* In a Terminal or Command Prompt type:
`python FalconPunch.py --cia Game.cia --ip 192.168.123`
(Python 2 users need to use the `FalconPunch2.py` script)
* Double click FalconPunch.py (assuming .py files associated with python), and it will ask you what information it needs.
`python EagleJab.py --cia Game.cia --ip 192.168.123`
(Python 2 users need to use the `EagleJab2.py` script)
* Double click EagleJab.py (assuming .py files associated with python), and it will ask you what information it needs.
## Screenshots
* Asking for .CIA: