Skip to content

Commit 46c8551

Browse files
authored
Merge pull request #85 from rosahaj/additional-download-options
Add RPM and AppImage download options
2 parents 32ee9c2 + d668c22 commit 46c8551

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

src/content/data/download-dictionary.ts

+17-1
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,33 @@ export const getDownloadOptionsDictionary = async (): Promise<DownloadDictionary
5757
os: 'linux',
5858
slug: 'linux-deb',
5959
href: '/download/linux-deb',
60-
text: 'Linux Debian Package',
60+
text: 'Linux DEB Package',
6161
defaultText: 'Linux',
6262
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}.deb`,
6363
},
64+
{
65+
os: 'linux',
66+
slug: 'linux-rpm',
67+
href: '/download/linux-rpm',
68+
text: 'Linux RPM Package',
69+
defaultText: 'Linux',
70+
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}.rpm`,
71+
},
6472
{
6573
os: 'linux',
6674
slug: 'linux-aur',
6775
href: '/download/linux-aur',
6876
text: 'Linux Arch Package',
6977
downloadCommand: 'yay -S httptoolkit',
7078
},
79+
{
80+
os: 'linux',
81+
slug: 'linux-appimage',
82+
href: '/download/linux-appimage',
83+
text: 'Linux AppImage',
84+
defaultText: 'Linux',
85+
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}.AppImage`,
86+
},
7187
{
7288
os: 'linux',
7389
slug: 'linux-standalone',

0 commit comments

Comments
 (0)