Skip to content

Commit b0ba054

Browse files
committed
Update download options to new URLs for v1.20.0
1 parent 605eeac commit b0ba054

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/content/data/download-dictionary.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const getDownloadOptionsDictionary = async (): Promise<DownloadDictionary
2222
href: '/download/osx-dmg',
2323
text: 'MacOS DMG',
2424
defaultText: 'macOS',
25-
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}.dmg`,
25+
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}-x64.dmg`,
2626
},
2727
{
2828
os: 'mac',
@@ -37,7 +37,7 @@ export const getDownloadOptionsDictionary = async (): Promise<DownloadDictionary
3737
href: '/download/win-exe',
3838
text: 'Windows Installer',
3939
defaultText: 'Windows',
40-
releasePath: `v${latestReleaseVersion}/HttpToolkit-installer-${latestReleaseVersion}.exe`,
40+
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}.exe`,
4141
},
4242
{
4343
os: 'windows',
@@ -51,23 +51,23 @@ export const getDownloadOptionsDictionary = async (): Promise<DownloadDictionary
5151
slug: 'win-standalone',
5252
href: '/download/win-standalone',
5353
text: 'Windows Zip',
54-
releasePath: `v${latestReleaseVersion}/HttpToolkit-win-x64-${latestReleaseVersion}.zip`,
54+
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}-win-x64.zip`,
5555
},
5656
{
5757
os: 'linux',
5858
slug: 'linux-deb',
5959
href: '/download/linux-deb',
6060
text: 'Linux DEB Package',
6161
defaultText: 'Linux',
62-
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}.deb`,
62+
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}-x64.deb`,
6363
},
6464
{
6565
os: 'linux',
6666
slug: 'linux-rpm',
6767
href: '/download/linux-rpm',
6868
text: 'Linux RPM Package',
6969
defaultText: 'Linux',
70-
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}.rpm`,
70+
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}-x64.rpm`,
7171
},
7272
{
7373
os: 'linux',
@@ -82,14 +82,14 @@ export const getDownloadOptionsDictionary = async (): Promise<DownloadDictionary
8282
href: '/download/linux-appimage',
8383
text: 'Linux AppImage',
8484
defaultText: 'Linux',
85-
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}.AppImage`,
85+
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}-x64.AppImage`,
8686
},
8787
{
8888
os: 'linux',
8989
slug: 'linux-standalone',
9090
href: '/download/linux-standalone',
9191
text: 'Linux Zip',
92-
releasePath: `v${latestReleaseVersion}/HttpToolkit-linux-x64-${latestReleaseVersion}.zip`,
92+
releasePath: `v${latestReleaseVersion}/HttpToolkit-${latestReleaseVersion}-linux-x64.zip`,
9393
},
9494
];
9595
};

0 commit comments

Comments
 (0)