mirror of
https://github.com/ihaveamac/custom-install.git
synced 2026-01-21 14:06:02 +00:00
add note if custom-install-finalize was not copied, print all messages to stdout in gui
This commit is contained in:
@@ -230,8 +230,12 @@ class InstallResults(tk.Toplevel):
|
|||||||
else:
|
else:
|
||||||
message = 'Nothing was installed.'
|
message = 'Nothing was installed.'
|
||||||
|
|
||||||
if install_state['installed'] and copied_3dsx:
|
if install_state['installed']:
|
||||||
|
if copied_3dsx:
|
||||||
message += '\n\ncustom-install-finalize has been copied to the SD card.'
|
message += '\n\ncustom-install-finalize has been copied to the SD card.'
|
||||||
|
else:
|
||||||
|
message += ('\n\nNote: custom-install-finalize was not copied.\n'
|
||||||
|
'You can either manually copy the 3dsx to your SD card, or use GodMode9 to finish the install.')
|
||||||
|
|
||||||
if application_count >= 300:
|
if application_count >= 300:
|
||||||
message += (f'\n\nWarning: {application_count} installed applications were detected.\n'
|
message += (f'\n\nWarning: {application_count} installed applications were detected.\n'
|
||||||
@@ -601,6 +605,8 @@ class CustomInstallGUI(ttk.Frame):
|
|||||||
if status:
|
if status:
|
||||||
self.status_label.config(text=line)
|
self.status_label.config(text=line)
|
||||||
|
|
||||||
|
print(log_msg)
|
||||||
|
|
||||||
def show_error(self, message):
|
def show_error(self, message):
|
||||||
mb.showerror('Error', message, parent=self.parent)
|
mb.showerror('Error', message, parent=self.parent)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user