From 739b21609eb34515df99e14bf3dd03b23aa4f406 Mon Sep 17 00:00:00 2001 From: Legolas-2025 Date: Tue, 31 Mar 2026 21:32:19 +0200 Subject: [PATCH] Revise CHANGELOG for version 6.2.2 updates Fixed a bug causing blank lines in the display for current prices and hour. Updated logic to ensure rows always show relevant information. --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b226118..5157b65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project are documented here. +## v6.2.2 - Display blank lines issue fix (2026-03-31): + +**Summary** + +Fixed a bug where the display was showing blank lines + +### Problem: Sometimes rows 0 and 1 (current 15-min prices and current hour) were blank + +**Cause:** The "hour suppression" logic was hiding the current hour unexpectedly + +### Solution: + + - Row 1 (current hour) now ALWAYS shows - suppression logic only applies to rows 2-3 + - Row 0 (15-min details) also always shows for the current hour + --- ## v6.2.1 – Current Interval Fix (2026‑03‑29)