commit eae1eab68b9de90dcc7ca8c8a4f311a3f014c64c
parent 32b9fe29acd8e263d0ad8de2a650e45f824db142
Author: therealFIGBERT <figbertwelner@gmail.com>
Date: Mon, 8 Jul 2019 21:48:40 -1000
Updating Windows executable
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/Windows/figENC.exe b/Windows/figENC.exe
Binary files differ.
diff --git a/Windows/figENC_Windows.py b/Windows/figENC_Windows.py
@@ -234,7 +234,7 @@ def go(mode, save_folder, target_file, passkey=None):
root = tk.Tk()
root.wm_title("figENC")
-canvas = tk.Canvas(root, height=700, width=650)
+canvas = tk.Canvas(root, height=800, width=650)
canvas.pack()
frame = tk.Frame(root, bg="#1A181C")
frame.place(relwidth=1, relheight=1)
@@ -266,16 +266,16 @@ step_two.pack(fill="both")
file_frame = tk.Frame(step_two, bg="#1A181C", pady="8")
file_label = tk.Label(file_frame, text="If you see this, the app broke", font=("Arial", "14"), bg="#1A181C", fg="#ACA0B2")
file_instructions = tk.Label(file_frame, text="Separate filepaths with colons (:)", font=("Arial", "11"), bg="#1A181C", fg="#B494C7")
-file_input = tk.Entry(file_frame, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar, relief=tk.SUNKEN, bg="#1A181C", fg="#ACA0B2")
+file_input = tk.Entry(file_frame, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar, relief=tk.SUNKEN, bg="#1A181C", fg="#ACA0B2", insertbackground="#ACA0B2")
passcode_frame = tk.Frame(step_two, bg="#1A181C", pady="8")
passcode_label = tk.Label(passcode_frame, text="If you see this, the app broke", font=("Arial", "14"), bg="#1A181C", fg="#ACA0B2")
passcode_instructions = tk.Label(passcode_frame, text="If you see this, the app broke", font=("Arial", "11"), bg="#1A181C", fg="#B494C7")
-passcode_input = tk.Entry(passcode_frame, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar, relief=tk.SUNKEN, bg="#1A181C", fg="#ACA0B2", show="*")
+passcode_input = tk.Entry(passcode_frame, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar, relief=tk.SUNKEN, bg="#1A181C", fg="#ACA0B2", show="*", insertbackground="#ACA0B2")
save = tk.Frame(step_two, bg="#1A181C", pady="8")
save_label = tk.Label(save, text="Save location for keys", font=("Arial", "14"), bg="#1A181C", fg="#ACA0B2")
save_instructions = tk.Label(save, text="Save the keys to an empty folder, and store them somewhere secure\nIf other key files exist in the same folder, they will be overwritten", font=("Arial", "11"), bg="#1A181C", fg="#B494C7")
-save_input = tk.Entry(save, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar, relief=tk.SUNKEN, bg="#1A181C", fg="#ACA0B2")
+save_input = tk.Entry(save, font=("Arial", "12"), justify=tk.CENTER, textvariable=tk.StringVar, relief=tk.SUNKEN, bg="#1A181C", fg="#ACA0B2", insertbackground="#ACA0B2")
submit = tk.Button(save, text="If you see this, the app broke", font=("Arial", "12"), command=lambda: go(mode=crypto_mode, save_folder=save_input.get(), target_file=file_input.get(), passkey=passcode_input.get()), bg="#643181", fg="#B494C7")
root.mainloop()
\ No newline at end of file