From e8ef85fb27d412ed37bdea572922e0ecaef609e8 Mon Sep 17 00:00:00 2001 From: Brightwav3 Date: Sun, 14 Jun 2026 13:32:40 +0200 Subject: [PATCH] Release 1.2.1: fix CSS lint !important and screenshot in release - Remove all !important (bold/italic via specificity, cursor via --caret-color) - Add screenshot field to manifest.json so the preview resolves at the tagged release - Bump to 1.2.1 --- CHANGELOG.md | 8 ++++++++ README.md | 2 +- manifest.json | 5 +++-- theme.css | 10 ++++++---- 4 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 676ae44..4412bd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project are documented here. The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/). +## [1.2.1] - 2026-06-14 + +### Fixed +- Removed all `!important` declarations; bold and italic now win by selector + specificity, and the editor cursor is colored via the `--caret-color` variable. +- Added `screenshot.png` and a `screenshot` field to `manifest.json` so the theme + preview resolves during submission. + ## [1.2.0] - 2026-06-14 ### Changed diff --git a/README.md b/README.md index ecdfc21..15d203b 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Coding Agent reskins the entire chrome (titlebar, tabs, sidebar, file tree, stat ![Coding Agent — Claude Code look (dark)](screenshot.png) -![Version](https://img.shields.io/badge/version-1.2.0-d97757) +![Version](https://img.shields.io/badge/version-1.2.1-d97757) ![Obsidian](https://img.shields.io/badge/Obsidian-1.0.0%2B-7c3aed) ![License](https://img.shields.io/badge/license-MIT-green) diff --git a/manifest.json b/manifest.json index 7c0e624..b14a373 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,8 @@ { "name": "Coding Agent", - "version": "1.2.0", + "version": "1.2.1", "minAppVersion": "1.0.0", "author": "Šimon Zelenka", - "authorUrl": "https://github.com/Brightwav3" + "authorUrl": "https://github.com/Brightwav3", + "screenshot": "screenshot.png" } diff --git a/theme.css b/theme.css index 5f73de7..03b6bdb 100644 --- a/theme.css +++ b/theme.css @@ -87,6 +87,8 @@ settings: --radius-s: calc(var(--cc-radius) - 3px); --radius-m: var(--cc-radius); --radius-l: calc(var(--cc-radius) + 3px); + + --caret-color: var(--cc-coral); } /* -------------------------------------------------------------------------- @@ -365,10 +367,12 @@ body { --nav-indentation-guide-color: transparent; } body { --bold-color: var(--cc-coral); --italic-color: var(--cc-coral); } .markdown-rendered strong, .markdown-rendered b, -.cm-s-obsidian .cm-strong { color: var(--cc-coral) !important; } +.markdown-preview-view strong, +.cm-s-obsidian .cm-strong { color: var(--cc-coral); } .markdown-rendered em, .markdown-rendered i, -.cm-s-obsidian .cm-em { color: var(--cc-coral) !important; } +.markdown-preview-view em, +.cm-s-obsidian .cm-em { color: var(--cc-coral); } /* Color-coded heading ladder in both reading view and Live Preview */ .markdown-rendered h1, .cm-s-obsidian .HyperMD-header-1, .cm-s-obsidian .cm-header-1 { color: var(--h1-color); } @@ -399,8 +403,6 @@ body { --bold-color: var(--cc-coral); --italic-color: var(--cc-coral); } border-radius: var(--radius-m); } -.cm-cursor, .cm-cursor-primary { border-left: 2px solid var(--cc-coral) !important; } - .cm-s-obsidian .cm-link, .cm-s-obsidian .cm-url, .markdown-rendered a { color: var(--cc-coral); text-decoration: none; }