From b3898c5d66e6b9ffd6bce0615d225f75b5d77b77 Mon Sep 17 00:00:00 2001 From: Eran Mizrahi Date: Thu, 7 Dec 2017 17:42:42 +0200 Subject: update gitignore --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 9697e53c..15696f70 100644 --- a/.gitignore +++ b/.gitignore @@ -9,5 +9,9 @@ CMakeLists.txt.user edit stderr.log stdout.log +vs_stderr.log +vs_stdout.log build +/vsbuild +/CMakeFiles .idea -- cgit v1.3.1 From 9a2a1a4301f5bb7e82199b9330e2b4d0731fcfe1 Mon Sep 17 00:00:00 2001 From: Eran Mizrahi Date: Thu, 7 Dec 2017 18:22:37 +0200 Subject: Fix lootcli sorting when temp dir contains a space (i.e. user name has a space) --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index cdc32918..48dfdfbd 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -4273,7 +4273,7 @@ void MainWindow::on_bossButton_clicked() parameters << "--game" << m_OrganizerCore.managedGame()->gameShortName() << "--gamePath" << QString("\"%1\"").arg(m_OrganizerCore.managedGame()->gameDirectory().absolutePath()) << "--pluginListPath" << QString("\"%1/loadorder.txt\"").arg(m_OrganizerCore.profilePath()) - << "--out" << outPath; + << "--out" << QString("\"%1\"").arg(outPath); if (m_DidUpdateMasterList) { parameters << "--skipUpdateMasterlist"; -- cgit v1.3.1