diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dfbf46cf..70948b2f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,27 +1,12 @@ ### New changes -* Power + BLE: DeepSleep + required ble stack upgrade added back, all known issues was fixed in OFW, no issues was found during our tests -* Desktop: Allow locking without pin using Up menu on desktop (Short click on `Lock` = Without PIN / Long = With PIN) -* RFID: Add confirmation message before running `Clear T5577 Password` -* RFID: Add more user friendly RAW emulation via UI [(by Dan Caprita)](https://forum.flipperzero.one/t/electra-intercom/6368/43) -* SubGHz: Fixed `Frequency Analyzer` issues, fixed `Read` mode issues -* SubGHz: Fix NFC crash when using external CC1101 radio module -* SubGHz: Fix multiple external CC1101 radio module issues, (int callbacks, SPI handlers init/reinit) -* SubGHz: Using scene manager function in add manually (by @gid9798 | PR #437) -* Plugins: ESP32: WiFi Marauder - add icon for log files in logs browser -* Plugins: Update **ESP32: WiFi Marauder companion** plugin [(by 0xchocolate)](https://github.com/0xchocolate/flipperzero-firmware-with-wifi-marauder-companion) merged [PR by @tcpassos](https://github.com/0xchocolate/flipperzero-firmware-with-wifi-marauder-companion/pull/11) +* NFC: Temp fix for Detect reader not collecting nonces +* Desktop: Temp fix for old backlight bug when locking by holding up arrow +* BLE Info: Show version instead of branch +* Plugins: Add new game - Bomberduck (by @leo-need-more-coffee | PR #450) +* Plugins: Fix `SWD Probe` plugin GPIO pins state reset on exit +* Plugins: Bluetooth Remote - new UI (by @krolchonok | PR #447) * Plugins: Update **TOTP (Authenticator)** [(by akopachov)](https://github.com/akopachov/flipper-zero_authenticator) -* Plugins: Fix RFID Fuzzer and iButton Fuzzer crashes -* Plugins: iButton Fuzzer default keys update (by @team-orangeBlue) -* Infrared: Updated infrared assets (by @amec0e | PR #441) -* Docs: Update **How To Install** images (by @krolchonok | PR #436) -* OFW PR 2620: NFC: Fix reading Mifare Classic cards with unusual access conditions and fix emulation of unknown keys (by Astrrra) -* OFW PR 2616: Picopass: remove spaces in CSN (by bettse) -* OFW PR 2604: WS: add protocol "Wendox W6726" (by Skorpionm) -* OFW PR 2607: BadUSB: command parser fix (by nminaylov) -* OFW: Keep HSI16 working in stop mode. -* OFW: FuriHal: use proper divider for core2 when transition to sleep, remove extra stop mode transition checks, cleanup code. Furi: proper assert and check messages. -* OFW: Don't reboot on crash in debug builds -* OFW: cubewb: downgraded to v1.15.0 +* Docs: Update HowToInstall (by @krolchonok | PR #443) #### [🎲 Download latest extra apps pack](https://github.com/xMasterX/all-the-plugins/archive/refs/heads/main.zip) diff --git a/applications/services/desktop/views/desktop_view_locked.c b/applications/services/desktop/views/desktop_view_locked.c index 0bf757036..8a0ddb3af 100644 --- a/applications/services/desktop/views/desktop_view_locked.c +++ b/applications/services/desktop/views/desktop_view_locked.c @@ -242,5 +242,6 @@ bool desktop_view_locked_is_locked_hint_visible(DesktopViewLocked* locked_view) DesktopViewLockedModel* model = view_get_model(locked_view->view); const DesktopViewLockedState view_state = model->view_state; view_commit_model(locked_view->view, false); - return view_state == DesktopViewLockedStateLockedHintShown; + return view_state == DesktopViewLockedStateLockedHintShown || + view_state == DesktopViewLockedStateLocked; }