From 535b4b43f915e3b37c99ce1e63701272ffe6978e Mon Sep 17 00:00:00 2001
From: rootzoll <christian@geektank.de>
Date: Thu, 17 Feb 2022 18:07:49 +0100
Subject: [PATCH] #2963 add note on touchscreen

---
 CHANGES.md                         | 1 +
 README.md                          | 2 ++
 home.admin/00settingsMenuBasics.sh | 2 +-
 3 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/CHANGES.md b/CHANGES.md
index cc97fd5a1..a10d196b6 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -34,6 +34,7 @@
 - Fixed: LND repair options, SEED+SCB and rescue-file restore, RESET options [issue](https://github.com/rootzoll/raspiblitz/issues/2832)
 - Info: All existing IP2Tor subscriptions need to be canceled & renewed to be functional again.
 - Info: 32GB sd card is now required (was already long time recommended on shopping list)
+- Info: Also the touchscreen graphical mode is not recommended to run at the moment - can make system unstable. This might take until v1.8.1 where the touchscreen will get a refactor/rewritwe.
 
 ## What's new in Version 1.7.1 of RaspiBlitz?
 
diff --git a/README.md b/README.md
index 43ed82c36..55efa7c10 100644
--- a/README.md
+++ b/README.md
@@ -655,6 +655,8 @@ It will enable 4 touch buttons on the left hand side of the screen.
 - Invoice - creates an Invoice-QR code that can be used for payments
 - Off - Shutdown or Restart the RaspiBlitz
 
+Please mind that the touchscreen is still experimental and with recent changes can make the system unstable. This might take still until v1.8.1 release where the touchscreen is planned for a refactor/rewrite.
+
 ##### LCD Rotate
 
 If you switch this on you can rotate the LCD of your RaspiBlitz 180 degrees.
diff --git a/home.admin/00settingsMenuBasics.sh b/home.admin/00settingsMenuBasics.sh
index 91c360476..59bd0ec68 100755
--- a/home.admin/00settingsMenuBasics.sh
+++ b/home.admin/00settingsMenuBasics.sh
@@ -111,7 +111,7 @@ OPTIONS=()
 
 # LCD options (only when running with LCD screen)
 if [ "${displayClass}" == "lcd" ]; then
-  OPTIONS+=(s 'Touchscreen' ${touchscreenMenu})
+  OPTIONS+=(s 'Touchscreen (unstable)' ${touchscreenMenu})
   OPTIONS+=(r 'LCD Rotate' ${lcdrotateMenu})
 fi