[FL-3801] Mifare Ultralight naming fix (#3551)

* Fixed some UI mismatches in plugin and nfc app
* Fixed nameing mismatches in mosgortrans_util
* Fix ultralight naming display
* Fix naming for Ultralight on read screen
* fbt: fixed regression with pvs-reports autoopen
* Revert st25tb_render.c

Co-authored-by: gornekich <n.gorbadey@gmail.com>
Co-authored-by: あく <alleteam@gmail.com>
Co-authored-by: hedger <hedger@nanode.su>
This commit is contained in:
RebornedBrain 2024-04-01 18:02:11 +03:00 committed by GitHub
parent 9f71be6fef
commit f426c44811
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -247,6 +247,8 @@ static void nfc_scene_read_success_on_enter_mf_ultralight(NfcApp* instance) {
furi_string_cat_printf( furi_string_cat_printf(
temp_str, "\e#%s\n", nfc_device_get_name(device, NfcDeviceNameTypeFull)); temp_str, "\e#%s\n", nfc_device_get_name(device, NfcDeviceNameTypeFull));
furi_string_replace(temp_str, "Mifare", "MIFARE");
nfc_render_mf_ultralight_info(data, NfcProtocolFormatTypeShort, temp_str); nfc_render_mf_ultralight_info(data, NfcProtocolFormatTypeShort, temp_str);
} }

View file

@ -32,7 +32,7 @@ def atexist_handler():
for bf in GetBuildFailures(): for bf in GetBuildFailures():
for node in Flatten(bf.node): for node in Flatten(bf.node):
if node.exists and "pvs" in node.name and node.name.endswith(".html"): if node.exists and "pvs" in node.path and node.name.endswith(".html"):
# macOS # macOS
if sys.platform == "darwin": if sys.platform == "darwin":
subprocess.run(["open", node.abspath]) subprocess.run(["open", node.abspath])