Skip to content

Commit 14e0565

Browse files
Updated pointer for hovers
1 parent e808c17 commit 14e0565

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

BlackHole

688 Bytes
Binary file not shown.

BlackHole.exe

914 Bytes
Binary file not shown.

BlackHole.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def _enum_proc(h, lparam):
228228
FONT_ITALIC = os.path.join(SCRIPT_DIR, "Fonts", "Nunito-Italic.ttf")
229229
FONT_SEMIBOLD = os.path.join(SCRIPT_DIR, "Fonts", "Nunito-SemiBold.ttf")
230230
LICENSE_TEXT = os.path.join(SCRIPT_DIR, "LICENSE.txt")
231-
VERSION = "1.9.1"
231+
VERSION = "1.9.2"
232232
# Load all the font files for Tkinter (on Windows)
233233
if platform.system() == "Windows":
234234
fonts = [FONT_REGULAR, FONT_MEDIUM, FONT_BOLD, FONT_LIGHT, FONT_ITALIC, FONT_SEMIBOLD]
@@ -1635,7 +1635,7 @@ def copy_text(text, msg="Copied to clipboard!"):
16351635
user_frame = ctk.CTkFrame(left, fg_color=CARD, border_width=2, border_color=CARD_HOVER, corner_radius=4, height=30)
16361636
user_frame.pack(fill="x", pady=2)
16371637
user_label = ctk.CTkLabel(user_frame, text=f"🗐 User: {user or ''}", anchor="w",
1638-
text_color=ACCENT_DIM, font=("Nunito", 12), width=50, wraplength=200, height=10) # Increased font size
1638+
text_color=ACCENT_DIM, font=("Nunito", 12), width=50, wraplength=200, height=10, cursor="hand2") # Increased font size
16391639
user_frame.pack_propagate(0)
16401640
user_label.pack(side="left", padx=4)
16411641
user_label.bind("<Button-1>", lambda e, u=user: copy_text(u, "Username copied!"))
@@ -1645,7 +1645,7 @@ def copy_text(text, msg="Copied to clipboard!"):
16451645
pwd_var = StringVar(value="*"*len(pwd) if pwd else "")
16461646
# Note: pwd_label now holds the reference to the CTkLabel object
16471647
pwd_label = ctk.CTkLabel(pwd_frame, text=f"🗐 Password: {pwd_var.get()}", anchor="w",
1648-
text_color=TEXT, font=("Nunito", 12), width=50, wraplength=200, height=10) # Increased font size
1648+
text_color=TEXT, font=("Nunito", 12), width=50, wraplength=200, height=10, cursor="hand2") # Increased font size
16491649
pwd_frame.pack_propagate(0)
16501650
pwd_label.pack(side="left", padx=4)
16511651
pwd_label.bind("<Button-1>", lambda e, p=pwd: copy_text(p, "Password copied!"))

Extras/BlackHole.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
; Non-commercial use only
44

55
#define MyAppName "Black Hole"
6-
#define MyAppVersion "1.9.1"
6+
#define MyAppVersion "1.9.2"
77
#define MyAppPublisher "Nova Foundry"
88
#define MyAppURL "https://novafoundry.ca"
99
#define MyAppExeName "BlackHole.exe"

Extras/BlackHole.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project>
22
<shortName>BlackHole</shortName>
33
<fullName>Black Hole Password Manager</fullName>
4-
<version>1.9.1</version>
4+
<version>1.9.2</version>
55
<readmeFile>C:/Users/jackp/Downloads/Linux/BlackHole/README.txt</readmeFile>
66
<licenseFile>C:/Users/jackp/Downloads/Linux/BlackHole/LICENSE.txt</licenseFile>
77
<logoImage>C:/Users/jackp/Downloads/Black Hole Installer.png</logoImage>

0 commit comments

Comments
 (0)