diff --git a/CHANGELOG.md b/CHANGELOG.md index 446907b46..43e71bf2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,9 @@ ### New changes -* [EM4100] RFID Fuzzer / FlipFrid plugin - upgrade (by @Ganapati & some fixes by @xMasterX) (PRs #54 #55) -* Updated universal remote assets (by @Amec0e) -* Arkanoid, TicTacToe, Barcode generator plugins excluded from releases to save space, you can enable it in `applications\meta` for your builds -* Moved Music Player to Games menu -* OFW: NFC collect params for mfkey32 attack & Fix iso14443-4 (DESFire) UID emulation -* OFW: IR CLI Decode Command -* OFW: SubGhz: add protocol Clemsa, fix decoder BETT -* OFW: LF RFID - Keri, Gallagher protocols support -* OFW: Other small changes +* WAV Player, Arkanoid, TicTacToe, Barcode generator - plugins enabled and included in releases again +* Debug apps disabled in release build +* WAV Player moved to Games menu +* OFW: Lib: update LFS to v2.5.0, lower update free page limit + **Note: To avoid issues prefer installing using web updater or by self update package, all needed assets will be installed** diff --git a/ReadMe.md b/ReadMe.md index ffedcad5b..ac89674cd 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -60,8 +60,8 @@ See changelog in releases for latest updates! - ESP8266 Deauther plugin [(by SequoiaSan)](https://github.com/SequoiaSan/FlipperZero-Wifi-ESP8266-Deauther-Module) - WiFi Scanner plugin [(by SequoiaSan)](https://github.com/SequoiaSan/FlipperZero-WiFi-Scanner_Module) - MultiConverter plugin [(by theisolinearchip)](https://github.com/theisolinearchip/flipperzero_stuff) -- `Excluded from releases` - WAV player plugin (fixed) [(OFW: DrZlo13)](https://github.com/flipperdevices/flipperzero-firmware/tree/zlo/wav-player) -- `Excluded from releases` - UPC-A Barcode generator plugin [(by McAzzaMan)](https://github.com/McAzzaMan/flipperzero-firmware/tree/UPC-A_Barcode_Generator/applications/barcode_generator) +- WAV player plugin (fixed) [(OFW: DrZlo13)](https://github.com/flipperdevices/flipperzero-firmware/tree/zlo/wav-player) +- UPC-A Barcode generator plugin [(by McAzzaMan)](https://github.com/McAzzaMan/flipperzero-firmware/tree/UPC-A_Barcode_Generator/applications/barcode_generator) - GPIO: Sentry Safe plugin [(by H4ckd4ddy)](https://github.com/H4ckd4ddy/flipperzero-sentry-safe-plugin) - ESP32: WiFi Marauder companion plugin [(by 0xchocolate)](https://github.com/0xchocolate/flipperzero-firmware-with-wifi-marauder-companion) - NRF24: Sniffer & MouseJacker (with changes) [(by mothball187)](https://github.com/mothball187/flipperzero-nrf24/tree/main/mousejacker) @@ -69,8 +69,8 @@ See changelog in releases for latest updates! - UniversalRF Remix / Sub-GHz Remote [(by ESurge)](https://github.com/ESurge/flipperzero-firmware-unirfremix)[(updated and all protocol support added by darmiel & xMasterX)](https://github.com/darmiel/flipper-playlist/tree/feat/unirf-protocols) - Tetris (with fixes) [(by jeffplang)](https://github.com/jeffplang/flipperzero-firmware/tree/tetris_game/applications/tetris_game) - Spectrum Analyzer (with changes) [(by jolcese)](https://github.com/jolcese/flipperzero-firmware/tree/spectrum/applications/spectrum_analyzer) - [Ultra Narrow mode & scan channels non-consecutively](https://github.com/theY4Kman/flipperzero-firmware/commits?author=theY4Kman) -- `Excluded from releases` - Arkanoid (with fixes) [(by gotnull)](https://github.com/gotnull/flipperzero-firmware-wPlugins) -- `Excluded from releases` - Tic Tac Toe (with fixes) [(by gotnull)](https://github.com/gotnull/flipperzero-firmware-wPlugins) +- Arkanoid (with fixes) [(by gotnull)](https://github.com/gotnull/flipperzero-firmware-wPlugins) +- Tic Tac Toe (with fixes) [(by gotnull)](https://github.com/gotnull/flipperzero-firmware-wPlugins) ### Other changes diff --git a/applications/meta/application.fam b/applications/meta/application.fam index 0fb5e1cd3..f12249642 100644 --- a/applications/meta/application.fam +++ b/applications/meta/application.fam @@ -46,8 +46,9 @@ App( provides=[ "snake_game", "tetris_game", - #"arkanoid_game", - #"tictactoe_game", + "arkanoid_game", + "tictactoe_game", + "wav_player", ], ) @@ -68,14 +69,13 @@ App( apptype=FlipperAppType.METAPACKAGE, provides=[ "picopass", - #"barcode_generator", + "barcode_generator", "mouse_jacker", "nrf_sniff", "sentry_safe", "wifi_marauder", "esp8266_deauth", "wifi_scanner", - #"wav_player", "multi_converter", "flipfrid", ], diff --git a/applications/music_player/application.fam b/applications/music_player/application.fam index f471a0598..9b57028ac 100644 --- a/applications/music_player/application.fam +++ b/applications/music_player/application.fam @@ -10,7 +10,7 @@ App( ], provides=["music_player_start"], stack_size=2 * 1024, - order=40, + order=45, ) App( diff --git a/applications/wav_player/application.fam b/applications/wav_player/application.fam index 9a1f48566..609c702f8 100644 --- a/applications/wav_player/application.fam +++ b/applications/wav_player/application.fam @@ -1,9 +1,9 @@ App( appid="wav_player", name="WAV Player", - apptype=FlipperAppType.PLUGIN, + apptype=FlipperAppType.GAME, entry_point="wav_player_app", cdefines=["APP_WAV_PLAYER"], stack_size=4 * 1024, - order=21, + order=46, ) diff --git a/fbt_options.py b/fbt_options.py index 4af585387..2289adc46 100644 --- a/fbt_options.py +++ b/fbt_options.py @@ -86,7 +86,7 @@ FIRMWARE_APPS = { # Custom Games "custom_games", # Debug - "debug_apps", + #"debug_apps", ], "unit_tests": [ "basic_services",