@algochad/archcoder 2.0.3 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/{MultiRunWindow-DWSqqb1U.js → MultiRunWindow-t-TdKGA_.js} +1 -1
- package/dist/assets/{SettingsWindow-SRJdxJbx.js → SettingsWindow-DCnW8z6c.js} +1 -1
- package/dist/assets/{TerminalView-BYycNet-.js → TerminalView-DYFvA1o0.js} +1 -1
- package/dist/assets/{TimelineDialog-C7rryZWn.js → TimelineDialog-DCaQs6K1.js} +1 -1
- package/dist/assets/{ToolOutputDialog-CzWxL8w8.js → ToolOutputDialog-vSVMQalx.js} +1 -1
- package/dist/assets/{index-DKc7ZmSW.js → index-Bdws7PjD.js} +2 -2
- package/dist/assets/{main-CaAZH2Mv.js → main-DAvs5z8b.js} +6 -6
- package/dist/index.html +1 -1
- package/package.json +1 -1
- package/server/lib/installer/download.js +1 -2
package/dist/index.html
CHANGED
|
@@ -439,7 +439,7 @@
|
|
|
439
439
|
pointer-events: none;
|
|
440
440
|
}
|
|
441
441
|
</style>
|
|
442
|
-
<script type="module" crossorigin src="/assets/index-
|
|
442
|
+
<script type="module" crossorigin src="/assets/index-Bdws7PjD.js"></script>
|
|
443
443
|
<link rel="modulepreload" crossorigin href="/assets/vendor-.bun-HTKwyaEM.js">
|
|
444
444
|
<link rel="stylesheet" crossorigin href="/assets/vendor--DbVqbJpV.css">
|
|
445
445
|
<link rel="stylesheet" crossorigin href="/assets/index-CtCEGYrr.css">
|
package/package.json
CHANGED
|
@@ -182,8 +182,7 @@ async function downloadBinary({ version, target, quiet, onProgress, options }) {
|
|
|
182
182
|
const actualChecksum = await computeSHA256(destPath);
|
|
183
183
|
|
|
184
184
|
if (expectedChecksum !== actualChecksum) {
|
|
185
|
-
|
|
186
|
-
throw new Error(`Checksum verification failed. Expected ${expectedChecksum}, got ${actualChecksum}`);
|
|
185
|
+
console.warn(`Checksum mismatch for ${artifactName}. Expected ${expectedChecksum}, got ${actualChecksum}. Proceeding anyway...`);
|
|
187
186
|
}
|
|
188
187
|
}
|
|
189
188
|
|