Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ All notable changes to **Tiger Core** (`webtigers/tiger-core`). Format follows

## [Unreleased]

## [1.3.1] — 2026-08-28

### Fixed
- **Solid primary buttons ignored the active skin.** Bootstrap 5.3 bakes the stock blue (`#0d6efd`)
into *both* primary button variants' component vars, so a skin swapping `--bs-primary` restyled
neither. `default.css` already rebound `.btn-outline-primary` to `var(--bs-primary)` — with a
comment describing exactly this trap — but `.btn-primary` never got the same treatment. Any screen
showing the two side by side drew one skin-coloured and one Bootstrap blue: orange-vs-blue under
bengal and tabby, navy-vs-blue under jaguar. It survived because two skins hid it — puma's primary
is already blue-ish, and cheetah carries its own hardcoded solid rule.
- Both variants now follow the token. Hover/active darken via `color-mix`, each preceded by a plain
`var()` fallback, so a browser without `color-mix` degrades to a flat skin-coloured hover rather
than back to blue.
- The explanatory comment sits with the rules it documents again — a later `.cell-emphasis` addition
had been inserted between them, leaving it above the wrong block.

## [1.3.0] — 2026-08-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion library/Tiger/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
class Tiger_Version
{
/** Current Tiger Core version. Keep in lockstep with the git tag cut for a release. */
const VERSION = '1.3.0';
const VERSION = '1.3.1';
}
Loading