From 95bf1e5820fe3598211baac2cebb78f650992b79 Mon Sep 17 00:00:00 2001 From: Art Malanok Date: Fri, 29 May 2026 14:14:52 -0700 Subject: [PATCH] 0.1.7: remove text-decoration to clear Obsidian scorecard warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The scorecard flags the text-decoration property at the property level — every value trips it. 0.1.6 switched longhand -> shorthand and was still flagged. Removed the .ot-task-row.completing strikethrough rule entirely; completion is already conveyed by the opacity fade + collapse. Co-authored-by: Isaac --- manifest.json | 2 +- styles.css | 4 ---- versions.json | 3 ++- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/manifest.json b/manifest.json index 78ebe52..56ec63f 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "minimal-task-board", "name": "Minimal Task Board", - "version": "0.1.6", + "version": "0.1.7", "minAppVersion": "1.10.0", "description": "A clean, minimal task board with customizable buckets, secondary grouping, and inline task tracking.", "author": "Art Malanok", diff --git a/styles.css b/styles.css index 2661761..81100dd 100644 --- a/styles.css +++ b/styles.css @@ -305,10 +305,6 @@ /* ============================================================ COMPLETION ANIMATION ============================================================ */ -.ot-task-row.completing .ot-action { - text-decoration: line-through var(--text-muted); -} - .ot-task-row.completing { opacity: 0.4; transition: opacity 300ms ease; diff --git a/versions.json b/versions.json index 7f78196..b2e3107 100644 --- a/versions.json +++ b/versions.json @@ -5,5 +5,6 @@ "0.1.3": "1.10.0", "0.1.4": "1.10.0", "0.1.5": "1.10.0", - "0.1.6": "1.10.0" + "0.1.6": "1.10.0", + "0.1.7": "1.10.0" }