Skip to content

Commit 3a14f2b

Browse files
Merge pull request #2182 from Wasted-Audio/update/heavy-toolchain-0.7.0-size
set current toolchain size
2 parents 8cc9563 + e560167 commit 3a14f2b

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Source/Heavy/Toolchain.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -264,14 +264,14 @@ class ToolchainInstaller final : public Component
264264

265265
if (toolchainDir.exists())
266266
toolchainDir.deleteRecursively();
267-
267+
268268
#if JUCE_LINUX || JUCE_WINDOWS
269269
int expectedSize = 800 * 1024 * 1024;
270270
#else
271271
int expectedSize = 500 * 1024 * 1024;
272272
#endif
273273
auto success = Decompress::extractTarXz((const uint8_t *)toolchainData.getData(), toolchainData.getSize(), toolchainDir.getParentDirectory(), expectedSize);
274-
274+
275275
if (!success || statusCode >= 400) {
276276
MessageManager::callAsync([this] {
277277
installButton.topText = "Try Again";
@@ -281,7 +281,7 @@ class ToolchainInstaller final : public Component
281281
});
282282
return;
283283
}
284-
284+
285285
#if JUCE_WINDOWS
286286
File usbDriverInstaller = Toolchain::dir.getChildFile("etc").getChildFile("usb_driver").getChildFile("install-filter.exe");
287287
File driverSpec = Toolchain::dir.getChildFile("etc").getChildFile("usb_driver").getChildFile("DFU_in_FS_Mode.inf");
@@ -326,11 +326,11 @@ class ToolchainInstaller final : public Component
326326
int statusCode = 0;
327327

328328
#if JUCE_WINDOWS
329-
String downloadSize = "1.13 GB";
329+
String downloadSize = "1.2 GB";
330330
#elif JUCE_MAC
331-
String downloadSize = "460 MB";
331+
String downloadSize = "490 MB";
332332
#else
333-
String downloadSize = "799 MB";
333+
String downloadSize = "829 MB";
334334
#endif
335335

336336
class ToolchainInstallerButton final : public Component {

0 commit comments

Comments
 (0)