Move Help index to a writable folder - Thanks to GuyScharf

This commit is contained in:
Phil Olynyk 2019-03-30 11:24:24 -04:00
parent 063ad80b03
commit c77e860004

View File

@ -26,7 +26,20 @@ Help::Help(QWidget *parent) :
QString helpRoot = appResourcePath() + "/Help/"; QString helpRoot = appResourcePath() + "/Help/";
qDebug() << "Help root is " + helpRoot; qDebug() << "Help root is " + helpRoot;
QString helpIndex = helpRoot + "index.qhc"; QString helpIndex;
// Use a path in AppData
QCoreApplication::setOrganizationDomain("nightowlsoftware.ca");
auto path = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
if (path.isEmpty())
qFatal("Cannot determine user data storage location");
QDir d{path};
if (d.mkpath(d.absolutePath())) {
qDebug() << "Help index is in" << d.absolutePath();
helpIndex = d.absolutePath() + "/index.qhc";
} else {
qDebug() << "Could not create path to index directory - " + d.absolutePath();
}
QDir dir(helpRoot); QDir dir(helpRoot);
QStringList nameFilters = QStringList("*.qch"); QStringList nameFilters = QStringList("*.qch");
@ -60,7 +73,8 @@ Help::Help(QWidget *parent) :
helpLoaded = false; helpLoaded = false;
// Delete the crappy qhc so we can generate our own. // Delete the crappy qhc so we can generate our own.
if (QFile::exists(helpIndex)) QFile::remove(helpIndex); if (QFile::exists(helpIndex))
QFile::remove(helpIndex);
helpEngine = new QHelpEngine(helpIndex); helpEngine = new QHelpEngine(helpIndex);
helpNamespace = "nightowlsoftware.ca.OSCAR_Guide"; helpNamespace = "nightowlsoftware.ca.OSCAR_Guide";