From bb7f7324cdd90836c585b50bb19bcddc7a1160db Mon Sep 17 00:00:00 2001 From: "Beau Beauchamp, WebTigers" Date: Mon, 24 Aug 2026 16:55:00 -0400 Subject: [PATCH] chore: release v1.0.1 (MediaField i18n + a11y) Co-Authored-By: Claude Opus 4.8 --- CHANGELOG.md | 12 ++++++++++++ library/Tiger/Version.php | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fbf486..5d81e86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,18 @@ All notable changes to **Tiger Core** (`webtigers/tiger-core`). Format follows ## [Unreleased] +## [1.0.1] — 2026-08-24 + +### Fixed +- **`Tiger_View_Helper_MediaField` rendered hardcoded English (#183).** "Choose media" and "Clear" + stayed English in every locale — visible three times over, since the helper now backs Site + Identity, the CMS page editor and the SEO screen. Translated via a fail-soft lookup (the `t` view + helper → the registry translator → the English literal), because the helper is also instantiated + bare, with no view and no translator, in tests. 4 keys x 6 locales. +- **Accessibility, in the same helper:** the preview `` carried `alt=""` although it conveys + *which* media is selected; it now has real alt text, and the non-image tile gets a `title` plus a + `visually-hidden` label with an `aria-hidden` icon. + ## [1.0.0] — 2026-08-24 **Tiger 1.0.** The framework and the `webtigers/tiger` skeleton both ship as `1.0.0` on Packagist. diff --git a/library/Tiger/Version.php b/library/Tiger/Version.php index 277e025..8954761 100644 --- a/library/Tiger/Version.php +++ b/library/Tiger/Version.php @@ -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.0.0'; + const VERSION = '1.0.1'; }