diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index e2283966b..33a9b8dba 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -2,4 +2,4 @@ * @xMasterX # Assets -/assets/resources/infrared/ @xMasterX @amec0e \ No newline at end of file +/assets/resources/infrared/assets/ @amec0e @Leptopt1los @xMasterX \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index dd2dbf9e5..f936411d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## New changes * SubGHz: Support for Ebyte E07 module power amp switch (works with TehRabbitt's Flux Capacitor Board) (by @Sil333033) (PR #559 by @Z3BRO) -> Remade by @xMasterX -> Driver code fixed and reworked by @gid9798 * Infrared: Update universal AC asset (by @Leptopt1los | PR #569) +* Plugins: Add * in NFC Maker keyboard (hold `.`) * Plugins: Update TOTP (Authenticator) [(by akopachov)](https://github.com/akopachov/flipper-zero_authenticator) * Plugins: Update ESP32: WiFi Marauder companion plugin [(by 0xchocolate)](https://github.com/0xchocolate/flipperzero-wifi-marauder) * Plugins: Update ESP32-CAM -> Camera Suite [(by CodyTolene)](https://github.com/CodyTolene/Flipper-Zero-Camera-Suite) -> (PR #562 by @CodyTolene) diff --git a/ReadMe.md b/ReadMe.md index 1cedb8b6c..40c81c3ba 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -114,9 +114,10 @@ Encoders made by @assasinfil & @xMasterX: The majority of this project is developed and maintained by me, @xMasterX. I'm unemployed, and the only income I receive is from your donations. Our team is small and the guys are working on this project as much as they can solely based on the enthusiasm they have for this project and the community. -- @assasinfil - SubGHz +- @gid9798 - SubGHz, Plugins, many other things +- @assasinfil - SubGHz protocols - @Svaarich - UI design and animations -- @Amec0e - Infrared assets +- @amec0e & @Leptopt1los - Infrared assets - Community moderators in Telegram, Discord, and Reddit - And of course our GitHub community. Your PRs are a very important part of this firmware and open-source development. diff --git a/applications/external/nfc_maker/nfc_maker_text_input.c b/applications/external/nfc_maker/nfc_maker_text_input.c index 64691b79c..e6beb1f22 100644 --- a/applications/external/nfc_maker/nfc_maker_text_input.c +++ b/applications/external/nfc_maker/nfc_maker_text_input.c @@ -238,6 +238,8 @@ static char char_to_uppercase(const char letter) { return 0x5C; } else if(letter == '\'') { return 0x60; + } else if(letter == '.') { + return 0x2A; } else if(char_is_lowercase(letter)) { return (letter - 0x20); } else {