6aa9bd0f77
Now with some actual consensus on what the updater will do!
24 lines
578 B
C++
24 lines
578 B
C++
#include "AppInfo.h"
|
|
|
|
#include "FileUtils.h"
|
|
#include "Platform.h"
|
|
#include "StringUtils.h"
|
|
#include "StandardDirs.h"
|
|
|
|
#include <iostream>
|
|
|
|
std::string AppInfo::logFilePath()
|
|
{
|
|
return StandardDirs::appDataPath(organizationName(),appName()) + '/' + "update-log.txt";
|
|
}
|
|
|
|
std::string AppInfo::updateErrorMessage(const std::string& details)
|
|
{
|
|
std::string result = "There was a problem installing the update:\n\n";
|
|
result += details;
|
|
result += "\n\nYou can try downloading and installing the latest version of "
|
|
"MultiMC from http://multimc.org/";
|
|
return result;
|
|
}
|
|
|