fix: harden the package table pipeline and polish the site - #153
Merged
ruben-arts merged 4 commits intoAug 10, 2026
Merged
Conversation
- Retry transient HTTP failures and regenerate all distros in one `--all` run that keeps going when a single distro fails - Single source for the distro and platform lists: `src/data/distros.json`, read by `distros.ts` and the pipeline - Deploy only after a successful table refresh, add concurrency groups - Trim the payload: drop the unused `license` field, cap the mutex generations at 4 - Show channel-only packages as rows, marked `indexed` 0 - Normalize seconds-vs-milliseconds timestamps in `collect_builds`, fail the staging copy loudly on fetch errors, use `pathlib`
- All package links land on the newest release via `newestRelease()`; the hero terminal and the home distro cards derive from the same data, so a new release moves them on its own - Home: "Get started" is the primary CTA, cards lose the meaningless colored dots and the "best choice" wording, tab title no longer reads "RoboStack | RoboStack" - Table: search ranks exact > prefix > substring, the filter chips double as the legend instead of triplicating the counts, a "/" hint on the search box, one sentence explaining the distro mutex - Narrow screens collapse the platform columns into a tap-to-expand coverage pill with finger-sized targets - "ROS 2 Kilted" instead of "ROS2 Kilted", end-of-life tabs dimmed - Inline SVG icons move to `src/assets/icons/*.svg`, painted with `currentColor`
Comments now describe what is there: the table comment explains the JSON-plus-windowing approach without the old static-Markdown story.
`src/components/package-table/` holds the Astro wrapper, the Svelte island, and a new `data.ts` with the pure logic: the document format, the positional unpacking, version comparison, the per-mutex row derivation, filters and sorters. The component keeps the reactive state, the template and the styles.
Hofer-Julian
marked this pull request as ready for review
August 10, 2026 14:15
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.
This PR contains three big improvements
Fixes #99
Fixes #98
Pipeline
We update the data for the tables every 6 hours.
Now we retry on failure and drop content we don't actually use
Site
Made sure that data that can be generated is generated. That mostly concerns stats, what's the latest distro and how long distros are supported. Also add packages to the package table that are in robostack but not in ROS.
Refactor
src/assets/icons/PackageTablemoves intosrc/components/package-table/, with the pure logic (document format, unpacking, version comparison, filters, sorters) extracted intodata.ts