Skip to content

Commit 21cc8e2

Browse files
authored
Merge pull request #62 from oblivioncth/dev
Merge to master for v0.7.5.5
2 parents 7dfb0fa + 0caaeb9 commit 21cc8e2

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.24.0...3.30.0)
66
# Project
77
# NOTE: DON'T USE TRAILING ZEROS IN VERSIONS
88
project(FIL
9-
VERSION 0.7.5.4
9+
VERSION 0.7.5.5
1010
LANGUAGES CXX
1111
DESCRIPTION "Flashpoint Importer for Launchers"
1212
)

app/src/clifp.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
//Public:
2121
Qx::VersionNumber CLIFp::internalVersion()
2222
{
23-
static Qx::VersionNumber v = Qx::VersionNumber::fromString(PROJECT_BUNDLED_CLIFP_VERSION);
23+
static Qx::VersionNumber v = Qx::VersionNumber::fromString(PROJECT_BUNDLED_CLIFP_VERSION).normalized();
2424
return v;
2525
}
2626

@@ -31,7 +31,7 @@ Qx::VersionNumber CLIFp::installedVersion(const Fp::Install& fpInstall)
3131
else
3232
{
3333
#ifdef _WIN32
34-
return Qx::FileDetails::readFileDetails(standardCLIFpPath(fpInstall)).fileVersion();
34+
return Qx::FileDetails::readFileDetails(standardCLIFpPath(fpInstall)).fileVersion().normalized();
3535
#endif
3636
/* TODO: For now on Linux we just return a null version so that deployment always
3737
* occurs. Eventually, find a good way to grab version info from the installed ELF.

app/src/frontend/fe-installfoundation_win.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ void InstallFoundation::ensureModifiable(const QString& filePath)
2222
QScopeGuard cleanup([&]{
2323
LocalFree(pSecurityDescriptor);
2424
LocalFree(pNewDACL);
25-
LocalFree(pOwnerId);
2625
});
2726

2827
/* NOTE: We do two things here that are technically risky, but should be ok:

0 commit comments

Comments
 (0)