We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bf84ee commit a959ebdCopy full SHA for a959ebd
apps/site/util/download/constants.json
@@ -69,7 +69,7 @@
69
"label": "ARMv7",
70
"value": "armv7l",
71
"compatibility": {
72
- "semver": [">= 4.0.0"]
+ "semver": [">= 4.0.0", "< 24.0.0"]
73
}
74
},
75
{
apps/site/util/download/index.tsx
@@ -59,7 +59,7 @@ export const parseCompat = <
59
compatibility.installMethod.includes(installMethod),
60
!compatibility.platform || compatibility.platform.includes(platform),
61
!compatibility.semver ||
62
- compatibility.semver.some(semver => satisfies(version, semver)),
+ compatibility.semver.every(semver => satisfies(version, semver)),
63
!compatibility.releases ||
64
compatibility.releases.includes(release.status),
65
];
0 commit comments