Skip to content

Commit

Permalink
Add RPM and AppImage download options
Browse files Browse the repository at this point in the history
  • Loading branch information
rosahaj committed Oct 13, 2024
1 parent 27aa86e commit 7230cf4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/content/data/download-dictionary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,29 @@ export const getDownloadOptionsDictionary = async (): Promise<DownloadDictionary
defaultText: 'Linux',
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}.deb`,
},
{
os: 'linux',
slug: 'linux-rpm',
href: '/download/linux-rpm',
text: 'Linux Fedora 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 7230cf4

Please sign in to comment.