Open radujipa opened 9 years ago
The linux code in the burner wasn't updated to support aria2. That would be require some thought because it goes against the spirit of linux to supply a binary of aria2 like we do for windows and osx. some options are:
At the moment, I believe there is an issue with the Linux version mainly because of pyinstaller
since it doesn't seem to package PyQt4
. This might need some further investigation as to whether this issue has been fixed, or perhaps the packaging process is different on Linux and has been wrong the whole time. I've opened another ticket https://github.com/KanoComputing/kano-burners/issues/64
pySmartDL
for Linux creates additional nasty dependencies in OSX and Windows, and I would advise against itpip
, we could add aria2
as a dependencyI would also advise against dropping support for Linux, as the app works fine if run from source. For the tech savy, it may still prove a useful tool with the documentation in the wikis. We might even get external collaboration on it in that case.
Facing issue while downloading file it just break after few 100mb and it show as download comppleted and restart download and loop continue
The project was changed to move away from
pySmartDL
and usearia2
for downloading purposes.However,
pySmartDL
was not completely removed from the project and is creating additional python dependencies. (e.g.concurrent
module, for which you would need topip install futures
)pySmartDL
pySmartDL
is not being used for specifically downloading, remove it entirelypySmartDL
is used for other operations (e.g. md5 checks), use lightweight alternatives (i.e. native python)