From 7bd5325b0106c998b29d2baa3757a0aed6383a85 Mon Sep 17 00:00:00 2001
From: rzmk <30333942+rzmk@users.noreply.github.com>
Date: Mon, 22 Sep 2025 10:47:10 -0400
Subject: [PATCH] feat: add deb and rpm
---
src/components/Hero.jsx | 20 ++++++++------------
1 file changed, 8 insertions(+), 12 deletions(-)
diff --git a/src/components/Hero.jsx b/src/components/Hero.jsx
index 37441c4..cfec58f 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,10 +185,6 @@ export const Hero = () => {
>
)
)}
- {platform === "linux" && <>
-
- We are currently resolving issues with the deb and rpm packages.
- >}
)
)}