Skip to content

Commit

Permalink
Merge pull request #85 from rosahaj/additional-download-options
Browse files Browse the repository at this point in the history
Add RPM and AppImage download options
  • Loading branch information
pimterry authored Dec 23, 2024
2 parents 32ee9c2 + d668c22 commit 46c8551
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/content/data/download-dictionary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,33 @@ export const getDownloadOptionsDictionary = async (): Promise<DownloadDictionary
os: 'linux',
slug: 'linux-deb',
href: '/download/linux-deb',
text: 'Linux Debian Package',
text: 'Linux DEB Package',
defaultText: 'Linux',
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}.deb`,
},
{
os: 'linux',
slug: 'linux-rpm',
href: '/download/linux-rpm',
text: 'Linux RPM Package',
defaultText: 'Linux',
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}.rpm`,
},
{
os: 'linux',
slug: 'linux-aur',
href: '/download/linux-aur',
text: 'Linux Arch Package',
downloadCommand: 'yay -S httptoolkit',
},
{
os: 'linux',
slug: 'linux-appimage',
href: '/download/linux-appimage',
text: 'Linux AppImage',
defaultText: 'Linux',
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}.AppImage`,
},
{
os: 'linux',
slug: 'linux-standalone',
Expand Down

0 comments on commit 46c8551

Please sign in to comment.