diff --git a/ReadMe.md b/ReadMe.md index 78630f2cc96..2607762179a 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -44,10 +44,10 @@ This software is for experimental purposes only and is not meant for any illegal - Updated: [JS Runner v1.0 (By nminaylov & DrZlo13)-OFW](https://github.com/flipperdevices/flipperzero-firmware/pull/3286) [Added ble beacon, math and keyboard to JavaScript API (By Spooks4576)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/41bb09492400026be66ef5f8b78f506f21361f1d) [Many improvements (By Willy-JL)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/9b00d0e37b304784cf8e0ac0bdabe6aa543a780e) [Some SubGHz support and Radio Device Loader module (By Sil333033) + Also BLE Beacon Improvements (By Willy-JL)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/ed2716fb48f37a62cc3baf5c7fc8ee9a2864badc) - Added: [FindMy Flipper v1.0 (By MatthewKuKanich)](https://github.com/MatthewKuKanich/FindMyFlipper) - Updated: [BLE Spam v6.0 (By Willy-JL & ECTO-1A & Spooks4576 with research from xMasterX; OFW API thanks to noproto)](https://github.com/noproto/apple_ble_spam_ofw) [Added NameFlood option (By Willy-JL)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/f2a6af257c8ce8e47181329c59a8a4e44e927c58) [Bug Fixes (By Willy-JL)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/74d69fb623378395ed8407261c95453d12e59cd5) -- [VGM: Custom color options (By HaxSam & Willy-JL)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/93b532b4ebac931862369b286429b83a2c55d1bf) - Updated: [NFC Maker v1.2 (by Willy-JL)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/343cb39d08f60b75b537e1a31100707935cf6e9d) NfcMaker: Fix timeout on error screen (By Willy-JL) - Updated: [FindMy Flipper v1.0 (By MatthewKuKanich)](https://github.com/MatthewKuKanich/FindMyFlipper) - Updated: [Quac! v0.2 (By rdefeo)](https://github.com/rdefeo/quac) +- Updated: [VGM: Custom color options (By HaxSam & Willy-JL)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/93b532b4ebac931862369b286429b83a2c55d1bf) Added Rainbow Mode (By Willy-JL) @@ -245,6 +245,7 @@ $ ./fbt dolphin_ext - SubGHz: [Transmit Indicator before Out of Region Frequency Use (By RogueMaster)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/e24d4a0689db555ae083fec23a471e878adb6cd4) - SubGHz: USE CFW Settings to use unlock from SD flag from [(cloudbreakdaniel)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/97db0dc91ee3dff812b4dec0618e3f198de14405). Update `subghz/assets/extend_range.txt` with [this file](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/blob/420/assets/resources/subghz/assets/extend_range.txt) on SD. **UPDATE IGNORE FLAG TO TRUE TO UNLEASH YOUR FLIPPER!!** - SubGHz: [X10 Protocol Decoder (By CodeAllNight/jamisonderek)](https://github.com/jamisonderek/flipper-zero-tutorials/tree/main/subghz/protocols/x10) +- [VGM: Custom color options (By HaxSam & Willy-JL)](https://github.com/RogueMaster/flipperzero-firmware-wPlugins/commit/93b532b4ebac931862369b286429b83a2c55d1bf) ## Games diff --git a/applications/settings/cfw_app/scenes/cfw_app_scene_misc_vgm.c b/applications/settings/cfw_app/scenes/cfw_app_scene_misc_vgm.c index 32f866afe78..68420094bf1 100644 --- a/applications/settings/cfw_app/scenes/cfw_app_scene_misc_vgm.c +++ b/applications/settings/cfw_app/scenes/cfw_app_scene_misc_vgm.c @@ -14,6 +14,7 @@ void cfw_app_scene_misc_vgm_var_item_list_callback(void* context, uint32_t index const char* const colors_names[VgmColorModeCount] = { "Default", "Custom", + "Rainbow", "RGB Backlight", }; static void cfw_app_scene_misc_vgm_colors_changed(VariableItem* item) { diff --git a/lib/cfw/cfw.h b/lib/cfw/cfw.h index a0204b9e4b3..eacf2a4413c 100644 --- a/lib/cfw/cfw.h +++ b/lib/cfw/cfw.h @@ -41,6 +41,7 @@ typedef enum { typedef enum { VgmColorModeDefault, VgmColorModeCustom, + VgmColorModeRainbow, VgmColorModeRgbBacklight, VgmColorModeCount, } VgmColorMode;