From 25489bf2033bb5b658e230b0afea0225479756a5 Mon Sep 17 00:00:00 2001 From: SimplifiedPrivacy Date: Tue, 14 Jul 2026 20:57:14 -0400 Subject: [PATCH] Database check messages were made more user-friendly --- gui/__main__.py | 2 +- gui/__pycache__/__main__.cpython-312.pyc | Bin 5088 -> 5360 bytes gui/v2/ui/popups/Database_version.py | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gui/__main__.py b/gui/__main__.py index f9266a5..7aa2b11 100644 --- a/gui/__main__.py +++ b/gui/__main__.py @@ -66,7 +66,7 @@ if not version_table_exists and main_db_exists: close_session() # 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" recovery_dialog(custom_error, db_version_you_have) sys.exit() diff --git a/gui/__pycache__/__main__.cpython-312.pyc b/gui/__pycache__/__main__.cpython-312.pyc index 1a452b95213719a2fdd441aff61f2c34b21c5d17..0e758e5b7f8e29906ba6c09322ea1fda515fdb48 100644 GIT binary patch delta 801 zcmYk4Pfrs;7{+&Yi)f*xe?V9Pd20)8fo>BL<4sJ|!~;POMUuTVOXpp7$+p|fY^e|f z9z1yPLgt8mf*u<_g(ezfh;lF)qq6m-<2cC^L=|G}=)^QBjDZDtNime^5*vbvktL%_761q3Q!MbArYNCB8O76XKX; zv?NW5KO{St#@wMoM@3G}lQFTPPLiv_Q8SrwFJCX1gaVm8={J}~v8U-* zu3_;|d98McXp(vHTh(t)o=^0gF`UBGR^^Q9!g7vnF5m)BiB(mfociySZPVUjy=0b% zf?0Z9Jke&7GZ*&3G#aBJ!C2;knlcS}2qiScu{KL?h`(B1%hH^fi!77bt{tfkCW_=F z${oL5MaF!#yCvQZW!C{7d1!Hj8bd2Uuo_@-jsXYiGOPtY+W{+py|Ur?HOnh=$6{D^ zb||w-+vs}b{`7AAE^`A{PQd*zUHllr{V!|HO=eMqid)AFtRn=>YH&H{H;_W$g9Qz2 z!#yjoHbMs5XLVU7m!57*q83A*`3FhSLkSr;2);*Q8yS~b5}JaILCxvygptkGhF5iK zKxH%(+Kx;O`NL+u2pi0AbLm|K`G!S+isN!$ZoTy%%K11u%KY}by>tE4OrM!pwLa+@vJ*j_T^z3DewO>S&r1DRXvpL?|@GDGYq zn6&&#%wC$75iBjz$vb38RFZSi2T}-sHohjFCvPX0Kc)Adt$dEeUp#$3UHTX?#E0a% L8fe{x)Dbxa`-kLp delta 517 zcmYk2zi-n(6vywKQ>9Jo5Zi4NH!YlT5-UHb)BysLVXld$OdXwjFiSo+r{>(8R7pZ#Ny}?=3YLsM8~E=9m6EV_Lpj=~dk-Ftp_|?I}03l`Hyn zx8~2s35qkCTZDv7<}9nGB(j0bu`*YS2*0FLFRihSc&n0K?hm@tMp4NQc1rDYt+ diff --git a/gui/v2/ui/popups/Database_version.py b/gui/v2/ui/popups/Database_version.py index d42c2d6..67180ed 100755 --- a/gui/v2/ui/popups/Database_version.py +++ b/gui/v2/ui/popups/Database_version.py @@ -56,7 +56,7 @@ class DatabaseConflictDialog(QDialog): # First which messages to display, if check["status"] == "version_mismatch": - error_title = "Database Compatibility" + error_title = "Upgrade Time!" error_subtitle = "Your App version and Database don't match" else: error_title = "Database Error"