Skip to content

Commit

Permalink
Merge pull request #10 from oblivioncth/dev
Browse files Browse the repository at this point in the history
Merge to master for v0.8.1.1 hotfix
  • Loading branch information
oblivioncth authored Jul 8, 2022
2 parents 62c30e6 + b2772fb commit ac9b4c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.21.1)

# Project
# NOTE: DON'T USE TRAILING ZEROS IN VERSIONS
set(CLIFP_BASE_VERSION 0.8.1) # Required for CI/CD
set(CLIFP_BASE_VERSION 0.8.1.1) # Required for CI/CD
project(CLIFp
VERSION ${CLIFP_BASE_VERSION}
LANGUAGES CXX
Expand Down
2 changes: 1 addition & 1 deletion src/driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ ErrorCode Driver::processTaskQueue()
// Setup download
QFile packFile(downloadTask->destPath + "/" + downloadTask->destFileName);
QFileInfo packFileInfo(packFile);
mDownloadManager->appendTask(Qx::DownloadTask{downloadTask->targetFile, packFileInfo.path()});
mDownloadManager->appendTask(Qx::DownloadTask{downloadTask->targetFile, packFileInfo.absoluteFilePath()});

// Log/label string
QString label = LOG_EVENT_DOWNLOADING_DATA_PACK.arg(packFileInfo.fileName());
Expand Down

0 comments on commit ac9b4c0

Please sign in to comment.