From a2dcf2f072d1591aa9b835df599a1c25fe01882d Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Thu, 4 Jun 2026 17:24:07 -0500 Subject: [PATCH 1/2] fix: skip overlay background on solid colour and gradient hero modes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The overlay's semi-transparent background was covering the gradient, making it invisible. Color/gradient modes use controlled backgrounds that don't need an overlay for text readability — the card handles that. Overlay layout (flex positioning) is preserved. Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) --- src/tmpl/default.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/tmpl/default.php b/src/tmpl/default.php index 8720a9c..5c1b96d 100644 --- a/src/tmpl/default.php +++ b/src/tmpl/default.php @@ -62,7 +62,10 @@ $overlayDirections = [ 'gradient-right' => 'to right', ]; -if ($overlayType !== 'solid' && isset($overlayDirections[$overlayType])) { +// Skip overlay on solid colour/gradient modes — background is already a controlled design choice +if ($heroMode === 'color' || $heroMode === 'gradient') { + $overlayBg = ''; +} elseif ($overlayType !== 'solid' && isset($overlayDirections[$overlayType])) { $dir = $overlayDirections[$overlayType]; $overlayBg = "background: linear-gradient($dir, $rgbaTransparent, $rgbaOpaque);"; } else { -- 2.52.0 From a9399f9aefb25d0e118889a82b8420924349739c Mon Sep 17 00:00:00 2001 From: Jonathan Miller Date: Thu, 4 Jun 2026 17:26:45 -0500 Subject: [PATCH 2/2] docs: update changelog for 01.17 Authored-by: Moko Consulting Co-Authored-By: Claude Opus 4.6 (1M context) --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f40032e..d75159f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] +## [01.17] - 2026-06-04 + +### Added +- Download key support (`dlid`) in module manifest for update server authentication +- Auto-remove deprecated system plugin (`plg_system_mokojoomhero`) on install/upgrade + +### Fixed +- Skip overlay background on solid colour and gradient hero modes — gradient was invisible behind 50% black overlay + ## [01.14] - 2026-06-04 ### Changed -- 2.52.0