You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
""" Check the system for if it is running Windows 10 or older """
39
+
""" Check if the system is Windows 11 """
33
40
defcheck_system():
34
41
ifnotis_windows_11():
35
-
show_error("You are currently on Windows 10 or older. Talon is designed to only work on freshly installed Windows 11 systems. Please update to a fresh installation of Windows 11 before attempting to use Talon again.")
36
-
37
-
install_date=get_installation_date()
38
-
ifinstall_dateisNone:
39
-
show_error("Could not determine Windows installation date. Please ensure your system is properly configured.")
42
+
show_popup("Talon Installation Failure",
43
+
"You are currently on Windows 10 or older. <b>Talon is designed to only work on freshly installed Windows 11 systems</b>. Please update to a fresh installation of Windows 11 before attempting to use Talon again.",
44
+
is_error=True)
45
+
show_popup("Talon Installation Warning",
46
+
"""
47
+
Talon is designed to be used on <b>freshly installed Windows 11 systems</b>. Running this program on an already in-use system could result in data loss, apps stopping working, or even corruption.<br><br>
48
+
49
+
<b>For the best results, please ensure you are on a fresh installation of the latest version of Windows 11 Home or Professional.<b>
0 commit comments