This commit is contained in:
@@ -1,4 +1,8 @@
|
|||||||
# Changelog
|
# 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
|
## Version v0.2.0
|
||||||
### Features
|
### Features
|
||||||
|
|||||||
@@ -1496,3 +1496,15 @@ Release script fails because the runner's hashlib module has no file_digest attr
|
|||||||
|
|
||||||
### Assistant outcome
|
### 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.
|
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.
|
||||||
|
|||||||
@@ -268,6 +268,8 @@
|
|||||||
246. Update changelog and VIBE
|
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
|
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.
|
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
|
## Future entries
|
||||||
|
|
||||||
|
|||||||
@@ -154,6 +154,8 @@ body::selection {
|
|||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
content: '';
|
content: '';
|
||||||
transform: rotate(-12deg);
|
transform: rotate(-12deg);
|
||||||
|
/* decorative only: must not swallow clicks on the toolbar selects underneath */
|
||||||
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.site-header h1,
|
.site-header h1,
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"version": "0.2.0"
|
"version": "0.2.1"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user