From f07cca6df2efcaa70b2476cde498c4879831dfd8 Mon Sep 17 00:00:00 2001 From: "Arnaud G. GIBERT" Date: Sat, 14 Feb 2026 19:59:00 +0100 Subject: [PATCH] - Add line shading in isl_dump_html function. --- Dockerfile | 11 ++++++++--- ReadMe.txt | 1 + ReleaseNotes.txt | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 84dd244..9fc33a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -101,7 +101,7 @@ isl_add() return 1 \n\ fi \n\ \n\ - ts=$(date -u +"%Y/%d/%m %H:%M:%S") \n\ + ts=$(date -u +"%Y/%m/%d %H:%M:%S") \n\ \n\ if [[ ! -e ${ISL_FILE} ]] \n\ then \n\ @@ -182,7 +182,12 @@ isl_html_dump() do \n\ set $line \n\ \n\ - print "${i_flag}" " " \n\ + if [[ $(( $i % 2)) -eq 0 ]] \n\ + then \n\ + print "${i_flag}" ` ` \n\ + else \n\ + print "${i_flag}" " " \n\ + fi \n\ \n\ j=1 \n\ while [[ $j -lt 7 ]] \n\ @@ -198,7 +203,7 @@ isl_html_dump() done \n\ \n\ print "${i_flag}" " " \n\ - i=$(( $j + 1)) \n\ + i=$(( $i + 1)) \n\ done \n\ } \n\ \n\ diff --git a/ReadMe.txt b/ReadMe.txt index cbccf72..327a70a 100644 --- a/ReadMe.txt +++ b/ReadMe.txt @@ -20,6 +20,7 @@ Features: - Image stacking log support. + Enjoy it! Your Rx3 Team. diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index 9b91c66..404af0e 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -1,5 +1,5 @@ ------------------------------------------------------------------------------------------------------------------------------------ -Rx3-Docker/Base V 1.4.0 - A. GIBERT - 2026/02/14 +Rx3-Docker/Base V 1.4.0 - A. GIBERT - 2026/02/16 ------------------------------------------------------------------------------------------------------------------------------------ - Add Image Stacking Log functions,