Database check messages were made more user-friendly

This commit is contained in:
SimplifiedPrivacy 2026-07-14 20:57:14 -04:00
parent e5c83e72b1
commit 25489bf203
3 changed files with 2 additions and 2 deletions

View file

@ -66,7 +66,7 @@ if not version_table_exists and main_db_exists:
close_session() close_session()
# THEN DISPLAY CHOICES AND RECOVERY UI # THEN DISPLAY CHOICES AND RECOVERY UI
custom_error = "You're using a Legacy version of the Database scheme. Please delete it and fetch the new data." custom_error = "Upgrade Time! We transitioned to a new Database format for new features! Please delete the old version and fetch the new public data (what locations, browsers, ect) This will NOT affect your profiles or browser sessions."
db_version_you_have = "Old System" db_version_you_have = "Old System"
recovery_dialog(custom_error, db_version_you_have) recovery_dialog(custom_error, db_version_you_have)
sys.exit() sys.exit()

View file

@ -56,7 +56,7 @@ class DatabaseConflictDialog(QDialog):
# First which messages to display, # First which messages to display,
if check["status"] == "version_mismatch": if check["status"] == "version_mismatch":
error_title = "Database Compatibility" error_title = "Upgrade Time!"
error_subtitle = "Your App version and Database don't match" error_subtitle = "Your App version and Database don't match"
else: else:
error_title = "Database Error" error_title = "Database Error"