(entry)
| 14302 | } |
| 14303 | |
| 14304 | function formatPwnModeLabel(mode) { |
| 14305 | return mode === 'pwnagotchi' ? 'Pwnagotchi' : 'Ragnar'; |
| 14306 | } |
| 14307 | |
| 14308 | function formatPwnPhaseLabel(phase) { |
| 14309 | if (!phase) { |
| 14310 | return 'Idle'; |
| 14311 | } |
| 14312 | return phase.replace(/_/g, ' ').replace(/\b\w/g, char => char.toUpperCase()); |
| 14313 | } |
| 14314 | |
| 14315 | async function runPwnInstaller(kind) { |
| 14316 | // kind: 'install' | 'repair' | 'reinstall' |
| 14317 | if (pwnStatus.installing) { |
| 14318 | addConsoleMessage('Pwnagotchi installer already running', 'warning'); |
| 14319 | return; |
| 14320 | } |
| 14321 |
no test coverage detected