Conversation
- Clear body overflow when HTMX navigates away from settings via app-content swap, preventing the page from staying scroll-locked after clicking the modal's help link (#267) - Defer showModal() until form content is loaded so the modal animates in fully populated on mobile, not compact-then-expanding - Replace per-card opacity-0 flash animation on dashboard with a single container-level entrance matching shell-content-enter parameters (opacity 0.65->1, 4px translate, 180ms)
This was referenced Mar 21, 2026
alexlebens
pushed a commit
to alexlebens/infrastructure
that referenced
this pull request
Mar 21, 2026
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [av1155/houndarr](https://github.com/av1155/houndarr) | minor | `v1.5.0` → `v1.6.0` | | [ghcr.io/av1155/houndarr](https://github.com/av1155/houndarr) | minor | `v1.5.0` → `v1.6.0` | --- ### Release Notes <details> <summary>av1155/houndarr (av1155/houndarr)</summary> ### [`v1.6.0`](https://github.com/av1155/houndarr/releases/tag/v1.6.0) [Compare Source](av1155/houndarr@v1.5.0...v1.6.0) ##### Added - Opt-in upgrade search pass that periodically re-searches library items which already have a file and meet the quality cutoff, giving each `*arr` instance a chance to find better releases; each instance has independent batch size, cooldown, and hourly cap controls ([#​266](av1155/houndarr#266)). ##### Changed - A 3-second pause is now inserted between consecutive real searches within the same cycle to spread downstream indexer fan-out; the delay applies only to dispatched searches, not to skipped or errored items ([#​272](av1155/houndarr#272)). ##### Fixed - Navigating to the settings help page via the "What do these settings mean?" link inside the instance modal no longer leaves the page scroll-locked until refresh ([#​268](av1155/houndarr#268)). - Instance modal on mobile no longer briefly appears compact before expanding; the dialog now animates in fully populated ([#​268](av1155/houndarr#268)). - Dashboard instance cards now enter with a smooth container-level fade that matches the shell animation instead of a per-card flash ([#​268](av1155/houndarr#268)). </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My41OS4yIiwidXBkYXRlZEluVmVyIjoiNDMuNTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiaW1hZ2UiXX0=--> Reviewed-on: https://gitea.alexlebens.dev/alexlebens/infrastructure/pulls/4962 Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net> Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #267
What changed
Three UI fixes in the settings modal and dashboard.
Scroll lock after modal navigation: The
htmx:afterSwaphandler in the settings page controller now resetsdocument.body.style.overflowwhen#app-contentis swapped. Previously, navigating to/settings/helpvia the modal's help link left the body overflow locked because the settings page controller's listener never handledapp-contentswaps.Mobile modal compact-then-expand:
showModal()is now deferred until the HTMX form response lands in#add-instance-modal-content. ApendingModalShowflag is set on click and consumed inhtmx:afterSwap, so the dialog animates in fully populated. Error and send-error handlers reset the flag on network failure. Previously,showModal()was called immediately on click, so the modal opened near-empty and then grew as the form loaded.Dashboard card entrance: Per-card
opacity: 0animations are replaced by a single container-level animation on#instance-gridthat fires only on initial hydration. The newinstance-grid-enterkeyframe matchesshell-content-enterexactly:opacity: 0.65 → 1,translateY(4px) → 0, 180ms with station easing. Subsequent 15s poll swaps skip the animation entirely.Checklist