Merge branch 'develop' of https://github.com/PrismLauncher/PrismLauncher into Fix_Assert

This commit is contained in:
Trial97 2023-05-14 14:20:04 +03:00
commit 8c7fd3327e
No known key found for this signature in database
GPG key ID: 55EF5DA53DB36318
82 changed files with 1702 additions and 413 deletions

View file

@ -54,6 +54,7 @@ ResourceDownloadTask::ResourceDownloadTask(ModPlatform::IndexedPack pack,
m_filesNetJob->addNetAction(Net::Download::makeFile(m_pack_version.downloadUrl, dir.absoluteFilePath(getFilename())));
connect(m_filesNetJob.get(), &NetJob::succeeded, this, &ResourceDownloadTask::downloadSucceeded);
connect(m_filesNetJob.get(), &NetJob::progress, this, &ResourceDownloadTask::downloadProgressChanged);
connect(m_filesNetJob.get(), &NetJob::stepProgress, this, &ResourceDownloadTask::propogateStepProgress);
connect(m_filesNetJob.get(), &NetJob::failed, this, &ResourceDownloadTask::downloadFailed);
addTask(m_filesNetJob);