diff --git a/CHANGELOG.md b/CHANGELOG.md index 75d414b30..b8cc452fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,5 @@ ### New changes -* Add 433Mhz Security+ 1.0/2.0 in add manually in subghz -* Update Minesweeper (https://github.com/panki27/minesweeper) ------ -* SubGHz: Fix DTM Neo (keeloq) encoder -* fbt: fix flash usb without resources -* OFW: DesktopSettings: reset submenu before running dialog +* OFW PR: Fix dolphin level reset on update (OFW PR 1874 by nminaylov) #### [🎲 Download extra apps pack](https://download-directory.github.io/?url=https://github.com/UberGuidoZ/Flipper/tree/main/Applications/Unleashed) diff --git a/applications/services/dolphin/helpers/dolphin_deed.c b/applications/services/dolphin/helpers/dolphin_deed.c index f42a0b3f7..5e6d1a51d 100644 --- a/applications/services/dolphin/helpers/dolphin_deed.c +++ b/applications/services/dolphin/helpers/dolphin_deed.c @@ -35,8 +35,9 @@ static const DolphinDeedWeight dolphin_deed_weights[] = { {2, DolphinAppIbutton}, // DolphinDeedIbuttonAdd {3, DolphinAppBadusb}, // DolphinDeedBadUsbPlayScript - {3, DolphinAppU2f}, // DolphinDeedU2fAuthorized - {1, DolphinAppGpio}, // DolphinDeedGpioUartBridge + {3, DolphinAppPlugin}, // DolphinDeedU2fAuthorized + + {1, DolphinAppPlugin}, // DolphinDeedGpioUartBridge {1, DolphinAppPlugin}, // DolphinDeedPluginStart {1, DolphinAppPlugin}, // DolphinDeedPluginGameStart @@ -50,8 +51,8 @@ static uint8_t dolphin_deed_limits[] = { 100, // DolphinAppIr 100, // DolphinAppIbutton 100, // DolphinAppBadusb - 100, // DolphinAppU2f - 100, // DolphinAppGpio + // 100, // DolphinAppU2f + // 100, // DolphinAppGpio 100, // DolphinAppPlugin }; diff --git a/applications/services/dolphin/helpers/dolphin_deed.h b/applications/services/dolphin/helpers/dolphin_deed.h index 362771b1a..abe027d79 100644 --- a/applications/services/dolphin/helpers/dolphin_deed.h +++ b/applications/services/dolphin/helpers/dolphin_deed.h @@ -13,8 +13,6 @@ typedef enum { DolphinAppIr, DolphinAppIbutton, DolphinAppBadusb, - DolphinAppU2f, - DolphinAppGpio, DolphinAppPlugin, DolphinAppMAX, } DolphinApp;