File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff 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
88project (FIL
9- VERSION 0.7.5.4
9+ VERSION 0.7.5.5
1010 LANGUAGES CXX
1111 DESCRIPTION "Flashpoint Importer for Launchers"
1212)
Original file line number Diff line number Diff line change 2020// Public:
2121Qx::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.
Original file line number Diff line number Diff 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:
You can’t perform that action at this time.
0 commit comments