Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.PATCHED.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# CHANGELOG - PATCHED

**v0.9.9-patched.nightly.494.5**
- Add Gofile support. One-file folders queue directly; multi-file folders show a picker. Settings shows free usage (1 TB / 30 days), no login needed. The site token salt is cached locally and re-fetched automatically when Gofile rotates it, so links keep working without updates; guests share one session and one 4s-paced retry per incident to stay inside the ~20 calls/min free budget, with a wait-and-retry message when throttled. [#408](https://github.com/towerwatchman/Atlas/pull/408)

**v0.9.9-patched.nightly.494.4**
- Downloads: clicking a cover now opens the game entry inside Atlas Library/ Catalog, and clicking the build label (e.g. Full Archive) opens the source thread in your browser. [#406](https://github.com/towerwatchman/Atlas/pull/406)

Expand Down
1 change: 1 addition & 0 deletions PATCHES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Pending Patched Changes
*Changes that's already on the fork and waiting to be reviewed for merge into original Atlas*
- Add Gofile support. One-file folders queue directly; multi-file folders show a picker. Settings shows free usage (1 TB / 30 days), no login needed. The site token salt is cached locally and re-fetched automatically when Gofile rotates it, so links keep working without updates; guests share one session and one 4s-paced retry per incident to stay inside the ~20 calls/min free budget, with a wait-and-retry message when throttled. [#408](https://github.com/towerwatchman/Atlas/pull/408)
- Downloads: clicking a cover now opens the game entry inside Atlas Library/ Catalog, and clicking the build label (e.g. Full Archive) opens the source thread in your browser. [#406](https://github.com/towerwatchman/Atlas/pull/406)
- Importer and Library folder scheme now support `{atlasId}`, so installs can be matched back to AtlasDB on re-import / rebuild.[#404](https://github.com/towerwatchman/Atlas/pull/404)
- Removed the stale restart popup and hint on the Show debug console toggle — it applies immediately to all open windows.[#399](https://github.com/towerwatchman/Atlas/pull/399)
Expand Down
5 changes: 5 additions & 0 deletions electron/downloads/downloadManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,11 @@ const startTransfer = async (item) => {
return;
}
if (!probe.passthrough) {
if (probe.choices) {
await handleFailure(item.id, "fatal",
`This folder has ${probe.choices.length} files. Pick one to download.`);
return;
}
transferUrl = probe.directUrl || item.url;
decryptSpec = probe.decrypt || null;
Object.assign(headers, probe.headers || {});
Expand Down
Loading
Loading