Add extra symbol, upd readme, upd codeowners

This commit is contained in:
MX 2023-08-05 15:25:06 +03:00
parent c1438ce850
commit 49d2b31446
No known key found for this signature in database
GPG key ID: 7CCC66B7DBDD1C83
4 changed files with 7 additions and 3 deletions

2
.github/CODEOWNERS vendored
View file

@ -2,4 +2,4 @@
* @xMasterX
# Assets
/assets/resources/infrared/ @xMasterX @amec0e
/assets/resources/infrared/assets/ @amec0e @Leptopt1los @xMasterX

View file

@ -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)

View file

@ -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.

View file

@ -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 {