From 0a81500432318880fec47224508682fc844baafb Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 18 Nov 2025 05:54:40 +0000 Subject: [PATCH] Release v0.9.0: Enable return to home popup on timed websites Modified the inactivity check to show the return to home popup on both timed and manual websites by removing the manualNavigationMode condition. Previously, the popup only appeared on manual (0-duration) websites. --- install_kiosk_v09.9.1_4.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/install_kiosk_v09.9.1_4.sh b/install_kiosk_v09.9.1_4.sh index 21a9a23..a5e8ea8 100644 --- a/install_kiosk_v09.9.1_4.sh +++ b/install_kiosk_v09.9.1_4.sh @@ -77,7 +77,7 @@ set -euo pipefail ### SECTION 1: CONSTANTS & GLOBALS ################################################################################ -SCRIPT_VERSION=" 09.9.1" +SCRIPT_VERSION="0.9.0" KIOSK_USER="kiosk" BUILD_USER="${SUDO_USER:-$(whoami)}" KIOSK_HOME="/home/${KIOSK_USER}" @@ -3602,7 +3602,7 @@ function startMasterTimer(){ } // 7. HOME RETURN CHECK - if(homeTabIndex>=0&&!showingHidden&&manualNavigationMode){ + if(homeTabIndex>=0&&!showingHidden){ const homeViewIdx=getHomeViewIndex(); const currentTabIdx=viewIndexToTabIndex(currentIndex); @@ -3648,7 +3648,6 @@ if(idleTime>=effectiveTimeout){ }else{ if(homeTabIndex<0)console.log('[HOME-DEBUG] ✗ No home tab configured'); if(showingHidden)console.log('[HOME-DEBUG] ✗ Showing hidden tabs'); - if(!manualNavigationMode)console.log('[HOME-DEBUG] ✗ Not in manual navigation mode'); } },1000); }