NOISSUE Revert all recent changes to NetAction and NetJob
This commit is contained in:
@ -10,7 +10,7 @@ AssetUpdateTask::AssetUpdateTask(OneSixInstance * inst)
|
||||
}
|
||||
void AssetUpdateTask::executeTask()
|
||||
{
|
||||
setStatusText(tr("Updating assets index..."));
|
||||
setStatus(tr("Updating assets index..."));
|
||||
auto profile = m_inst->getMinecraftProfile();
|
||||
auto assets = profile->getMinecraftAssets();
|
||||
QUrl indexUrl = assets->url;
|
||||
@ -63,7 +63,7 @@ void AssetUpdateTask::assetIndexFinished()
|
||||
auto job = index.getDownloadJob();
|
||||
if(job)
|
||||
{
|
||||
setStatusText(tr("Getting the assets files from Mojang..."));
|
||||
setStatus(tr("Getting the assets files from Mojang..."));
|
||||
downloadJob = job;
|
||||
connect(downloadJob.get(), &NetJob::succeeded, this, &AssetUpdateTask::emitSucceeded);
|
||||
connect(downloadJob.get(), &NetJob::failed, this, &AssetUpdateTask::assetsFailed);
|
||||
|
@ -32,7 +32,7 @@ void FMLLibrariesTask::executeTask()
|
||||
auto &libList = fmlLibsMapping[version];
|
||||
|
||||
// determine if we need some libs for FML or forge
|
||||
setStatusText(tr("Checking for FML libraries..."));
|
||||
setStatus(tr("Checking for FML libraries..."));
|
||||
forge_present = (profile->versionPatch("net.minecraftforge") != nullptr);
|
||||
// we don't...
|
||||
if (!forge_present)
|
||||
@ -58,7 +58,7 @@ void FMLLibrariesTask::executeTask()
|
||||
}
|
||||
|
||||
// download missing libs to our place
|
||||
setStatusText(tr("Dowloading FML libraries..."));
|
||||
setStatus(tr("Dowloading FML libraries..."));
|
||||
auto dljob = new NetJob("FML libraries");
|
||||
auto metacache = ENV.metacache();
|
||||
for (auto &lib : fmlLibsToProcess)
|
||||
@ -86,7 +86,7 @@ void FMLLibrariesTask::fmllibsFinished()
|
||||
downloadJob.reset();
|
||||
if (!fmlLibsToProcess.isEmpty())
|
||||
{
|
||||
setStatusText(tr("Copying FML libraries into the instance..."));
|
||||
setStatus(tr("Copying FML libraries into the instance..."));
|
||||
OneSixInstance *inst = (OneSixInstance *)m_inst;
|
||||
auto metacache = ENV.metacache();
|
||||
int index = 0;
|
||||
|
@ -9,7 +9,7 @@ LibrariesTask::LibrariesTask(OneSixInstance * inst)
|
||||
|
||||
void LibrariesTask::executeTask()
|
||||
{
|
||||
setStatusText(tr("Getting the library files from Mojang..."));
|
||||
setStatus(tr("Getting the library files from Mojang..."));
|
||||
qDebug() << m_inst->name() << ": downloading libraries";
|
||||
OneSixInstance *inst = (OneSixInstance *)m_inst;
|
||||
inst->reloadProfile();
|
||||
|
Reference in New Issue
Block a user