fix(desktop): align website assets and linux package metadata

This commit is contained in:
Mohamed Boudra
2026-03-25 23:31:41 +07:00
parent 6d467d4659
commit 1768e2787f
4 changed files with 20 additions and 10 deletions

View File

@@ -31,6 +31,8 @@ linux:
category: Development
icon: assets
artifactName: "Paseo-${version}-${arch}.${ext}"
maintainer: "Mohamed Boudra <boudra.moha@gmail.com>"
vendor: "Paseo"
extraResources:
- from: bin/paseo
to: bin/paseo

View File

@@ -3,6 +3,16 @@
"version": "0.1.34",
"private": true,
"description": "Paseo desktop app (Electron wrapper)",
"homepage": "https://paseo.sh",
"repository": {
"type": "git",
"url": "https://github.com/getpaseo/paseo.git"
},
"author": {
"name": "Mohamed Boudra",
"email": "boudra.moha@gmail.com"
},
"license": "AGPL-3.0-or-later",
"main": "dist/main.js",
"scripts": {
"build": "npm --prefix ../.. run build:daemon && npm run build:main && electron-builder --config electron-builder.yml",

View File

@@ -3,6 +3,8 @@ import websitePackage from "../package.json";
export const desktopVersion = websitePackage.version;
export const releaseBase = `https://github.com/getpaseo/paseo/releases/download/v${desktopVersion}`;
export const macAppleSiliconDownloadUrl = `${releaseBase}/Paseo-${desktopVersion}-arm64.dmg`;
export const macIntelDownloadUrl = `${releaseBase}/Paseo-${desktopVersion}-x64.dmg`;
export const appStoreUrl = "https://apps.apple.com/app/paseo-pocket-engineer/id6758887924";
export const playStoreUrl = "https://play.google.com/store/apps/details?id=sh.paseo";
@@ -21,13 +23,13 @@ export const downloadOptions: DownloadOption[] = [
{
platform: "mac-silicon",
label: "Mac",
href: `${releaseBase}/Paseo-${desktopVersion}-arm64.dmg`,
href: macAppleSiliconDownloadUrl,
icon: AppleIcon,
},
{
platform: "mac-intel",
label: "Mac Intel",
href: `${releaseBase}/Paseo-${desktopVersion}.dmg`,
href: macIntelDownloadUrl,
icon: AppleIcon,
},
{

View File

@@ -3,6 +3,8 @@ import { pageMeta } from "~/meta";
import {
desktopVersion,
releaseBase,
macAppleSiliconDownloadUrl,
macIntelDownloadUrl,
appStoreUrl,
playStoreUrl,
webAppUrl,
@@ -105,14 +107,8 @@ function Download() {
<span className="font-medium">macOS</span>
</div>
<div className="flex flex-wrap gap-2">
<DownloadPill
href={`${releaseBase}/Paseo-${desktopVersion}-arm64.dmg`}
label="Apple Silicon"
/>
<DownloadPill
href={`${releaseBase}/Paseo-${desktopVersion}.dmg`}
label="Intel"
/>
<DownloadPill href={macAppleSiliconDownloadUrl} label="Apple Silicon" />
<DownloadPill href={macIntelDownloadUrl} label="Intel" />
</div>
</div>