Skip to content

Commit

Permalink
Disable BSA Conflict Checking.
Browse files Browse the repository at this point in the history
Version Bump to 2.1.0.1 (Once off using the 4th point do to change being so minor) Next version will be 2.1.1
  • Loading branch information
LePresidente committed Dec 26, 2017
1 parent 2ea23c4 commit 35e0bc2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/directoryrefresher.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ void DirectoryRefresher::addModBSAToStructure(DirectoryEntry *directoryStructure
QFileInfo fileInfo(archive);
if (m_EnabledArchives.find(fileInfo.fileName()) != m_EnabledArchives.end()) {
try {
directoryStructure->addFromBSA(ToWString(modName), directoryW,
ToWString(QDir::toNativeSeparators(fileInfo.absoluteFilePath())), priority);
//directoryStructure->addFromBSA(ToWString(modName), directoryW,
// ToWString(QDir::toNativeSeparators(fileInfo.absoluteFilePath())), priority);
} catch (const std::exception &e) {
throw MyException(tr("failed to parse bsa %1: %2").arg(archive, e.what()));
}
Expand Down
4 changes: 2 additions & 2 deletions src/version.rc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include "Winver.h"

#define VER_FILEVERSION 2,1,0
#define VER_FILEVERSION_STR "2.1.0\0"
#define VER_FILEVERSION 2,1,0,1
#define VER_FILEVERSION_STR "2.1.0.1\0"

VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
Expand Down

0 comments on commit 35e0bc2

Please sign in to comment.