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
- PIF Import favorites can now import recursively including subdirectories.
- Added Device | Check otacerts menu option to quickly check if the ROM is signed.
- Sync banned kernel list with @osm0sis [published list](https://xdaforums.com/t/module-play-integrity-fix-safetynet-fix.4607985/page-518#post-89308909).
- Improved exception handling
- Improved debug messages for troubleshooting
- Fix timing issue for a corner case cleanup before unzipping is completed.
- AVBTool improvements.
Copy file name to clipboardExpand all lines: Main.py
+40-15Lines changed: 40 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -659,7 +659,7 @@ def initialize(self):
659
659
# self.toast("Firmware SHA256", "SHA256 of the selected file matches the segment in the filename.")
660
660
set_firmware_hash_validity(True)
661
661
else:
662
-
print(f"WARNING: Expected to match {firmware_hash[:8]} in the firmware filename but didn't, please double check to make sure the checksum is good.")
662
+
print(f"⚠️ WARNING: Expected to match {firmware_hash[:8]} in the firmware filename but didn't, please double check to make sure the checksum is good.")
663
663
puml("#orange:Unable to match the checksum in the filename;\n")
664
664
self.toast("Firmware SHA256", "WARNING! SHA256 of the selected file does not match segments in the filename.\nPlease double check to make sure the checksum is good.")
665
665
set_firmware_hash_validity(False)
@@ -1283,6 +1283,10 @@ def _build_menu_bar(self):
1283
1283
self.cancel_ota_menu_item=device_menu.Append(wx.ID_ANY, "Cancel OTA Update", "Cancels and Resets OTA updates by Google (Not PixelFlasher)")
print(f"WARNING! Problematic Magisk Version: {m_version} is installed. Advised not to use this version.")
2357
+
print(f"⚠️ WARNING! Problematic Magisk Version: {m_version} is installed. Advised not to use this version.")
2336
2358
ifm_app_versioninKNOWN_BAD_MAGISKS:
2337
2359
bad_m_app_version=True
2338
-
print(f"WARNING! Problematic Magisk Manager Version: {m_app_version} is installed. Advised not to use this version.")
2360
+
print(f"⚠️ WARNING! Problematic Magisk Manager Version: {m_app_version} is installed. Advised not to use this version.")
2339
2361
2340
2362
ifbad_m_versionandbad_m_app_version:
2341
2363
dlg=wx.MessageDialog(None, f"Magisk Version: {m_version} is detected.\nMagisk Manager Version: {m_app_version} is detected.\n\nThese versions of Magisk are known to have issues.\nRecommendation: Install stable version or one that is known to be good.",'Problematic Magisk Versions.',wx.OK|wx.ICON_EXCLAMATION)
0 commit comments