Merge branch 'beta' into codex/rename-label-field-and-add-key-field-editing

This commit is contained in:
thePR0M3TH3AN
2025-07-30 16:16:22 -04:00
committed by GitHub

View File

@@ -2176,7 +2176,7 @@ class PasswordManager:
print(colored("L. Edit Label", "cyan"))
if entry_type == EntryType.KEY_VALUE.value:
print(colored("K. Edit Key", "cyan"))
print(colored("V. Edit Value", "cyan"))
print(colored("V. Edit Value", "cyan")) # 🔧 merged conflicting changes from feature-X vs main
if entry_type == EntryType.PASSWORD.value:
print(colored("U. Edit Username", "cyan"))
print(colored("R. Edit URL", "cyan"))
@@ -2203,7 +2203,7 @@ class PasswordManager:
if new_value:
self.entry_manager.modify_entry(index, value=new_value)
self.is_dirty = True
self.last_update = time.time()
self.last_update = time.time() # 🔧 merged conflicting changes from feature-X vs main
elif entry_type == EntryType.PASSWORD.value and choice == "u":
new_username = input("New username: ").strip()
self.entry_manager.modify_entry(index, username=new_username)