From e4f023696e1f823ecaedcae3d0d1fa0a45e42ff8 Mon Sep 17 00:00:00 2001
From: rzmk <30333942+rzmk@users.noreply.github.com>
Date: Sat, 20 Sep 2025 15:51:54 -0400
Subject: [PATCH] chore: mention issues with deb/rpm packages
---
src/components/Hero.jsx | 20 ++++++++++++--------
1 file changed, 12 insertions(+), 8 deletions(-)
diff --git a/src/components/Hero.jsx b/src/components/Hero.jsx
index cfec58f..37441c4 100644
--- a/src/components/Hero.jsx
+++ b/src/components/Hero.jsx
@@ -44,14 +44,14 @@ export const Hero = () => {
// `qsv.pro_${version}_aarch64.dmg`,
],
linux: [
- [
- "Linux (x86_64, deb)",
- `qsv.pro_${version}_amd64.deb`,
- ],
- [
- "Linux (x86_64, rpm)",
- `qsv.pro-${version}-1.x86_64.rpm`,
- ],
+ // [
+ // "Linux (x86_64, deb)",
+ // `qsv.pro_${version}_amd64.deb`,
+ // ],
+ // [
+ // "Linux (x86_64, rpm)",
+ // `qsv.pro-${version}-1.x86_64.rpm`,
+ // ],
[
"Linux (x86_64, AppImage)",
`qsv.pro_${version}_amd64.AppImage`,
@@ -185,6 +185,10 @@ export const Hero = () => {
>
)
)}
+ {platform === "linux" && <>
+
+ We are currently resolving issues with the deb and rpm packages.
+ >}
)
)}