File tree Expand file tree Collapse file tree
src/com/bpmct/trmnl_nook_simple_touch Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33All notable changes to this project will be documented in this file.
44
5+ ## [ v0.12.2] - 2026-03-29
6+
7+ ### Fixed
8+ - ** Menu → Next no longer gets stuck on "Connecting..."** - Opening the menu and tapping Next was cancelling the WiFi connectivity wait mid-fetch.
9+
10+ ---
11+
512## [ v0.12.1] - 2026-03-29
613
714### Fixed
Original file line number Diff line number Diff line change @@ -573,7 +573,11 @@ protected void onPause() {
573573 refreshHandler .removeCallbacks (pendingWifiWarmupRunnable );
574574 pendingWifiWarmupRunnable = null ;
575575 }
576- cancelConnectivityWait ();
576+ // Only cancel connectivity wait if no fetch is in progress — otherwise
577+ // a menu dismiss (onPause/onResume) would kill a "Connecting..." wait mid-fetch.
578+ if (!fetchInProgress ) {
579+ cancelConnectivityWait ();
580+ }
577581 }
578582
579583 @ Override
You can’t perform that action at this time.
0 commit comments