From c77e860004dc8252474306b58944019adabdebdf Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Sat, 30 Mar 2019 11:24:24 -0400 Subject: [PATCH] Move Help index to a writable folder - Thanks to GuyScharf --- oscar/help.cpp | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/oscar/help.cpp b/oscar/help.cpp index 985b9856..dc7460d9 100644 --- a/oscar/help.cpp +++ b/oscar/help.cpp @@ -26,7 +26,20 @@ Help::Help(QWidget *parent) : QString helpRoot = appResourcePath() + "/Help/"; 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); QStringList nameFilters = QStringList("*.qch"); @@ -60,7 +73,8 @@ Help::Help(QWidget *parent) : helpLoaded = false; // 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); helpNamespace = "nightowlsoftware.ca.OSCAR_Guide";