diff --git a/CHANGELOG.md b/CHANGELOG.md
index b5058c114..f12e3bd56 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,14 @@
## Main changes
- Current API: 78.2
+* SubGHz: Jolly Motors support (with add manually) (Thanks @pkooiman !)
+* Desktop: Auto Power Off Timer (by @Dmitry422 with some fixes by @xMasterX)
+* OFW PR 4025: Increase system stack's reserved memory size (Fix USB UART Bridge Crash) (by @Astrrra)
* OFW: merged gsurkov/vcp_break_support branch for usb uart bridge (WIP!!!)
* Apps: **Check out more Apps updates and fixes by following** [this link](https://github.com/xMasterX/all-the-plugins/commits/dev)
## Other changes
-* No changes yet :(
+* OFW: NFC: Plantain parser Last payment amount fix
+* OFW: NFC clipper: BART station ids for San Lorenzo, Bay Fair
+* OFW: Fix typo for mf_classic_key_cahce_get_next_key() function
#### Known NFC post-refactor regressions list:
- Mifare Mini clones reading is broken (original mini working fine) (OFW)
diff --git a/applications/services/desktop/desktop.c b/applications/services/desktop/desktop.c
index 8b24e38f0..9366d6508 100644
--- a/applications/services/desktop/desktop.c
+++ b/applications/services/desktop/desktop.c
@@ -191,7 +191,7 @@ static void desktop_input_event_callback(const void* value, void* context) {
Desktop* desktop = context;
if(event->type == InputTypePress) {
desktop_start_auto_lock_timer(desktop);
- //--- m96yda
+ //--- auto_power_off_timer
desktop_start_auto_poweroff_timer(desktop);
//---
}