Releases: newfpv/display-password
Releases · newfpv/display-password
Release list
2.0.1 Hotfix
v2.0.1 Hotfix
This is a critical stability update to fix issues where the plugin would fail to appear on the display under certain conditions.
🔧 Fixed in this version:
- Fixed UI Loading Crash (KeyError): Resolved an issue where the plugin would crash if the
orientationsetting was missing fromconfig.toml. It now safely defaults tohorizontal. - Improved Display Compatibility (AttributeError): Fixed a bug where the plugin would crash on older firmware when checking for newer Waveshare v3 or v4 displays.
- Bulletproof Logic: Implemented safe attribute checking (
getattr) for display detection, ensuring the plugin works across all Pwnagotchi firmware versions (Jayofelony, Aluminum-Ice, and legacy images).
⚙️ Recommended Config:
If you haven't already, you can now explicitly set your orientation, but it is no longer required for the plugin to load:
main.plugins.display-password.orientation = "horizontal"v2.0.0 - Initial Advanced Release
DisplayPassword v2.0.0
🚀 Initial Release of the Advanced Fork
This is the first official release of the completely overhauled Pwnagotchi plugin. This fork transforms a simple log reader into a powerful, intelligent password aggregator.
✨ What's New:
- Multi-Source Aggregation: Simultaneous support for
wpa-sec,onlinehashcrack(OHC), and better_quickdic. - Smart Sorting: The plugin now compares file modification times (
mtime) to ensure the absolute newest cracked password is always displayed. - Modularity: Added the ability to enable or disable specific scanning sources directly in your
config.toml. - Smart Truncation: If a string is too long for the screen, it truncates only the ESSID and adds a dot (
.), keeping the password fully visible (e.g.,LongNetworkName.:password123). - Pure Python: Completely removed unstable
awkandtailsystem calls. Native Python parsing means lower CPU usage and zero UI-breaking tracebacks.
⚙️ Configuration Example:
Add this to your config.toml:
main.plugins.display-password.enabled = true
main.plugins.display-password.wpa_sec = true
main.plugins.display-password.ohc = true
main.plugins.display-password.better_quickdic = true
main.plugins.display-password.max_length = 22