From 003ac5ef80dd8ebc404e51d11b6f15bc62042c0a Mon Sep 17 00:00:00 2001 From: Martinski4GitHub <119833648+Martinski4GitHub@users.noreply.github.com> Date: Thu, 20 Nov 2025 00:24:10 -0800 Subject: [PATCH] Minor code improvement. Just a minor code improvement. --- README.md | 4 ++-- uiScribe.sh | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4c6cc19..7192b2d 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # uiScribe -## v1.4.9 -### Updated on 2025-Nov-07 +## v1.4.10 +### Updated on 2025-Nov-20 ## About uiScribe updates the System Log page to show log files created by Scribe (syslog-ng). Requires [**Scribe**](https://github.com/cynicastic/scribe) diff --git a/uiScribe.sh b/uiScribe.sh index f426808..398b266 100644 --- a/uiScribe.sh +++ b/uiScribe.sh @@ -13,7 +13,7 @@ ## Forked from https://github.com/jackyaz/uiScribe ## ## ## ######################################################## -# Last Modified: 2025-Nov-04 +# Last Modified: 2025-Nov-16 #------------------------------------------------------- ########### Shellcheck directives ########## @@ -29,8 +29,8 @@ ### Start of script variables ### readonly SCRIPT_NAME="uiScribe" -readonly SCRIPT_VERSION="v1.4.9" -readonly SCRIPT_VERSTAG="25110422" +readonly SCRIPT_VERSION="v1.4.10" +readonly SCRIPT_VERSTAG="25111620" SCRIPT_BRANCH="develop" SCRIPT_REPO="https://raw.githubusercontent.com/AMTM-OSR/$SCRIPT_NAME/$SCRIPT_BRANCH" readonly SCRIPT_DIR="/jffs/addons/$SCRIPT_NAME.d" @@ -645,7 +645,7 @@ _Check_WebGUI_Page_Exists_() if [ ! -s "$scriptPageFilePath" ] || \ [ ! -s "$wwwWebPageFilePath" ] || \ - ! diff "$scriptPageFilePath" "$wwwWebPageFilePath" >/dev/null 2>&1 + ! diff -q "$scriptPageFilePath" "$wwwWebPageFilePath" >/dev/null 2>&1 then return 1 fi