website: hide older releases before 4.0.2

This commit is contained in:
Kingkor Roy Tirtho 2025-08-04 13:06:44 +06:00
parent ee7d0cfeb5
commit f228937e3e

View File

@ -95,7 +95,12 @@ export default function ReleasesSection() {
repo: "spotube", repo: "spotube",
}).then((res) => { }).then((res) => {
setReleases(res.data); setReleases(
res.data.filter((release) => {
// Ignore all releases that were published before March 18 2025
return new Date(release.published_at ?? new Date()) >= new Date("2025-03-18T00:00:00Z");
})
);
}) })
}, []) }, [])