mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-22 21:01:40 +03:00
Add extra symbol, upd readme, upd codeowners
This commit is contained in:
parent
c1438ce850
commit
49d2b31446
2
.github/CODEOWNERS
vendored
2
.github/CODEOWNERS
vendored
@ -2,4 +2,4 @@
|
|||||||
* @xMasterX
|
* @xMasterX
|
||||||
|
|
||||||
# Assets
|
# Assets
|
||||||
/assets/resources/infrared/ @xMasterX @amec0e
|
/assets/resources/infrared/assets/ @amec0e @Leptopt1los @xMasterX
|
@ -1,6 +1,7 @@
|
|||||||
## New changes
|
## 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
|
* 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)
|
* 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 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: 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)
|
* Plugins: Update ESP32-CAM -> Camera Suite [(by CodyTolene)](https://github.com/CodyTolene/Flipper-Zero-Camera-Suite) -> (PR #562 by @CodyTolene)
|
||||||
|
@ -114,9 +114,10 @@ Encoders made by @assasinfil & @xMasterX:
|
|||||||
The majority of this project is developed and maintained by me, @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.
|
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.
|
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
|
- @Svaarich - UI design and animations
|
||||||
- @Amec0e - Infrared assets
|
- @amec0e & @Leptopt1los - Infrared assets
|
||||||
- Community moderators in Telegram, Discord, and Reddit
|
- 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.
|
- And of course our GitHub community. Your PRs are a very important part of this firmware and open-source development.
|
||||||
|
|
||||||
|
@ -238,6 +238,8 @@ static char char_to_uppercase(const char letter) {
|
|||||||
return 0x5C;
|
return 0x5C;
|
||||||
} else if(letter == '\'') {
|
} else if(letter == '\'') {
|
||||||
return 0x60;
|
return 0x60;
|
||||||
|
} else if(letter == '.') {
|
||||||
|
return 0x2A;
|
||||||
} else if(char_is_lowercase(letter)) {
|
} else if(char_is_lowercase(letter)) {
|
||||||
return (letter - 0x20);
|
return (letter - 0x20);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user