From caabf0087e17c8a5f79dcb1eba5481c9928bf9cc Mon Sep 17 00:00:00 2001 From: Phil Skentelbery Date: Wed, 19 Nov 2025 14:59:29 -0700 Subject: [PATCH] fix: Remove hidden attributes from h-app microformat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit h-app was invisible to IndieAuth parsers due to hidden and aria-hidden attributes, preventing proper client discovery. - Remove hidden and aria-hidden="true" from h-app div - Update version to 0.7.1 - Update CHANGELOG with fix details This provides backward compatibility for IndieAuth services that rely on h-app microformat parsing. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- CHANGELOG.md | 8 ++++++++ starpunk/__init__.py | 4 ++-- templates/base.html | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ffc824..189cc87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.1] - 2025-11-19 + +### Fixed +- **IndieAuth h-app Visibility**: Removed `hidden` and `aria-hidden="true"` attributes from h-app microformat markup + - h-app was invisible to IndieAuth parsers, preventing proper client discovery + - Now visible in DOM for microformat parsers while remaining non-intrusive in footer + - Provides backward compatibility for IndieAuth services that rely on h-app parsing + ## [0.7.0] - 2025-11-19 ### Added diff --git a/starpunk/__init__.py b/starpunk/__init__.py index 6be3d20..50ace8b 100644 --- a/starpunk/__init__.py +++ b/starpunk/__init__.py @@ -153,5 +153,5 @@ def create_app(config=None): # Package version (Semantic Versioning 2.0.0) # See docs/standards/versioning-strategy.md for details -__version__ = "0.7.0" -__version_info__ = (0, 7, 0) +__version__ = "0.7.1" +__version_info__ = (0, 7, 1) diff --git a/templates/base.html b/templates/base.html index 1a403bb..d845cca 100644 --- a/templates/base.html +++ b/templates/base.html @@ -46,7 +46,7 @@

StarPunk v{{ config.get('VERSION', '0.5.0') }}

-