mirror of
https://github.com/ihaveamac/custom-install.git
synced 2026-01-21 05:55:59 +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:
|
||||
message = 'Nothing was installed.'
|
||||
|
||||
if install_state['installed'] and copied_3dsx:
|
||||
message += '\n\ncustom-install-finalize has been copied to the SD card.'
|
||||
if install_state['installed']:
|
||||
if copied_3dsx:
|
||||
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:
|
||||
message += (f'\n\nWarning: {application_count} installed applications were detected.\n'
|
||||
@@ -601,6 +605,8 @@ class CustomInstallGUI(ttk.Frame):
|
||||
if status:
|
||||
self.status_label.config(text=line)
|
||||
|
||||
print(log_msg)
|
||||
|
||||
def show_error(self, message):
|
||||
mb.showerror('Error', message, parent=self.parent)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user