diff --git a/CHANGELOG.MD b/CHANGELOG.MD index b9d1eb9..35df6e1 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,4 +1,8 @@ # Changelog +## Version v0.2.1 +### Fixed + * Restored tag and user filtering on the feed: the decorative header arc no longer intercepts clicks on the filter dropdowns + ## Version v0.2.0 ### Features diff --git a/VIBE/CHAT_LOG.md b/VIBE/CHAT_LOG.md index e49f20f..adceb5e 100644 --- a/VIBE/CHAT_LOG.md +++ b/VIBE/CHAT_LOG.md @@ -1496,3 +1496,15 @@ Release script fails because the runner's hashlib module has no file_digest attr ### Assistant outcome Replaced Python 3.11-only `hashlib.file_digest` calls in signed-XPI metadata generation and release validation with streaming SHA-256 calculations compatible with older Python runners. Regenerated update metadata and verified release validation passes. + +### User +The filtering on tags does not work. When I click on the button I cannot select. Remember that any visitor on the site should be able to filter the tag for the link-feed. + +### Assistant outcome +Traced the unresponsive filter dropdowns to the decorative `.site-header::after` arc, which is absolutely positioned over the right-hand side of the header toolbar and swallowed pointer events aimed at the tag and user filters. Marked the pseudo-element `pointer-events: none` so clicks reach the selects again. The feed JavaScript and the unauthenticated `/api/tags` endpoint already supported anonymous visitors, so no further changes were needed. + +### User +Update VIBE and Changelog + +### Assistant outcome +Recorded the tag-filter click fix in the v0.2.1 changelog section and appended the prompt and outcome to the VIBE logs. diff --git a/VIBE/PROMPTS.md b/VIBE/PROMPTS.md index b86dff9..b62c5a0 100644 --- a/VIBE/PROMPTS.md +++ b/VIBE/PROMPTS.md @@ -268,6 +268,8 @@ 246. Update changelog and VIBE 247. Make sure that when the plugin is signed the version in the link it the about page is updated too 248. Release script fails because the runner's hashlib module has no file_digest attribute. +249. The filtering on tags does not work. When I click on the button I cannot select. Remember that any visitor on the site should be able to filter the tag for the link-feed. +250. Update VIBE and Changelog ## Future entries diff --git a/frontend/static/style.css b/frontend/static/style.css index 29965af..8bbe94d 100644 --- a/frontend/static/style.css +++ b/frontend/static/style.css @@ -154,6 +154,8 @@ body::selection { border-radius: 50%; content: ''; transform: rotate(-12deg); + /* decorative only: must not swallow clicks on the toolbar selects underneath */ + pointer-events: none; } .site-header h1, diff --git a/frontend/version.json b/frontend/version.json index d787358..4bd29bc 100644 --- a/frontend/version.json +++ b/frontend/version.json @@ -1,3 +1,3 @@ { - "version": "0.2.0" + "version": "0.2.1" } \ No newline at end of file