Skip to content

Commit

Permalink
fixing fixes foxes foxing
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorcelli committed Oct 28, 2024
1 parent 8fbd66c commit 3644af6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ Also, [read our FAQ](https://github.com/pr3y/Bruce/wiki/FAQ)
| CYD-2432S028 | :ok: | :ok: | :ok: | :x: | :ok: | :x: | :ok: | :x: | :x: | :x: |


*LITE_MODE*: TelNet, SSH, DPWO, WireGuard, BLEBacon, BLEScan and OpenHaystack are NOT available for M5Launcher Compatibility
*LITE_MODE*: TelNet, SSH, DPWO, WireGuard, ScanHosts, RawSniffer, Brucegotchi, BLEBacon, BLEScan and OpenHaystack are NOT available for M5Launcher Compatibility

## :sparkles: Why and how does it look?

Expand Down
1 change: 1 addition & 0 deletions lib/M5GFX/src/lgfx/v1/LGFXBase.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -683,6 +683,7 @@ namespace lgfx
int32_t fontWidth(void) const { return (int32_t)(_font_metrics.width * _text_style.size_x); }
int32_t textLength(const char *string, int32_t width);
int32_t textWidth(const char *string) { return textWidth(string, _font); };
int32_t textWidth(const char *string, uint8_t size) { return textWidth(string, _font); };
int32_t textWidth(const char *string, const IFont* font);

[[deprecated("use IFont")]]
Expand Down
4 changes: 2 additions & 2 deletions src/core/menu_items/WifiMenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ void WifiMenu::optionsMenu() {
options.push_back({"TelNET", [=]() { telnet_setup(); }});
options.push_back({"SSH", [=]() { ssh_setup(); }});
options.push_back({"DPWO", [=]() { dpwo_setup(); }});
#endif
options.push_back({"Raw Sniffer", [=]() { sniffer_setup(); }});
#endif
options.push_back({"Evil Portal", [=]() { startEvilPortal(); }});
options.push_back({"Scan Hosts", [=]() { local_scan_setup(); }});
#ifndef LITE_VERSION
options.push_back({"Scan Hosts", [=]() { local_scan_setup(); }});
options.push_back({"Wireguard", [=]() { wg_setup(); }});
options.push_back({"Brucegotchi", [=]() { brucegotchi_start(); }});
#endif
Expand Down

0 comments on commit 3644af6

Please sign in to comment.