diff --git a/nfc_magic/.catalog/changelog.md b/nfc_magic/.catalog/changelog.md index 3462d7e4c3e..7534dd4cf75 100644 --- a/nfc_magic/.catalog/changelog.md +++ b/nfc_magic/.catalog/changelog.md @@ -1,3 +1,6 @@ +## 1.11 + - Fixed Mifare Ultralight types with latest API update + ## 1.10 - Fixed the user dictionary dictionary attack results being discarded diff --git a/nfc_magic/application.fam b/nfc_magic/application.fam index 41417eb2d12..0fd99ac3bc1 100644 --- a/nfc_magic/application.fam +++ b/nfc_magic/application.fam @@ -10,7 +10,7 @@ App( ], stack_size=4 * 1024, fap_description="Application for writing to NFC tags with modifiable sector 0", - fap_version="1.10", + fap_version="1.11", fap_icon="assets/125_10px.png", fap_category="NFC", fap_icon_assets="assets", diff --git a/nfc_magic/magic/protocols/gen4/gen4_poller.c b/nfc_magic/magic/protocols/gen4/gen4_poller.c index aab15b3c234..8798e569b8e 100644 --- a/nfc_magic/magic/protocols/gen4/gen4_poller.c +++ b/nfc_magic/magic/protocols/gen4/gen4_poller.c @@ -384,7 +384,7 @@ static NfcCommand gen4_poller_write_mf_ultralight(Gen4Poller* instance) { instance->total_blocks = 64 * 2; break; - case MfUltralightTypeUnknown: + case MfUltralightTypeOrigin: FURI_LOG_D(TAG, "Ultralight type"); instance->config.data_parsed.mfu_mode = Gen4UltralightModeUL; break;