Skip to content

Commit

Permalink
Updated to use .zip ending
Browse files Browse the repository at this point in the history
  • Loading branch information
maxfelker committed Jul 2, 2024
1 parent 5dd4dce commit f23e808
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/HomePage/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ export default function HomePage() {
//const downloadUrl = localStorage.getItem('download-url');
const downloadUrl = "https://terramajornonprod.blob.core.windows.net/builds";
const version = "0.14.9";
const pcDownloadUrl = `${downloadUrl}/${version}_PC.rar`;
const macDownloadUrl = `${downloadUrl}/${version}_OSX.rar`;
const linuxDownloadUrl = `${downloadUrl}/${version}_Linux.rar`;
const pcDownloadUrl = `${downloadUrl}/${version}_PC.zip`;
const macDownloadUrl = `${downloadUrl}/${version}_OSX.zip`;
const linuxDownloadUrl = `${downloadUrl}/${version}_Linux.zip`;
const discordInviteUrl = "https://discord.gg/aj75rgzeBE";

return (
Expand All @@ -35,7 +35,7 @@ export default function HomePage() {
<Link to={linuxDownloadUrl}><button>Linux v{version}</button></Link>
</div>

<p>The build size is ~1.2GB compressed and will download directly. By downloading any one of these version, you are agreeing to our
<p>The build size is ~1.3GB compressed (2.6GB total) and will download directly. By downloading any one of these version, you are agreeing to our
{" "} <Link to="/terms">terms & conditions</Link>.</p>

</div>
Expand Down

0 comments on commit f23e808

Please sign in to comment.