mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 14:34:28 +02:00
Merge branch 'qt-launcher' of github.com:danteruiz/hifi into qt-launcher
This commit is contained in:
commit
d752d95a8d
4 changed files with 11 additions and 7 deletions
|
@ -76,7 +76,7 @@ bool swapLaunchers(const QString& oldLauncherPath, const QString& newLauncherPat
|
|||
|
||||
|
||||
void cleanLogFile() {
|
||||
QDir launcherDirectory = QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
|
||||
QDir launcherDirectory = PathUtils::getLogsDirectory();
|
||||
launcherDirectory.mkpath(launcherDirectory.absolutePath());
|
||||
QString filename = launcherDirectory.absoluteFilePath("Log.txt");
|
||||
QString tmpFilename = launcherDirectory.absoluteFilePath("Log-last.txt");
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include <QFile>
|
||||
#include <QDebug>
|
||||
|
||||
LauncherInstaller::LauncherInstaller(const QString& applicationFilePath) {
|
||||
LauncherInstaller::LauncherInstaller() {
|
||||
_launcherInstallDir = PathUtils::getLauncherDirectory();
|
||||
_launcherApplicationsDir = PathUtils::getApplicationsDirectory();
|
||||
qDebug() << "Launcher install dir: " << _launcherInstallDir.absolutePath();
|
||||
|
@ -23,7 +23,10 @@ LauncherInstaller::LauncherInstaller(const QString& applicationFilePath) {
|
|||
|
||||
_launcherInstallDir.mkpath(_launcherInstallDir.absolutePath());
|
||||
_launcherApplicationsDir.mkpath(_launcherApplicationsDir.absolutePath());
|
||||
QFileInfo fileInfo(applicationFilePath);
|
||||
char appPath[MAX_PATH];
|
||||
GetModuleFileNameA(NULL, appPath, MAX_PATH);
|
||||
QString applicationRunningPath = appPath;
|
||||
QFileInfo fileInfo(applicationRunningPath);
|
||||
_launcherRunningFilePath = fileInfo.absoluteFilePath();
|
||||
_launcherRunningDirPath = fileInfo.absoluteDir().absolutePath();
|
||||
qDebug() << "Launcher running file path: " << _launcherRunningFilePath;
|
||||
|
@ -44,11 +47,12 @@ void LauncherInstaller::install() {
|
|||
bool didRemove = QFile::remove(oldLauncherPath);
|
||||
qDebug() << "did remove file: " << didRemove;
|
||||
}
|
||||
qDebug() << "Current launcher location: " << _launcherRunningFilePath;
|
||||
bool success = QFile::copy(_launcherRunningFilePath, oldLauncherPath);
|
||||
if (success) {
|
||||
qDebug() << "successful";
|
||||
qDebug() << "Launcher installed: " << oldLauncherPath;
|
||||
} else {
|
||||
qDebug() << "not successful";
|
||||
qDebug() << "Failed to install: " << oldLauncherPath;
|
||||
}
|
||||
|
||||
deleteShortcuts();
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
#include <QDir>
|
||||
class LauncherInstaller {
|
||||
public:
|
||||
LauncherInstaller(const QString& applicationFilePath);
|
||||
LauncherInstaller();
|
||||
~LauncherInstaller() = default;
|
||||
|
||||
void install();
|
||||
|
|
|
@ -62,7 +62,7 @@ int main(int argc, char *argv[]) {
|
|||
}
|
||||
|
||||
#ifdef Q_OS_WIN
|
||||
LauncherInstaller launcherInstaller(argv[0]);
|
||||
LauncherInstaller launcherInstaller;
|
||||
if (options->contains("--uninstall") || options->contains("--resumeUninstall")) {
|
||||
launcherInstaller.uninstall();
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue