Skip to content

Commit 84204a3

Browse files
committed
return some plugins back
1 parent 48691b2 commit 84204a3

File tree

6 files changed

+17
-21
lines changed

6 files changed

+17
-21
lines changed

CHANGELOG.md

+5-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
### New changes
2-
* [EM4100] RFID Fuzzer / FlipFrid plugin - upgrade (by @Ganapati & some fixes by @xMasterX) (PRs #54 #55)
3-
* Updated universal remote assets (by @Amec0e)
4-
* Arkanoid, TicTacToe, Barcode generator plugins excluded from releases to save space, you can enable it in `applications\meta` for your builds
5-
* Moved Music Player to Games menu
6-
* OFW: NFC collect params for mfkey32 attack & Fix iso14443-4 (DESFire) UID emulation
7-
* OFW: IR CLI Decode Command
8-
* OFW: SubGhz: add protocol Clemsa, fix decoder BETT
9-
* OFW: LF RFID - Keri, Gallagher protocols support
10-
* OFW: Other small changes
2+
* WAV Player, Arkanoid, TicTacToe, Barcode generator - plugins enabled and included in releases again
3+
* Debug apps disabled in release build
4+
* WAV Player moved to Games menu
5+
* OFW: Lib: update LFS to v2.5.0, lower update free page limit
6+
117

128
**Note: To avoid issues prefer installing using web updater or by self update package, all needed assets will be installed**
139

ReadMe.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,17 @@ See changelog in releases for latest updates!
6060
- ESP8266 Deauther plugin [(by SequoiaSan)](https://github.com/SequoiaSan/FlipperZero-Wifi-ESP8266-Deauther-Module)
6161
- WiFi Scanner plugin [(by SequoiaSan)](https://github.com/SequoiaSan/FlipperZero-WiFi-Scanner_Module)
6262
- MultiConverter plugin [(by theisolinearchip)](https://github.com/theisolinearchip/flipperzero_stuff)
63-
- `Excluded from releases` - WAV player plugin (fixed) [(OFW: DrZlo13)](https://github.com/flipperdevices/flipperzero-firmware/tree/zlo/wav-player)
64-
- `Excluded from releases` - UPC-A Barcode generator plugin [(by McAzzaMan)](https://github.com/McAzzaMan/flipperzero-firmware/tree/UPC-A_Barcode_Generator/applications/barcode_generator)
63+
- WAV player plugin (fixed) [(OFW: DrZlo13)](https://github.com/flipperdevices/flipperzero-firmware/tree/zlo/wav-player)
64+
- UPC-A Barcode generator plugin [(by McAzzaMan)](https://github.com/McAzzaMan/flipperzero-firmware/tree/UPC-A_Barcode_Generator/applications/barcode_generator)
6565
- GPIO: Sentry Safe plugin [(by H4ckd4ddy)](https://github.com/H4ckd4ddy/flipperzero-sentry-safe-plugin)
6666
- ESP32: WiFi Marauder companion plugin [(by 0xchocolate)](https://github.com/0xchocolate/flipperzero-firmware-with-wifi-marauder-companion)
6767
- NRF24: Sniffer & MouseJacker (with changes) [(by mothball187)](https://github.com/mothball187/flipperzero-nrf24/tree/main/mousejacker)
6868
- Simple Clock (fixed) [(Original by CompaqDisc)](https://gist.github.com/CompaqDisc/4e329c501bd03c1e801849b81f48ea61)
6969
- 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)
7070
- Tetris (with fixes) [(by jeffplang)](https://github.com/jeffplang/flipperzero-firmware/tree/tetris_game/applications/tetris_game)
7171
- 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)
72-
- `Excluded from releases` - Arkanoid (with fixes) [(by gotnull)](https://github.com/gotnull/flipperzero-firmware-wPlugins)
73-
- `Excluded from releases` - Tic Tac Toe (with fixes) [(by gotnull)](https://github.com/gotnull/flipperzero-firmware-wPlugins)
72+
- Arkanoid (with fixes) [(by gotnull)](https://github.com/gotnull/flipperzero-firmware-wPlugins)
73+
- Tic Tac Toe (with fixes) [(by gotnull)](https://github.com/gotnull/flipperzero-firmware-wPlugins)
7474

7575
### Other changes
7676

applications/meta/application.fam

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ App(
4646
provides=[
4747
"snake_game",
4848
"tetris_game",
49-
#"arkanoid_game",
50-
#"tictactoe_game",
49+
"arkanoid_game",
50+
"tictactoe_game",
51+
"wav_player",
5152
],
5253
)
5354

@@ -68,14 +69,13 @@ App(
6869
apptype=FlipperAppType.METAPACKAGE,
6970
provides=[
7071
"picopass",
71-
#"barcode_generator",
72+
"barcode_generator",
7273
"mouse_jacker",
7374
"nrf_sniff",
7475
"sentry_safe",
7576
"wifi_marauder",
7677
"esp8266_deauth",
7778
"wifi_scanner",
78-
#"wav_player",
7979
"multi_converter",
8080
"flipfrid",
8181
],

applications/music_player/application.fam

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ App(
1010
],
1111
provides=["music_player_start"],
1212
stack_size=2 * 1024,
13-
order=40,
13+
order=45,
1414
)
1515

1616
App(
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
App(
22
appid="wav_player",
33
name="WAV Player",
4-
apptype=FlipperAppType.PLUGIN,
4+
apptype=FlipperAppType.GAME,
55
entry_point="wav_player_app",
66
cdefines=["APP_WAV_PLAYER"],
77
stack_size=4 * 1024,
8-
order=21,
8+
order=46,
99
)

fbt_options.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
# Custom Games
8787
"custom_games",
8888
# Debug
89-
"debug_apps",
89+
#"debug_apps",
9090
],
9191
"unit_tests": [
9292
"basic_services",

0 commit comments

Comments
 (0)