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
This commit is contained in:
Brightwav3 2026-06-14 13:32:40 +02:00
parent c9f632bd1f
commit e8ef85fb27
4 changed files with 18 additions and 7 deletions

View file

@ -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

View file

@ -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)

View file

@ -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"
}

View file

@ -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; }