Skip to content

Commit 9c8839a

Browse files
committed
modified: assets/diag.png
new file: assets/diag_ipad.png modified: ufade_gui.py
1 parent 7ca151d commit 9c8839a

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

assets/diag.png

-4.09 KB
Loading

assets/diag_ipad.png

13.6 KB
Loading

ufade_gui.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def __init__(self):
6868
self.stop_event = threading.Event()
6969

7070
# Define Window
71-
self.title("Universal Forensic Apple Device Extractor 0.8")
71+
self.title("Universal Forensic Apple Device Extractor 0.8.1")
7272
self.geometry("1100x600")
7373
self.resizable(False, False)
7474
self.iconpath = ImageTk.PhotoImage(file=os.path.join(os.path.dirname(__file__), "assets" , "ufade.png" ))
@@ -436,6 +436,8 @@ def choose_cwd(self, outputbox):
436436
def browse_cwd(self, outputbox):
437437
global dir
438438
olddir = dir
439+
self.okbutton.configure(state="disabled")
440+
outputbox.configure(state="disabled")
439441
if platform.uname().system == 'Linux':
440442
import crossfiledialog
441443
dir = crossfiledialog.choose_folder()
@@ -445,6 +447,8 @@ def browse_cwd(self, outputbox):
445447
dir = ctk.filedialog.askdirectory()
446448
if not dir:
447449
dir = olddir
450+
self.okbutton.configure(state="enabled")
451+
outputbox.configure(state="normal")
448452
outputbox.delete(0, "end")
449453
outputbox.insert(0, string=dir)
450454

@@ -557,6 +561,8 @@ def show_sysdiag(self):
557561
self.text.pack(pady=10)
558562
if d_class == "Watch":
559563
self.diag_image = ctk.CTkImage(dark_image=Image.open(os.path.join(os.path.dirname(__file__), "assets" , "diag_watch.png")), size=(600, 300))
564+
elif d_class == "iPad":
565+
self.diag_image = ctk.CTkImage(dark_image=Image.open(os.path.join(os.path.dirname(__file__), "assets" , "diag_ipad.png")), size=(600, 300))
560566
else:
561567
self.diag_image = ctk.CTkImage(dark_image=Image.open(os.path.join(os.path.dirname(__file__), "assets" , "diag.png")), size=(600, 300))
562568
self.diaglabel = ctk.CTkLabel(self.dynamic_frame, image=self.diag_image, text=" ", width=600, height=300, font=self.stfont, anchor="w", justify="left")

0 commit comments

Comments
 (0)