diff --git a/cmake/QtCreatorAPI.cmake b/cmake/QtCreatorAPI.cmake index d2f4415ec4e..18f9120ded8 100644 --- a/cmake/QtCreatorAPI.cmake +++ b/cmake/QtCreatorAPI.cmake @@ -857,6 +857,7 @@ function(qtc_copy_to_builddir custom_target_name) set(timestampFiles) qtc_output_binary_dir(_output_binary_dir) + set(allFiles ${_arg_FILES}) foreach(srcFile ${_arg_FILES}) string(MAKE_C_IDENTIFIER "${srcFile}" destinationTimestampFilePart) @@ -891,6 +892,7 @@ function(qtc_copy_to_builddir custom_target_name) endif() file(GLOB_RECURSE filesToCopy "${srcDirectory}/*") + list(APPEND allFiles ${filesToCopy}) add_custom_command(OUTPUT "${destinationTimestampFileName}" COMMAND "${CMAKE_COMMAND}" -E copy_directory "${srcDirectory}" "${destinationDirectory}" COMMAND "${CMAKE_COMMAND}" -E touch "${destinationTimestampFileName}" @@ -901,7 +903,8 @@ function(qtc_copy_to_builddir custom_target_name) ) endforeach() - add_custom_target("${custom_target_name}" ALL DEPENDS ${timestampFiles}) + add_custom_target("${custom_target_name}" ALL DEPENDS ${timestampFiles} + SOURCES ${allFiles}) endfunction() function(qtc_add_resources target resourceName) diff --git a/dist/changes-4.15.1.md b/dist/changes-4.15.1.md new file mode 100644 index 00000000000..18e04f62908 --- /dev/null +++ b/dist/changes-4.15.1.md @@ -0,0 +1,121 @@ +Qt Creator 4.15.1 +================= + +Qt Creator version 4.15.1 contains bug fixes. + +The most important changes are listed in this document. For a complete +list of changes, see the Git log for the Qt Creator sources that +you can check out from the public Git repository. For example: + + git clone git://code.qt.io/qt-creator/qt-creator.git + git log --cherry-pick --pretty=oneline origin/v4.15.0..v4.15.1 + +General +------- + +* Fixed crash in `Search Results` pane (QTCREATORBUG-25713) +* Fixed crash when showing tooltips after screen configuration changes + (QTCREATORBUG-25747) +* Fixed environment selection for external tools (QTCREATORBUG-25634) + +Editing +------- + +* Fixed crash when opening settings from tooltip (QTCREATORBUG-25623) +* Fixed hiding of function hints (QTCREATORBUG-25664) +* Fixed vanishing text marks (QTCREATORBUG-25427) + +### C++ + +* Fixed freeze when updating project while indexing is running + +### QML + +* Fixed wrong warning for blocks with `case` and `let` (QTCREATORBUG-24214) + +### QRC + +* Fixed that `compress-algo` tags were removed (QTCREATORBUG-25706) + +Projects +-------- + +* Fixed restoration of `Projects` mode layout (QTCREATORBUG-25551) + +### Wizards + +* Fixed `Fetch data asynchronously` for list and table models + +### CMake + +* Fixed issues when switching configurations or running CMake while parsing + (QTCREATORBUG-25588, QTCREATORBUG-25287) +* Fixed crash when cancelling scanning the project tree (QTCREATORBUG-24564) +* Fixed custom targets missing in Locator (QTCREATORBUG-25726) + +Debugging +--------- + +### GDB + +* Fixed crash (QTCREATORBUG-25745) + +Test Integration +---------------- + +* Fixed selection of individual tests (QTCREATORBUG-25702) + +### Catch2 + +* Fixed issues with Catch2 3.0 (QTCREATORBUG-25582) + +### GoogleTest + +* Fixed crash with empty test name + +Platforms +--------- + +### Windows + +* Fixed issues with `clang-cl` toolchain (QTCREATORBUG-25690, + QTCREATORBUG-25693, QTCREATORBUG-25698) + +### Remote Linux + +* Fixed install step (QTCREATORBUG-25359) + +### Android + +* Improved startup time (QTCREATORBUG-25463) +* Fixed `Checking pending licenses` (QTCREATORBUG-25667) + +### MCU + +* Added support for Cypress Traveo II (UL-4242) +* Fixed CMake generator for GHS compiler (UL-4247) + +Credits for these changes go to: +-------------------------------- +Alessandro Portale +André Pönitz +Christiaan Janssen +Christian Kandeler +Christian Stenger +Cristian Adam +David Schulz +Eike Ziller +Erik Verbruggen +Ivan Komissarov +Jaroslaw Kobus +Knud Dollereder +Leena Miettinen +Marco Bubke +Michael Winkelmann +Miikka Heikkinen +Mikhail Khachayants +Mitch Curtis +Tapani Mattila +Thiago Macieira +Thomas Hartmann +Tim Jenssen diff --git a/src/plugins/cmakeprojectmanager/fileapireader.cpp b/src/plugins/cmakeprojectmanager/fileapireader.cpp index e0a6b2edc6e..fa54381d69f 100644 --- a/src/plugins/cmakeprojectmanager/fileapireader.cpp +++ b/src/plugins/cmakeprojectmanager/fileapireader.cpp @@ -312,8 +312,8 @@ void FileApiReader::endState(const QFileInfo &replyFi) void FileApiReader::makeBackupConfiguration(bool store) { - FilePath reply = m_parameters.buildDirectory.pathAppended(".cmake/api/v1/reply"); - FilePath replyPrev = m_parameters.buildDirectory.pathAppended(".cmake/api/v1/reply.prev"); + FilePath reply = m_parameters.workDirectory.pathAppended(".cmake/api/v1/reply"); + FilePath replyPrev = m_parameters.workDirectory.pathAppended(".cmake/api/v1/reply.prev"); if (!store) std::swap(reply, replyPrev); @@ -327,8 +327,8 @@ void FileApiReader::makeBackupConfiguration(bool store) } - FilePath cmakeCacheTxt = m_parameters.buildDirectory.pathAppended("CMakeCache.txt"); - FilePath cmakeCacheTxtPrev = m_parameters.buildDirectory.pathAppended("CMakeCache.txt.prev"); + FilePath cmakeCacheTxt = m_parameters.workDirectory.pathAppended("CMakeCache.txt"); + FilePath cmakeCacheTxtPrev = m_parameters.workDirectory.pathAppended("CMakeCache.txt.prev"); if (!store) std::swap(cmakeCacheTxt, cmakeCacheTxtPrev); @@ -371,6 +371,10 @@ void FileApiReader::startCMakeState(const QStringList &configurationArguments) connect(m_cmakeProcess.get(), &CMakeProcess::finished, this, &FileApiReader::cmakeFinishedState); qCDebug(cmakeFileApiMode) << ">>>>>> Running cmake with arguments:" << configurationArguments; + // Reset watcher: + m_watcher.removeFiles(m_watcher.files()); + m_watcher.removeDirectories(m_watcher.directories()); + makeBackupConfiguration(true); writeConfigurationIntoBuildDirectory(configurationArguments); m_cmakeProcess->run(m_parameters, configurationArguments); @@ -386,6 +390,8 @@ void FileApiReader::cmakeFinishedState() if (m_lastCMakeExitCode != 0) makeBackupConfiguration(false); + FileApiParser::setupCMakeFileApi(m_parameters.workDirectory, m_watcher); + endState(FileApiParser::scanForCMakeReplyFile(m_parameters.workDirectory)); } diff --git a/src/plugins/qmldesigner/assetexporterplugin/assetexportdialog.cpp b/src/plugins/qmldesigner/assetexporterplugin/assetexportdialog.cpp index 0c6a8a46f78..a80d30830f0 100644 --- a/src/plugins/qmldesigner/assetexporterplugin/assetexportdialog.cpp +++ b/src/plugins/qmldesigner/assetexporterplugin/assetexportdialog.cpp @@ -32,6 +32,8 @@ #include #include #include +#include +#include #include #include @@ -80,8 +82,13 @@ AssetExportDialog::AssetExportDialog(const Utils::FilePath &exportPath, { m_ui->setupUi(this); - m_ui->exportPath->setFilePath(exportPath); - m_ui->exportPath->setPromptDialogTitle(tr("Choose Export Path")); + m_ui->exportPath->setExpectedKind(Utils::PathChooser::Kind::SaveFile); + m_ui->exportPath->setFilePath( + exportPath.pathAppended( + ProjectExplorer::SessionManager::startupProject()->displayName() + ".metadata" + )); + m_ui->exportPath->setPromptDialogTitle(tr("Choose Export File")); + m_ui->exportPath->setPromptDialogFilter(tr("Metadata file (*.metadata)")); m_ui->exportPath->lineEdit()->setReadOnly(true); m_ui->exportPath->addButton(tr("Open"), this, [this]() { Core::FileUtils::showInGraphicalShell(Core::ICore::mainWindow(), m_ui->exportPath->path()); @@ -92,6 +99,7 @@ AssetExportDialog::AssetExportDialog(const Utils::FilePath &exportPath, m_ui->advancedOptions->setWidget(optionsWidget); auto optionsLayout = new QHBoxLayout(optionsWidget); optionsLayout->setContentsMargins(8, 8, 8, 8); + m_exportAssetsCheck = new QCheckBox(tr("Export assets"), this); m_exportAssetsCheck->setChecked(true); optionsLayout->addWidget(m_exportAssetsCheck); @@ -153,7 +161,12 @@ void AssetExportDialog::onExport() TaskHub::clearTasks(Constants::TASK_CATEGORY_ASSET_EXPORT); m_exportLogs->clear(); - m_assetExporter.exportQml(m_filePathModel.files(), m_ui->exportPath->filePath(), + Utils::FilePath selectedPath = m_ui->exportPath->filePath(); + Utils::FilePath exportPath = m_perComponentExportCheck->isChecked() ? + (selectedPath.isDir() ? selectedPath : selectedPath.parentDir()) : + selectedPath; + + m_assetExporter.exportQml(m_filePathModel.files(), exportPath, m_exportAssetsCheck->isChecked(), m_perComponentExportCheck->isChecked()); } diff --git a/src/plugins/qmldesigner/assetexporterplugin/assetexporter.cpp b/src/plugins/qmldesigner/assetexporterplugin/assetexporter.cpp index eedf64c9d8f..2f23cf2dd8b 100644 --- a/src/plugins/qmldesigner/assetexporterplugin/assetexporter.cpp +++ b/src/plugins/qmldesigner/assetexporterplugin/assetexporter.cpp @@ -123,7 +123,9 @@ void AssetExporter::exportQml(const Utils::FilePaths &qmlFiles, const Utils::Fil { m_perComponentExport = perComponentExport; ExportNotification::addInfo(tr("Export root directory: %1.\nExporting assets: %2") - .arg(exportPath.toUserOutput()) + .arg(exportPath.isDir() + ? exportPath.toUserOutput() + : exportPath.parentDir().toUserOutput()) .arg(exportAssets? tr("Yes") : tr("No"))); if (m_perComponentExport) @@ -134,7 +136,8 @@ void AssetExporter::exportQml(const Utils::FilePaths &qmlFiles, const Utils::Fil m_totalFileCount = m_exportFiles.count(); m_components.clear(); m_componentUuidCache.clear(); - m_exportPath = exportPath; + m_exportPath = exportPath.isDir() ? exportPath : exportPath.parentDir(); + m_exportFile = exportPath.fileName(); m_currentState.change(ParsingState::Parsing); if (exportAssets) m_assetDumper = make_unique(); @@ -437,7 +440,7 @@ void AssetExporter::writeMetadata() const QJsonArray artboards; std::transform(m_components.cbegin(), m_components.cend(), back_inserter(artboards), [](const unique_ptr &c) {return c->json(); }); - writeFile(m_exportPath.pathAppended(projectName + ".metadata"), artboards); + writeFile(m_exportPath.pathAppended(m_exportFile), artboards); } notifyProgress(1.0); ExportNotification::addInfo(tr("Export finished.")); diff --git a/src/plugins/qmldesigner/assetexporterplugin/assetexporter.h b/src/plugins/qmldesigner/assetexporterplugin/assetexporter.h index adfc71a115b..6eac814b6a5 100644 --- a/src/plugins/qmldesigner/assetexporterplugin/assetexporter.h +++ b/src/plugins/qmldesigner/assetexporterplugin/assetexporter.h @@ -112,6 +112,7 @@ private: Utils::FilePaths m_exportFiles; unsigned int m_totalFileCount = 0; Utils::FilePath m_exportPath; + QString m_exportFile; bool m_perComponentExport = false; std::vector> m_components; QHash m_componentUuidCache; diff --git a/src/plugins/qmldesigner/components/formeditor/formeditoritem.cpp b/src/plugins/qmldesigner/components/formeditor/formeditoritem.cpp index 6fac0dd0c36..ac9fbab89e3 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditoritem.cpp +++ b/src/plugins/qmldesigner/components/formeditor/formeditoritem.cpp @@ -2046,7 +2046,7 @@ void FormEditorFlowDecisionItem::updateGeometry() QRectF textRect(0, 0, 100, 20); - Qt::Corner corner = Qt::TopLeftCorner; + Qt::Corner corner = Qt::TopRightCorner; if (qmlItemNode().modelNode().hasAuxiliaryData("dialogLabelPosition")) corner = qmlItemNode().modelNode().auxiliaryData("dialogLabelPosition").value(); @@ -2191,7 +2191,7 @@ void FormEditorFlowDecisionItem::paint(QPainter *painter, const QStyleOptionGrap QRectF textRect(0, 0, 100, 20); - Qt::Corner corner = Qt::TopLeftCorner; + Qt::Corner corner = Qt::TopRightCorner; if (qmlItemNode().modelNode().hasAuxiliaryData("dialogLabelPosition")) corner = qmlItemNode().modelNode().auxiliaryData("dialogLabelPosition").value();