diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-12 19:11:46 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-10-12 19:11:46 -0400 |
| commit | 0b480089c327e4037ada6f4bb649b180660f2923 (patch) | |
| tree | eba767a8f42160e9cc510968eeaf6ef2cec0ff10 /src | |
| parent | 56ae2bc24deec35604936c1141c630dee4ae2cba (diff) | |
fixed loot not being hooked
bumped to alpha 4.1
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 1 | ||||
| -rw-r--r-- | src/version.rc | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 8d42d020..177c2a23 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -6566,6 +6566,7 @@ void MainWindow::on_bossButton_clicked() sp.binary = QFileInfo(qApp->applicationDirPath() + "/loot/lootcli.exe"); sp.arguments = parameters.join(" "); sp.currentDirectory.setPath(qApp->applicationDirPath() + "/loot"); + sp.hooked = true; sp.stdOut = stdOutWrite; HANDLE loot = spawn::startBinary(this, sp); diff --git a/src/version.rc b/src/version.rc index 433bcb40..5a893759 100644 --- a/src/version.rc +++ b/src/version.rc @@ -3,8 +3,8 @@ // If VS_FF_PRERELEASE is not set, MO labels the build as a release and uses VER_FILEVERSION to determine version number. // Otherwise, if letters are used in VER_FILEVERSION_STR, uses the full MOBase::VersionInfo parser // Otherwise, uses the numbers from VER_FILEVERSION and sets the release type as pre-alpha -#define VER_FILEVERSION 2,2,2 -#define VER_FILEVERSION_STR "2.2.2alpha3\0" +#define VER_FILEVERSION 2,2,2,4 +#define VER_FILEVERSION_STR "2.2.2alpha4.1\0" VS_VERSION_INFO VERSIONINFO FILEVERSION VER_FILEVERSION |
