electron-dl-manager
Advanced tools
Changelog
3.2.0 (2024-08-04)
await
before a download call when multiple downloads are started at the same time.Changelog
3.1.1 (2024-07-31)
README.md
that download()
must be called with await
or weird things happen.Changelog
3.1.0 (2024-07-22)
30.3.0
, you will get native reporting on
download percent and bytes per second via the Electron API instead of manual calculations.
Changelog
3.0.1 (2024-07-13)
Do not emit progress events when pause()
is called.
Changelog
3.0.0 (2024-04-04)
Adds fixes around DownloadData
population.
Breaking changes
ElectronDownloadManager.download()
is now async
.
This change is necessary to fix a race condition where download()
is called, but if you immediately try to perform an
operation against the returned id, such as pauseDownload()
, the DownloadItem
has not been properly initialized
since the event that populates DownloadItem
is out-of-band.
So the new download()
implementation waits until DownloadItem
is properly initialized before returning the id.
Changelog
2.4.1 (2024-04-03)
Changelog
2.4.0 (2024-03-30)
ElectronDownloadManager
not FileDownloadManager