pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/editors/qtcreator
Module Name: pkgsrc
Committed By: wiz
Date: Sat Nov 20 20:51:14 UTC 2021
Modified Files:
pkgsrc/editors/qtcreator: Makefile PLIST distinfo
Added Files:
pkgsrc/editors/qtcreator/patches: patch-share_share.pro
patch-src_libs_3rdparty_sqlite_sqlite3.c
Removed Files:
pkgsrc/editors/qtcreator/patches: patch-qtcreator.pro
Log Message:
qtcreator: update to 5.0.3.
Qt Creator 4.13.3
=================
Qt Creator version 4.13.3 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.13.2..v4.13.3
General
-------
* Updated prebuilt binaries to Qt 5.15.2 which fixes drag & drop on macOS
Editing
-------
### QML
* Fixed reformatting of required properties (QTCREATORBUG-24376)
* Fixed importing without specific version for Qt 6 (QTCREATORBUG-24533)
Projects
--------
* Fixed auto-scrolling of compile output window (QTCREATORBUG-24728)
* Fixed GitHub Actions for Qt Creator plugin wizard (QTCREATORBUG-24412)
* Fixed crash with `Manage Sessions` (QTCREATORBUG-24797)
Qt Quick Designer
-----------------
* Fixed crash when opening malformed `.ui.qml` file (QTCREATORBUG-24587)
Debugging
---------
### CDB
* Fixed pretty printing of `std::vector` and `std::string` in release mode
Analyzer
--------
### QML Profiler
* Fixed crash with `Analyze Current Range` (QTCREATORBUG-24730)
Platforms
---------
### Android
* Fixed modified state of manifest editor when changing app icons
(QTCREATORBUG-24700)
Qt Creator 4.14
===============
Qt Creator version 4.14 contains bug fixes and new features.
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/4.13..v4.14.0
General
-------
* Added option for asking for confirmation before closing (QTCREATORBUG-7637)
* Improved visibility of controls in dark themes (QTCREATORBUG-23505)
* Fixed lines disappearing in output panes (QTCREATORBUG-24556)
Help
----
* Made `litehtml` rendering backend the default
* Fixed that Qt 5 documentation was not available if Qt 6 is installed
Editing
-------
### C++
* Updated to LLVM 11
* Added refactoring action that creates getters and setters for all class members
(QTCREATORBUG-14504)
* Added refactoring action that generates member from class member initialization
(QTCREATORBUG-11842)
* Added refactoring action that creates implementations for all member functions
(QTCREATORBUG-12164)
* Added refactoring action for removing `using namespace` directives (QTCREATORBUG-24392)
* Added auto-completion of existing namespaces and classes to `New Class` wizard
(QTCREATORBUG-10066)
* Added action for showing function arguments hint (QTCREATORBUG-19394)
* Added option for after how many characters auto-completion may trigger (QTCREATORBUG-19920)
* Added highlighting for structured bindings (QTCREATORBUG-24769)
* Restricted completion for second argument of `connect` calls to signals (QTCREATORBUG-13558)
* Fixed crash of backend with multiline `Q_PROPERTY` declarations (QTCREATORBUG-24746)
* Fixed issues with include completion (QTCREATORBUG-21490, QTCREATORBUG-24515)
* Fixed missing namespace when generating getters and setters (QTCREATORBUG-14886)
* Fixed missing `inline` when generating method definitions in header files
(QTCREATORBUG-15052)
* Fixed that `Follow Symbol Under Cursor` on declarations and definitions did not offer items
in subclasses (QTCREATORBUG-10160)
* Fixed that `RESET` function was not generated for `Q_PROPERTY`s (QTCREATORBUG-11809)
* Fixed that `Insert virtual functions of base class` refactoring action added already
implemented operators (QTCREATORBUG-12218)
* Fixed that `Complete switch statement` indents unrelated code (QTCREATORBUG-12445)
* Fixed `Complete switch statement` with templates (QTCREATORBUG-24752)
* Fixed `Complete switch statement` for enum classes (QTCREATORBUG-20475)
* Fixed creating and moving template member function definitions (QTCREATORBUG-24801,
QTCREATORBUG-24848)
* Fixed that `Apply function signature change` removed return values from `std::function`
arguments (QTCREATORBUG-13698)
* Fixed handling of multiple inheritance in `Insert Virtual Functions` (QTCREATORBUG-12223)
* Fixed issue with `Convert to Camel Case` (QTCREATORBUG-16560)
* Fixed auto-indentation for lambdas with trailing return type (QTCREATORBUG-18497)
* Fixed indentation when starting new line in documentation comments (QTCREATORBUG-11749)
* Fixed that auto-indentation was applied within multiline string literals
(QTCREATORBUG-20180)
* Fixed sorting in `Outline` view (QTCREATORBUG-12714)
* Fixed that renaming files did not adapt include guards in headers (QTCREATORBUG-4686)
### Language Client
* Improved outline for hierarchical symbols
### QML
* Fixed issues with `Move Component into Separate File` (QTCREATORBUG-21091)
* Fixed crash with malformed `property` (QTCREATORBUG-24587)
* Fixed `qmldir` parsing with Qt 6 (QTCREATORBUG-24772)
### GLSL
* Updated language specification (QTCREATORBUG-24068)
Projects
--------
* Renamed `CurrentProject:*` variables to `CurrentDocument:Project:*` (QTCREATORBUG-12724,
QTCREATORBUG-24606)
* Added `ActiveProject:*` variables (QTCREATORBUG-24878)
* Changed `Qt Creator Plugin` wizard to CMake build system (QTCREATORBUG-24073)
* Fixed issue when environment changes after appending or prepending path (QTCREATORBUG-24105)
* Fixed `Embedding of the UI Class` option for widget applications (QTCREATORBUG-24422)
* Fixed shell used for console applications (QTCREATORBUG-24659)
* Fixed issue with auto-scrolling compile output (QTCREATORBUG-24728)
### qmake
* Added option to not execute `system` directives (QTCREATORBUG-24551)
* Fixed deployment with wildcards (QTCREATORBUG-24695)
### Wizards
* Fixed creation of form editor class with namespace (QTCREATORBUG-24723)
### CMake
* Added option to unselect multiple configuration variables simultaneously
(QTCREATORBUG-22659)
* Improved kit detection when importing build (QTCREATORBUG-25069)
* Fixed missing run of CMake when saving `CMakeLists.txt` files in
subdirectories
* Fixed that changing build directory to existing build ran CMake with initial
arguments
* Fixed that configuration changes were lost when done before triggering a first
build (QTCREATORBUG-24936)
* Fixed `QML Debugging and Profiling`
### Meson
* Fixed updating of introspection data after reconfiguration
Debugging
---------
* Updated various pretty printers for Qt 6
* Fixed disabling and enabling breakpoints (QTCREATORBUG-24669)
* Fixed setting source mappings with variables (QTCREATORBUG-24816)
### GDB
* Fixed loading of symbol files with `Load Core File` (QTCREATORBUG-24541)
### CDB
* Fixed debugging when `PYTHONPATH` is set (QTCREATORBUG-24859)
* Fixed pretty printer of containers with signed chars
Analyzer
--------
### Clang
* Re-added automatic analyzation of files on save
* Added multi-selection in diagnostics view (QTCREATORBUG-24396)
Version Control Systems
-----------------------
* Improved removal of multiple files (QTCREATORBUG-24385)
* Added option to add file when creating it from locator (QTCREATORBUG-24168)
### Git
* Added option to show file at specified revision (QTCREATORBUG-24689)
### Gerrit
* Added suggestion for local branch name when checking out patch set (QTCREATORBUG-24006)
* Fixed commit list in `Push to Gerrit` (QTCREATORBUG-24436)
Test Integration
----------------
* Made it easier to re-run failed tests
* Added support for `QTest::addRow()` (QTCREATORBUG-24777)
Platforms
---------
### Linux
* Fixed initial directory when opening Konsole (QTCREATORBUG-24947)
### macOS
* Fixed type display when debugging with newest LLDB
### Android
* Improved manifest editor
* Added support for `xhdpi`, `xxhdpi` and `xxxhdpi` icons and splashscreens
* Added support for setting preferred screen orientation
* Added missing Android variables to completion in `.pro` and `.pri` files
* Fixed passing command line arguments to application (QTCREATORBUG-23712)
* Fixed fetching of logcat output when application crashes
### iOS
* Fixed persistence of signing settings (QTCREATORBUG-24586)
### Remote Linux
* Fixed password prompt missing with SSH (QTCREATORBUG-24979)
### MCU
* Improved creation of kits (QTCREATORBUG-24354, QTCREATORBUG-25052, QTCREATORBUG-25053)
Qt Creator 4.14.1
=================
Qt Creator version 4.14.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.14.0..v4.14.1
General
-------
* Fixed copying to clipboard from JavaScript locator filter
### Building Qt Creator with CMake
* Made it easier to build against separate litehtml (QTCREATORBUG-25144)
* Made it possible to adapt install layout for Linux distributions
(QTCREATORBUG-25142)
* Fixed building and running against system LLVM (QTCREATORBUG-25147)
Editing
-------
* Fixed search result highlighting for overlapping results (QTCREATORBUG-25237)
### C++
* Added support for `BINDABLE` in `Q_PROPERTY`
* Fixed loading `ClangFormat` plugin on Linux distributions with software
rendering (QTCREATORBUG-24998)
* Fixed hanging `Follow Symbol` (QTCREATORBUG-25193)
* Fixed freeze in global indexing (QTCREATORBUG-25121)
* Fixed missing completion in `connect` statements (QTCREATORBUG-25153)
### QML
* Fixed reformatter for arrow functions (QTCREATORBUG-23019)
* Fixed reformatter for template strings
### Language Client
* Fixed handling of dynamically registered capabilities
Projects
--------
* Fixed crash in environment settings (QTCREATORBUG-25170)
### CMake
* Fixed that CMake version support was not re-checked when changing its path in
settings (QTCREATORBUG-25250)
### qmake
* Fixed unnecessary `qmake` run if `separate_debug_info` is force-disabled
(QTCREATORBUG-25134)
* Fixed wrong messages in `Issues` pane from cumulative parsing
(QTCREATORBUG-25201)
### Meson
* Fixed crash when switching build type
Debugging
---------
### LLDB
* Fixed that application output could be printed delayed (QTCREATORBUG-24667)
* Fixed performance issue (QTCREATORBUG-25185, QTCREATORBUG-25217)
### CDB
* Fixed `std::map`, `std::set` and `std::list` pretty printers in release builds
(QTCREATORBUG-24901)
Analyzer
--------
### Clang
* Fixed issue with MSVC and MinGW (QTCREATORBUG-25126)
Platforms
---------
### Remote Linux
* Fixed SSH download operation without session (QTCREATORBUG-25236)
Qt Creator 4.14.2
=================
Qt Creator version 4.14.2 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.14.1..v4.14.2
General
-------
### Building Qt Creator with CMake
* Fixed installation location of desktop and appstream files
Help
----
* Fixed crash with `Previous/Next Open Document in History` (QDS-3743)
Editing
-------
* Re-added generic highlighting for Autoconf files (QTCREATORBUG-25391)
Debugging
---------
### LLDB
* Fixed performance issue (QTCREATORBUG-25185, QTCREATORBUG-25217)
Platforms
---------
### macOS
* Fixed vanishing controls in Welcome mode in Dark Mode (QTCREATORBUG-25405)
Qt Creator 4.15
===============
Qt Creator version 4.15 contains bug fixes and new features.
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/4.14..v4.15.0
General
-------
* Added locator filter for global file index on Linux (`locate`) and Windows
(`Everything`)
* Added option for globally changing base environment for running tools
(QTCREATORBUG-22123)
* Added option for text codec used for tools (QTCREATORBUG-24776)
* Fixed that `General Messages` pane popped up too often (QTCREATORBUG-24667)
Help
----
* Added shared `Zoom` setting (QTCREATORBUG-23731, QTCREATORBUG-25109,
QTCREATORBUG-25230)
Editing
-------
* Added action for pasting without auto-formatting (QTCREATORBUG-20887)
* Fixed that completion could block Qt Creator (QTCREATORBUG-25419)
### C++
* Added `Create Getter and Setter Member Functions` refactoring action
(QTCREATORBUG-1532)
* Added `Generate Constructor` refactoring action
* Added filtering of `Find References to Symbol Under Cursor` based on access
type (QTCREATORBUG-19373)
* Added `Open in Editor` and `Open Type Hierarchy` to context menu on items in
type hierarchy
* Added highlighting of previous class when navigating in type hierarchy
* Added type aliases to `C++ Classes, Enums and Functions` locator filter
(QTCREATORBUG-5800)
* Added parentheses highlighting for ternary operator (QTCREATORBUG-1410)
* Improved type name minimization for `Add definition` (QTCREATORBUG-8030)
* Fixed type hierarchy with templates classes and typedefs
* Fixed that `-include` compile option was ignored by code model
(QTCREATORBUG-20602)
* Fixed highlighting of raw string literals (QTCREATORBUG-16183)
* Fixed issue with declaration and definition matching in presence of macros
(QTCREATORBUG-24739)
* Fixed issue with struct type alias (QTCREATORBUG-24875)
* Fixed issue with function attributes (QTCREATORBUG-24650, QTCREATORBUG-24636)
* Fixed highlighting in macros with indirection (QTCREATORBUG-21522)
* Fixed highlighting in multi-dimensional arrays (QTCREATORBUG-21534)
* Fixed switching between declaration and definition for custom conversion
operators (QTCREATORBUG-21168)
* Fixed that fix-its with outdated information could be applied
(QTCREATORBUG-21818)
* Fixed tooltip for some include directives (QTCREATORBUG-21194)
* Fixed include completion for files with non-standard file extensions
(QTCREATORBUG-25154)
* Fixed highlighting of comments with continuation lines (QTCREATORBUG-23297)
* Fixed issues with `Add definition` (QTCREATORBUG-14661, QTCREATORBUG-14524,
QTCREATORBUG-14524, QTCREATORBUG-25560)
* Fixed real-time updating of `Class View`
* Fixed that function parameter hint showed inapplicable overloads
(QTCREATORBUG-650)
### QML
* Added support for inline components (QTCREATORBUG-24766, QTCREATORBUG-24705)
* Fixed issues with multiple import paths (QTCREATORBUG-24405)
* Fixed reformatting of arrow functions (QTCREATORBUG-25198)
* Fixed reformatting of JavaScript spread operator (QTCREATORBUG-23402)
### Language Client
* Added support for new formatting options in LSP 3.15.0
* Added support for versioned diagnostics
* Added support for server progress messages
* Improved Java language server support
### Java
* Simplified configuration of Java language server
* Improved support for Java language server
Projects
--------
* Added `Open Terminal Here` for project nodes (QTCREATORBUG-25107)
* Added option for running application as root user (QTCREATORBUG-2831,
QTCREATORBUG-25330)
* Fixed detection of `rcc` and `uic` for Qt 6 (QTBUG-88791)
* Fixed detection of Designer, Linguist, `qmlscene` and `qmlplugindump` for Qt 6
cross-builds
### qmake
* Fixed freeze when executable run with `system` call waits for input
(QTCREATORBUG-25194)
### CMake
* Added support for multiconfig generators (QTCREATORBUG-24984)
* Added filesystem node to project tree (QTCREATORBUG-24677)
* Added `install/strip` and `package` targets (QTCREATORBUG-22047,
QTCREATORBUG-22620)
* Added automatic run of conan install on initial CMake call
(QTCREATORBUG-25362)
* Added batch editing for CMake configuration
* Added `Re-configure with Initial Parameters` button
* Made it possible to copy CMake variables from configuration
(QTCREATORBUG-24781)
* Removed utility targets from CMake target locator filters (QTCREATORBUG-24718)
* Fixed that configuration changes were lost when CMake configuration fails
(QTCREATORBUG-24593)
* Fixed Qt detection when importing builds of Qt6-based projects
(QTCREATORBUG-25100)
* Fixed importing builds of Qt6 tests (QTBUG-88776)
* Fixed which file is opened for `Open CMake target` locator filter
(QTCREATORBUG-25166)
* Fixed `Save all files before build` for `Build for Run Configuration`
(QTCREATORBUG-25276)
* Fixed that only source file name was copied to clipboard when adding class
(QTCREATORBUG-24301, QTCREATORBUG-25212)
* Fixed reparsing of project with `Auto-run CMake`
* Fixed that removed targets stayed selected for building (QTCREATORBUG-25477)
### Qbs
* Added Android target ABI selection
### Python
* Added support for PySide6 to wizards (QTCREATORBUG-25340)
### Meson
* Added support for `extra_files` (QTCREATORBUG-24824)
* Added support for custom Meson parameters
### Conan
* Added auto-detection of conan file in project root
Debugging
---------
* Added option to show simple values as text annotations
* Added option to copy selected items from stack view (QTCREATORBUG-24701)
* Added visualization of hit breakpoint in `Breakpoints` view
(QTCREATORBUG-6999)
* Fixed type display for automatically dereferenced pointers
(QTCREATORBUG-20907)
* Fixed that debugging repeatedly stopped with `SIGSTOP` (QTCREATORBUG-25073,
QTCREATORBUG-25082, QTCREATORBUG-25227)
### QML
* Fixed breakpoints in `.mjs` files (QTCREATORBUG-25328)
Analyzer
--------
### Clang
* Added option for disabling diagnostic types from result list
(QTCREATORBUG-24852)
* Added support for individual `clazy` check options (QTCREATORBUG-24977)
* Added help link to diagnostic tooltip (QTCREATORBUG-25163)
Version Control Systems
-----------------------
* Added simple commit message verification
Test Integration
----------------
* Added basic support for `ctest` (QTCREATORBUG-23332)
### Google Test
* Fixed detection of tests that start with a number (QTCREATORBUG-25498)
FakeVim
-------
* Added support for `\u` `\U` `\l` `\L` in substitute command
* Added emulation of `vim-exchange` and `vim-surround` plugins
* Fixed dot command for pasting (QTCREATORBUG-25281)
Platforms
---------
### Android
* Fixed `android-*-deployment-settings.json` detection (QTCREATORBUG-25209)
### iOS
* Added support for CMake projects with Qt 6 (QTCREATORBUG-23574)
* Fixed launch of applications on iOS 14 (QTCREATORBUG-24672)
* Fixed `Attach to Running Application` for long executable paths
(QTCREATORBUG-25286)
### Remote Linux
* Fixed issues with remote process PID parsing (QTCREATORBUG-25306)
* Fixed issues with `rsync` on Windows (QTCREATORBUG-25333)
### MCU
* Added error reporting when creating MCU kits fails (QTCREATORBUG-25258)
* Improved detection of Ultralight library (QTCREATORBUG-25469)
* Fixed that examples were missing from `Welcome` screen (QTCREATORBUG-25320)
### WASM
* Improved handling of Emscripten detection and setup (QTCREATORBUG-23126,
QTCREATORBUG-23160, QTCREATORBUG-23561, QTCREATORBUG-23741,
QTCREATORBUG-24814, QTCREATORBUG-24822)
* Added support for Qt 6 applications with CMake (QTCREATORBUG-25519)
* Fixed ABI detection for Qt 5.15 (QTCREATORBUG-24891)
* Fixed running of `em++.bat` in some environments on Windows
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)
Qt Creator 4.15.2
=================
Qt Creator version 4.15.2 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.1..v4.15.2
Projects
--------
### CMake
* Improved performance after project load and reparse
* Fixed crash on session switch (QTCREATORBUG-25837)
### qmake
* Fixed issues with executing system calls (QTCREATORBUG-25970)
Test Integration
----------------
### CTest
* Fixed test detection if `ctest` takes long to run (QTCREATORBUG-25851)
Platforms
---------
### WASM
* Fixed Python version that is on Windows (QTCREATORBUG-25897)
Qt Creator 5
===============
Qt Creator version 5 contains bug fixes and new features.
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/4.15..v5.0.0
General
-------
* Fixed various possible crashes at shutdown
Editing
-------
* Added line ending and indentation to file properties information
* Added menu item and shortcut for editing bookmark comments
(QTCREATORBUG-25696)
* Fixed folding for Markdown (QTCREATORBUG-25882)
* Fixed completion tooltip on secondary display (QTCREATORBUG-26053)
### C++
* Added experimental support for `clangd` (no code completion yet, requires
development build of `clangd`)
* Added highlighting option for function parameters (QTCREATORBUG-24880)
* Added template parameters to symbols in Locator
* Fixed that project-unrelated files were selected by default when renaming
symbols (QTCREATORBUG-8561)
* Fixed highlighting of string literals with multi-byte characters
(QTCREATORBUG-25715)
* Fixed code model for changed but not yet built `.ui` and `.scxml` files
(QTCREATORBUG-25937)
* Fixed lookup of toplevel virtual function declarations (QTCREATORBUG-25749)
* Fixed `switch` statement completion for templates (QTCREATORBUG-25998)
* Fixed `Escape String Literal as UTF-8` if literal contains numbers
(QTCREATORBUG-26003)
### QML
* Updated parser to Qt 6.2
* Fixed handling of multiline template strings (QTCREATORBUG-22766)
* Fixed handling of required and readonly properties (QTCREATORBUG-24144)
* Fixed reformatting of inline components (QTCREATORBUG-24144)
* Fixed reformatting of functions with default values (QTCREATORBUG-23009)
* Fixed wrong warning for types with same name but different namespace
(QTCREATORBUG-24615)
* Fixed `Tools > External > Qt Quick > QML Utility` (QTCREATORBUG-26137)
### Language Client
* Added support for progress notifications
* Added support for snippets (QTCREATORBUG-22406)
* Fixed completion results for language servers that do not filter results
themselves
* Fixed that empty responses could be sent (QTCREATORBUG-26116)
### Beautifier
* Fixed issue with `clang-format` and multi-byte characters (QTCREATORBUG-21812,
QTCREATORBUG-23131)
### Designer
* Fixed `Go to Slot` if UI class is referred to as `UI_<class>`
(QTCREATORBUG-26013)
Projects
--------
* Added experimental support for building and running on Docker devices
* Added find support to `Issues` pane
* Added option `Show Source and Header Groups` to project tree
(QTCREATORBUG-25313)
* Fixed crash when closing project while changing current configuration
(QTCREATORBUG-25655)
* Fixed that output of custom targets was interpreted as errors
(QTCREATORBUG-25677)
* Fixed missing update of run configuration environment (QTCREATORBUG-25947)
* Fixed that user files were unnecessarily saved with new time stamp
(QTCREATORBUG-25921)
* Fixed that toolchain setting was fixed for auto-detected kits
(QTCREATORBUG-25839)
* Reduced UI freeze after loading projects (QTCREATORBUG-25783)
### CMake
* Removed option `Auto-create build directories`, making this the default
behavior (QTCREATORBUG-25532)
* Added CMake output to right side of `Projects` mode (QTCREATORBUG-25522)
* Added CMake option `QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP` for skipping Qt
Creator's package manager auto-setup
* Fixed `Jump to File` for file names with special characters
(QTCREATORBUG-25572)
* Fixed updating of available targets (QTCREATORBUG-24914, QTCREATORBUG-25906)
* Fixed persistence of CMake tool options (QTCREATORBUG-25911)
* Fixed build library search path for CMake 3.20 and later (QTCREATORBUG-26110)
* Fixed code model issues with MSVC and CMake 3.20 and later
(QTCREATORBUG-26146)
### Qbs
* Improved performance of registering profiles (QTCREATORBUG-25463)
Debugging
---------
* Added `Force logging to console` option (QTCREATORBUG-25421)
* Added context menu for changing variable display style to viewer window
(QTCREATORBUG-25762)
* Fixed that comments in startup commands resulted in message boxes
(QTCREATORBUG-25666)
* Removed extra Server Start Script field in Attach to Running Server,
use a custom deploy step instead.
### GDB
* Added option `Use automatic symbol cache` (QTCREATORBUG-23207)
### QML
* Implemented `Load QML Stack` for LLDB (QTCREATORBUG-25554)
Analyzer
--------
### Clang
* Fixed URL for `clang-tidy` checks (QTCREATORBUG-25902)
* Fixed application of options to checks (QTCREATORBUG-25827)
* Fixed links to clazy documentation (QTCREATORBUG-25869)
FakeVim
-------
* Fixed backspace option
* Fixed updating visual marks when mark settings change
Platforms
---------
### Windows
* Added support for MSVC ARM64 toolchain
### macOS
* Improved experience on ARM based macOS with Intel based Qt Creator build
* Fixed performance issue with registering file watches after loading projects
### Android
* Added detection of Android 12
* Fixed detection of `_prepare_apk_dir` target for CMake projects
(QTCREATORBUG-25216)
### Remote Linux
* Fixed update of temporary local installation when build path is changed
(QTCREATORBUG-26103)
### QNX
* Fixed device configuration
* Fixed listing of device processes on Windows
* Fixed issues with CMake and QNX 7.1 and Qt 6
### MCU
* Added tracking of kit dependencies (QTCREATORBUG-25262)
* Added support for module mappings in QML (QTCREATORBUG-25356)
* Fixed update of kit after settings changes (QTCREATORBUG-25488)
Qt Creator 5.0.1
================
Qt Creator version 5.0.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/v5.0.0..v5.0.1
General
-------
* Fixed saving of MIME type settings
Editing
-------
### QML
* Fixed freeze with imports that don't specify minor version
(QTCREATORBUG-26178, QTCREATORBUG-26216)
* Fixed crash when using inline components (QTCREATORBUG-26151)
### Language Client
* Fixed working directory for servers that are started per project
(QTCREATORBUG-26115)
* Fixed sorting of completion items (QTCREATORBUG-26114)
* Fixed that global environment setting was not used for language servers
Projects
--------
### CMake
* Improved handling of issues with `conan` (QTCREATORBUG-25818,
QTCREATORBUG-25891)
* Fixed endless configuration loop (QTCREATORBUG-26204, QTCREATORBUG-26207,
QTCREATORBUG-25346, QTCREATORBUG-25995, QTCREATORBUG-25183,
QTCREATORBUG-25512)
* Fixed crash with "Re-configure with Initial Parameters" (QTCREATORBUG-26220)
### Qbs
* Fixed code model with MSVC and C++20 (QTCREATORBUG-26089)
### qmake
* Fixed that `qmake` was run on every build on macOS (QTCREATORBUG-26212)
### Compilation Database
* Fixed crash when loading project (QTCREATORBUG-26126)
Debugging
---------
### GDB
* Fixed debugging of 32-bit MinGW application with 64-bit debugger
(QTCREATORBUG-26208)
Analyzer
--------
### Clang
* Fixed that Clazy was asked repeatedly for version and supported checks
(QTCREATORBUG-26237)
Test Integration
----------------
### Qt Quick
* Fixed unnecessary updates of QML code model
### CTest
* Fixed missing test output
### Google Test
* Fixed wizard for CMake (QTCREATORBUG-26253)
Platforms
---------
### Windows
* Fixed issue with parsing MSVC warnings
### Android
* Fixed cleaning up of old auto-generated Android kits
* Fixed minimum SDK level for CMake projects (QTCREATORBUG-26127)
### iOS
* Fixed initial CMake parameters for iOS device builds
### Web Assembly
* Fixed detection of emscripten compilers (QTCREATORBUG-26199)
Qt Creator 5.0.2
================
Qt Creator version 5.0.2 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/v5.0.1..v5.0.2
Help
----
* Fixed that Qt 5 context help was shown even if Qt 6 documentation is available
(QTCREATORBUG-26292)
Projects
--------
* Fixed canceling of builds (QTCREATORBUG-26271)
### CMake
* Changed the `File System` special node to be shown only on parsing failure
(QTCREATORBUG-25994, QTCREATORBUG-25974)
* Fixed loading of projects without targets (QTCREATORBUG-25509)
* Fixed that no targets where shown in added build step (QTCREATORBUG-25759)
* Fixed that `ninja` could not be found after changing Qt installation location
(QTCREATORBUG-26289)
Debugging
---------
### GDB
* Fixed debugging of terminal applications with GDB < 10 (QTCREATORBUG-26299)
Platforms
---------
### macOS
* Fixed issue with absolute RPATH in `clazy-standalone` (QTCREATORBUG-26196)
### Android
* Fixed that wrong deployment file could be used (QTCREATORBUG-25793)
Qt Creator 5.0.3
================
Qt Creator version 5.0.3 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/v5.0.2..v5.0.3
Editing
-------
### QML
* Fixed possible crash on shutdown
### Image Viewer
* Fixed crash when opening invalid movie (QTCREATORBUG-26377)
Projects
--------
### qmake
* Fixed handling of `QMAKE_EXTRA_COMPILERS` (QTCREATORBUG-26323)
Platforms
---------
### macOS
* Fixed crash when opening qmake projects on ARM Macs (QTBUG-97085)
### Android
* Fixed issue in installation step with qmake projects (QTCREATORBUG-26357)
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/editors/qtcreator/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/editors/qtcreator/PLIST
cvs rdiff -u -r1.4 -r1.5 pkgsrc/editors/qtcreator/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/editors/qtcreator/patches/patch-qtcreator.pro
cvs rdiff -u -r0 -r1.1 pkgsrc/editors/qtcreator/patches/patch-share_share.pro \
pkgsrc/editors/qtcreator/patches/patch-src_libs_3rdparty_sqlite_sqlite3.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/editors/qtcreator/Makefile
diff -u pkgsrc/editors/qtcreator/Makefile:1.8 pkgsrc/editors/qtcreator/Makefile:1.9
--- pkgsrc/editors/qtcreator/Makefile:1.8 Mon Nov 15 22:54:11 2021
+++ pkgsrc/editors/qtcreator/Makefile Sat Nov 20 20:51:14 2021
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2021/11/15 22:54:11 wiz Exp $
+# $NetBSD: Makefile,v 1.9 2021/11/20 20:51:14 wiz Exp $
-DISTNAME= qt-creator-opensource-src-4.13.2
+DISTNAME= qt-creator-opensource-src-5.0.3
PKGNAME= ${DISTNAME:S/qt-/qt/:S/-opensource-src//}
-PKGREVISION= 7
CATEGORIES= editors
MASTER_SITES= http://download.qt.io/official_releases/${PKGBASE}/${PKGVERSION_NOREV:R}/${PKGVERSION_NOREV}/
MASTER_SITES+= http://download.qt.io/archive/${PKGBASE}/${PKGVERSION_NOREV:R}/${PKGVERSION_NOREV}/
@@ -17,35 +16,25 @@ USE_LANGUAGES= c c++
USE_LIBTOOL= yes
USE_TOOLS+= bash perl
-REPLACE_BASH+= doc/api/examples/aggregation/test.sh
-REPLACE_BASH+= share/qtcreator/scripts/openTerminal.command
REPLACE_BASH+= src/app/winicons/createicons.sh
REPLACE_BASH+= src/libs/qmljs/parser/gen-parser.sh
REPLACE_BASH+= src/shared/qbs/tests/auto/blackbox/testdata/badInterpreter/script-ok
-REPLACE_BASH+= src/shared/qbs/tests/manual/run-qbs-tests.sh
-REPLACE_BASH+= src/shared/qbs/share/qbs/modules/bundle/update-specs.sh
REPLACE_BASH+= tests/manual/distribution/elflint
-REPLACE_BASH+= scripts/createSourcePackages.sh
REPLACE_BASH+= scripts/deployqtHelper_mac.sh
-REPLACE_BASH+= scripts/makedmg.sh
REPLACE_PYTHON+= src/libs/qmljs/parser/changeLicense.py
-REPLACE_PYTHON+= share/qtcreator/templates/wizards/files/python/file.py
-REPLACE_PYTHON+= src/libs/3rdparty/botan/configure.py
REPLACE_PYTHON+= src/tools/icons/export.py
REPLACE_PYTHON+= tests/system/tools/findUnusedObjects.py
REPLACE_PYTHON+= tests/system/tools/objectsToTable.py
REPLACE_PYTHON+= scripts/checkInstalledFiles.py
REPLACE_PYTHON+= scripts/dependencyinfo.py
REPLACE_PYTHON+= scripts/deployqt.py
-REPLACE_PYTHON+= scripts/packageIfw.py
REPLACE_PYTHON+= scripts/packagePlugins.py
REPLACE_PYTHON+= scripts/uichanges.py
REPLACE_PERL+= doc/fixnavi.pl
REPLACE_PERL+= share/qtcreator/translations/check-ts.pl
REPLACE_PERL+= src/shared/qbs/doc/fixnavi.pl
-REPLACE_PERL+= tests/auto/qml/qmldesigner/bauhaustests/run_test.pl
REPLACE_PERL+= scripts/gcc2tasks.pl
REPLACE_PERL+= scripts/hasCopyright.pl
REPLACE_PERL+= scripts/krazy2tasks.pl
Index: pkgsrc/editors/qtcreator/PLIST
diff -u pkgsrc/editors/qtcreator/PLIST:1.2 pkgsrc/editors/qtcreator/PLIST:1.3
--- pkgsrc/editors/qtcreator/PLIST:1.2 Sat May 15 11:42:24 2021
+++ pkgsrc/editors/qtcreator/PLIST Sat Nov 20 20:51:14 2021
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2021/05/15 11:42:24 nia Exp $
+@comment $NetBSD: PLIST,v 1.3 2021/11/20 20:51:14 wiz Exp $
bin/qbs
bin/qbs-config
bin/qbs-config-ui
@@ -8,77 +8,77 @@ bin/qbs-setup-qt
bin/qbs-setup-toolchains
bin/qtcreator
lib/qtcreator/libAggregation.so
-lib/qtcreator/libAggregation.so.4
-lib/qtcreator/libAggregation.so.4.13
+lib/qtcreator/libAggregation.so.5
+lib/qtcreator/libAggregation.so.5.0
lib/qtcreator/libAggregation.so.${PKGVERSION}
lib/qtcreator/libCPlusPlus.so
-lib/qtcreator/libCPlusPlus.so.4
-lib/qtcreator/libCPlusPlus.so.4.13
+lib/qtcreator/libCPlusPlus.so.5
+lib/qtcreator/libCPlusPlus.so.5.0
lib/qtcreator/libCPlusPlus.so.${PKGVERSION}
lib/qtcreator/libClangsupport.so
-lib/qtcreator/libClangsupport.so.4
-lib/qtcreator/libClangsupport.so.4.13
+lib/qtcreator/libClangsupport.so.5
+lib/qtcreator/libClangsupport.so.5.0
lib/qtcreator/libClangsupport.so.${PKGVERSION}
lib/qtcreator/libExtensionSystem.so
-lib/qtcreator/libExtensionSystem.so.4
-lib/qtcreator/libExtensionSystem.so.4.13
+lib/qtcreator/libExtensionSystem.so.5
+lib/qtcreator/libExtensionSystem.so.5.0
lib/qtcreator/libExtensionSystem.so.${PKGVERSION}
lib/qtcreator/libGLSL.so
-lib/qtcreator/libGLSL.so.4
-lib/qtcreator/libGLSL.so.4.13
+lib/qtcreator/libGLSL.so.5
+lib/qtcreator/libGLSL.so.5.0
lib/qtcreator/libGLSL.so.${PKGVERSION}
lib/qtcreator/libKSyntaxHighlighting.so
-lib/qtcreator/libKSyntaxHighlighting.so.4
-lib/qtcreator/libKSyntaxHighlighting.so.4.13
+lib/qtcreator/libKSyntaxHighlighting.so.5
+lib/qtcreator/libKSyntaxHighlighting.so.5.0
lib/qtcreator/libKSyntaxHighlighting.so.${PKGVERSION}
lib/qtcreator/libLanguageServerProtocol.so
-lib/qtcreator/libLanguageServerProtocol.so.4
-lib/qtcreator/libLanguageServerProtocol.so.4.13
+lib/qtcreator/libLanguageServerProtocol.so.5
+lib/qtcreator/libLanguageServerProtocol.so.5.0
lib/qtcreator/libLanguageServerProtocol.so.${PKGVERSION}
lib/qtcreator/libLanguageUtils.so
-lib/qtcreator/libLanguageUtils.so.4
-lib/qtcreator/libLanguageUtils.so.4.13
+lib/qtcreator/libLanguageUtils.so.5
+lib/qtcreator/libLanguageUtils.so.5.0
lib/qtcreator/libLanguageUtils.so.${PKGVERSION}
lib/qtcreator/libModeling.so
-lib/qtcreator/libModeling.so.4
-lib/qtcreator/libModeling.so.4.13
+lib/qtcreator/libModeling.so.5
+lib/qtcreator/libModeling.so.5.0
lib/qtcreator/libModeling.so.${PKGVERSION}
lib/qtcreator/libQmlDebug.so
-lib/qtcreator/libQmlDebug.so.4
-lib/qtcreator/libQmlDebug.so.4.13
+lib/qtcreator/libQmlDebug.so.5
+lib/qtcreator/libQmlDebug.so.5.0
lib/qtcreator/libQmlDebug.so.${PKGVERSION}
lib/qtcreator/libQmlEditorWidgets.so
-lib/qtcreator/libQmlEditorWidgets.so.4
-lib/qtcreator/libQmlEditorWidgets.so.4.13
+lib/qtcreator/libQmlEditorWidgets.so.5
+lib/qtcreator/libQmlEditorWidgets.so.5.0
lib/qtcreator/libQmlEditorWidgets.so.${PKGVERSION}
lib/qtcreator/libQmlJS.so
-lib/qtcreator/libQmlJS.so.4
-lib/qtcreator/libQmlJS.so.4.13
+lib/qtcreator/libQmlJS.so.5
+lib/qtcreator/libQmlJS.so.5.0
lib/qtcreator/libQmlJS.so.${PKGVERSION}
lib/qtcreator/libQtcSsh.so
-lib/qtcreator/libQtcSsh.so.4
-lib/qtcreator/libQtcSsh.so.4.13
+lib/qtcreator/libQtcSsh.so.5
+lib/qtcreator/libQtcSsh.so.5.0
lib/qtcreator/libQtcSsh.so.${PKGVERSION}
lib/qtcreator/libSqlite.so
-lib/qtcreator/libSqlite.so.4
-lib/qtcreator/libSqlite.so.4.13
+lib/qtcreator/libSqlite.so.5
+lib/qtcreator/libSqlite.so.5.0
lib/qtcreator/libSqlite.so.${PKGVERSION}
lib/qtcreator/libTracing.so
-lib/qtcreator/libTracing.so.4
-lib/qtcreator/libTracing.so.4.13
+lib/qtcreator/libTracing.so.5
+lib/qtcreator/libTracing.so.5.0
lib/qtcreator/libTracing.so.${PKGVERSION}
lib/qtcreator/libUtils.so
-lib/qtcreator/libUtils.so.4
-lib/qtcreator/libUtils.so.4.13
+lib/qtcreator/libUtils.so.5
+lib/qtcreator/libUtils.so.5.0
lib/qtcreator/libUtils.so.${PKGVERSION}
lib/qtcreator/libqbscore.prl
lib/qtcreator/libqbscore.so
lib/qtcreator/libqbscore.so.1
-lib/qtcreator/libqbscore.so.1.17
-lib/qtcreator/libqbscore.so.1.17.0
+lib/qtcreator/libqbscore.so.1.20
+lib/qtcreator/libqbscore.so.1.20.1
lib/qtcreator/libyaml-cpp.so
-lib/qtcreator/libyaml-cpp.so.4
-lib/qtcreator/libyaml-cpp.so.4.13
+lib/qtcreator/libyaml-cpp.so.5
+lib/qtcreator/libyaml-cpp.so.5.0
lib/qtcreator/libyaml-cpp.so.${PKGVERSION}
lib/qtcreator/plugins/libAndroid.so
lib/qtcreator/plugins/libAutoTest.so
@@ -98,6 +98,7 @@ lib/qtcreator/plugins/libClassView.so
lib/qtcreator/plugins/libClearCase.so
lib/qtcreator/plugins/libCodePaster.so
lib/qtcreator/plugins/libCompilationDatabaseProjectManager.so
+lib/qtcreator/plugins/libConan.so
lib/qtcreator/plugins/libCore.so
lib/qtcreator/plugins/libCppEditor.so
lib/qtcreator/plugins/libCppTools.so
@@ -106,6 +107,7 @@ lib/qtcreator/plugins/libCtfVisualizer.s
lib/qtcreator/plugins/libDebugger.so
lib/qtcreator/plugins/libDesigner.so
lib/qtcreator/plugins/libDiffEditor.so
+lib/qtcreator/plugins/libDocker.so
lib/qtcreator/plugins/libEmacsKeys.so
lib/qtcreator/plugins/libFakeVim.so
lib/qtcreator/plugins/libGLSLEditor.so
@@ -170,7 +172,6 @@ libexec/qtcreator/qtc-askpass
libexec/qtcreator/qtcreator_process_stub
libexec/qtcreator/qtpromaker
libexec/qtcreator/sdktool
-share/applications/org.qt-project.qtcreator.desktop
share/doc/qtcreator/qtcreator-dev.qch
share/doc/qtcreator/qtcreator.qch
share/icons/hicolor/128x128/apps/QtProject-qtcreator.png
@@ -186,6 +187,7 @@ share/qtcreator/android/sdk_definitions.
share/qtcreator/cplusplus/examples/CMakeLists.txt
share/qtcreator/cplusplus/examples/clazy_example.cpp
share/qtcreator/cplusplus/examples/examples.pro
+share/qtcreator/cplusplus/examples/icontest.cpp
share/qtcreator/cplusplus/examples/tidy_example.cpp
share/qtcreator/cplusplus/examples/tidy_example.h
share/qtcreator/cplusplus/wrappedMingwHeaders/float.h
@@ -197,6 +199,7 @@ share/qtcreator/debugger/cdbbridge.py
share/qtcreator/debugger/creatortypes.py
share/qtcreator/debugger/dumper.py
share/qtcreator/debugger/gdbbridge.py
+share/qtcreator/debugger/gdbtracepoint.py
share/qtcreator/debugger/lldbbridge.py
share/qtcreator/debugger/misctypes.py
share/qtcreator/debugger/opencvtypes.py
@@ -208,16 +211,17 @@ share/qtcreator/debugger/stdtypes.py
share/qtcreator/debugger/utils.py
share/qtcreator/externaltools/lrelease.xml
share/qtcreator/externaltools/lupdate.xml
-share/qtcreator/externaltools/qmlscene.xml
-share/qtcreator/externaltools/qmlviewer.xml
+share/qtcreator/externaltools/qml.xml
share/qtcreator/externaltools/vi.xml
share/qtcreator/fonts/SourceCodePro-Bold.ttf
share/qtcreator/fonts/SourceCodePro-It.ttf
share/qtcreator/fonts/SourceCodePro-Regular.ttf
share/qtcreator/fonts/SourceCodePro.txt
share/qtcreator/generic-highlighter/syntax/alert.xml
+share/qtcreator/generic-highlighter/syntax/autoconf.xml
share/qtcreator/generic-highlighter/syntax/bash.xml
share/qtcreator/generic-highlighter/syntax/cmake.xml
+share/qtcreator/generic-highlighter/syntax/comments.xml
share/qtcreator/generic-highlighter/syntax/css.xml
share/qtcreator/generic-highlighter/syntax/doxygen.xml
share/qtcreator/generic-highlighter/syntax/dtd.xml
@@ -226,21 +230,28 @@ share/qtcreator/generic-highlighter/synt
share/qtcreator/generic-highlighter/syntax/java.xml
share/qtcreator/generic-highlighter/syntax/javadoc.xml
share/qtcreator/generic-highlighter/syntax/json.xml
+share/qtcreator/generic-highlighter/syntax/licenses/LICENSE.GPLv2
+share/qtcreator/generic-highlighter/syntax/licenses/LICENSE.GPLv3
+share/qtcreator/generic-highlighter/syntax/licenses/LICENSE.LGPLv21
+share/qtcreator/generic-highlighter/syntax/licenses/LICENSE.LGPLv3
share/qtcreator/generic-highlighter/syntax/makefile.xml
share/qtcreator/generic-highlighter/syntax/markdown.xml
share/qtcreator/generic-highlighter/syntax/modelines.xml
share/qtcreator/generic-highlighter/syntax/perl.xml
-share/qtcreator/generic-highlighter/syntax/perl6.xml
share/qtcreator/generic-highlighter/syntax/powershell.xml
share/qtcreator/generic-highlighter/syntax/python.xml
share/qtcreator/generic-highlighter/syntax/qdocconf.xml
share/qtcreator/generic-highlighter/syntax/ruby.xml
+share/qtcreator/generic-highlighter/syntax/spdx-comments.xml
share/qtcreator/generic-highlighter/syntax/valgrind-suppression.xml
share/qtcreator/generic-highlighter/syntax/xml.xml
share/qtcreator/generic-highlighter/syntax/yacc.xml
share/qtcreator/glsl/glsl_120.frag
share/qtcreator/glsl/glsl_120.vert
share/qtcreator/glsl/glsl_120_common.glsl
+share/qtcreator/glsl/glsl_330.frag
+share/qtcreator/glsl/glsl_330.vert
+share/qtcreator/glsl/glsl_330_common.glsl
share/qtcreator/glsl/glsl_es_100.frag
share/qtcreator/glsl/glsl_es_100.vert
share/qtcreator/glsl/glsl_es_100_common.glsl
@@ -249,6 +260,8 @@ share/qtcreator/indexer_preincludes/QtCo
share/qtcreator/indexer_preincludes/qglobal.h
share/qtcreator/indexer_preincludes/windows.h
share/qtcreator/modeleditor/standard.def
+share/qtcreator/package-manager/auto-setup.cmake
+share/qtcreator/package-manager/conan.cmake
share/qtcreator/qbs/share/qbs/examples/app-and-lib/app-and-lib.qbs
share/qtcreator/qbs/share/qbs/examples/app-and-lib/app/app.qbs
share/qtcreator/qbs/share/qbs/examples/app-and-lib/app/main.cpp
@@ -287,6 +300,13 @@ share/qtcreator/qbs/share/qbs/examples/b
share/qtcreator/qbs/share/qbs/examples/baremetal/cy7c68013a/nes-gamepads/regs.h
share/qtcreator/qbs/share/qbs/examples/baremetal/cy7c68013a/nes-gamepads/usb.c
share/qtcreator/qbs/share/qbs/examples/baremetal/cy7c68013a/nes-gamepads/usb.h
+share/qtcreator/qbs/share/qbs/examples/baremetal/esp8266/README.md
+share/qtcreator/qbs/share/qbs/examples/baremetal/esp8266/access-point/access-point.qbs
+share/qtcreator/qbs/share/qbs/examples/baremetal/esp8266/access-point/user_config.h
+share/qtcreator/qbs/share/qbs/examples/baremetal/esp8266/access-point/user_main.c
+share/qtcreator/qbs/share/qbs/examples/baremetal/esp8266/esp8266.qbs
+share/qtcreator/qbs/share/qbs/examples/baremetal/esp8266/qbs/imports/Esp8266SdkProbe.qbs
+share/qtcreator/qbs/share/qbs/examples/baremetal/esp8266/qbs/modules/esp8266_sdk/Esp8266SdkModule.qbs
share/qtcreator/qbs/share/qbs/examples/baremetal/msp430f5529/msp430f5529.qbs
share/qtcreator/qbs/share/qbs/examples/baremetal/msp430f5529/nes-gamepads/README.md
share/qtcreator/qbs/share/qbs/examples/baremetal/msp430f5529/nes-gamepads/gamepads.ld
@@ -314,12 +334,27 @@ share/qtcreator/qbs/share/qbs/examples/b
share/qtcreator/qbs/share/qbs/examples/baremetal/msp430f5529/redblink/redblink.qbs
share/qtcreator/qbs/share/qbs/examples/baremetal/msp430f5529/redblink/system.c
share/qtcreator/qbs/share/qbs/examples/baremetal/msp430f5529/redblink/system.h
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10001/greenblink/README.md
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10001/greenblink/gcc/flash.ld
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10001/greenblink/gcc/startup.s
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10001/greenblink/gpio.c
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10001/greenblink/gpio.h
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10001/greenblink/greenblink.qbs
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10001/greenblink/iar/flash.icf
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10001/greenblink/iar/startup.s
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10001/greenblink/keil/flash.sct
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10001/greenblink/keil/startup.s
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10001/greenblink/main.c
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10001/greenblink/system.h
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10001/pca10001.qbs
share/qtcreator/qbs/share/qbs/examples/baremetal/pca10040/greenblink/README.md
share/qtcreator/qbs/share/qbs/examples/baremetal/pca10040/greenblink/gcc/flash.ld
share/qtcreator/qbs/share/qbs/examples/baremetal/pca10040/greenblink/gcc/startup.s
share/qtcreator/qbs/share/qbs/examples/baremetal/pca10040/greenblink/gpio.c
share/qtcreator/qbs/share/qbs/examples/baremetal/pca10040/greenblink/gpio.h
share/qtcreator/qbs/share/qbs/examples/baremetal/pca10040/greenblink/greenblink.qbs
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10040/greenblink/iar/flash.icf
+share/qtcreator/qbs/share/qbs/examples/baremetal/pca10040/greenblink/iar/startup.s
share/qtcreator/qbs/share/qbs/examples/baremetal/pca10040/greenblink/keil/flash.sct
share/qtcreator/qbs/share/qbs/examples/baremetal/pca10040/greenblink/keil/startup.s
share/qtcreator/qbs/share/qbs/examples/baremetal/pca10040/greenblink/main.c
@@ -331,6 +366,8 @@ share/qtcreator/qbs/share/qbs/examples/b
share/qtcreator/qbs/share/qbs/examples/baremetal/stm32f103/greenblink/gpio.c
share/qtcreator/qbs/share/qbs/examples/baremetal/stm32f103/greenblink/gpio.h
share/qtcreator/qbs/share/qbs/examples/baremetal/stm32f103/greenblink/greenblink.qbs
+share/qtcreator/qbs/share/qbs/examples/baremetal/stm32f103/greenblink/iar/flash.icf
+share/qtcreator/qbs/share/qbs/examples/baremetal/stm32f103/greenblink/iar/startup.s
share/qtcreator/qbs/share/qbs/examples/baremetal/stm32f103/greenblink/keil/flash.sct
share/qtcreator/qbs/share/qbs/examples/baremetal/stm32f103/greenblink/keil/startup.s
share/qtcreator/qbs/share/qbs/examples/baremetal/stm32f103/greenblink/main.c
@@ -395,6 +432,10 @@ share/qtcreator/qbs/share/qbs/examples/c
share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/en.lproj/InfoPlist.strings
share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/en.lproj/LICENSE
share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/en.lproj/MainMenu.xib
+share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/en_US.lproj/Credits.rtf
+share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/en_US.lproj/InfoPlist.strings
+share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/en_US.lproj/LICENSE
+share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/en_US.lproj/MainMenu.xib
share/qtcreator/qbs/share/qbs/examples/cocoa-application/CocoaApplication/main.m
share/qtcreator/qbs/share/qbs/examples/cocoa-application/app.qbs
share/qtcreator/qbs/share/qbs/examples/cocoa-application/cocoa-application.qbs
@@ -404,11 +445,9 @@ share/qtcreator/qbs/share/qbs/examples/c
share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/AppDelegate.m
share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/CocoaTouchApplication-Info.plist
share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/CocoaTouchApplication-Prefix.pch
-share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/Default-568h%2x.png@localhost
-share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/Default.png
-share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/Default%2x.png@localhost
share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/DetailViewController.h
share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/DetailViewController.m
+share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/LaunchScreen.storyboard
share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/MasterViewController.h
share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/MasterViewController.m
share/qtcreator/qbs/share/qbs/examples/cocoa-touch-application/CocoaTouchApplication/en.lproj/DetailViewController_iPad.xib
@@ -487,6 +526,8 @@ share/qtcreator/qbs/share/qbs/imports/qb
share/qtcreator/qbs/share/qbs/imports/qbs/Probes/ClangClBinaryProbe.qbs
share/qtcreator/qbs/share/qbs/imports/qbs/Probes/ClangClProbe.qbs
share/qtcreator/qbs/share/qbs/imports/qbs/Probes/ConanfileProbe.qbs
+share/qtcreator/qbs/share/qbs/imports/qbs/Probes/CosmicProbe.qbs
+share/qtcreator/qbs/share/qbs/imports/qbs/Probes/DmcProbe.qbs
share/qtcreator/qbs/share/qbs/imports/qbs/Probes/FrameworkProbe.qbs
share/qtcreator/qbs/share/qbs/imports/qbs/Probes/GccBinaryProbe.qbs
share/qtcreator/qbs/share/qbs/imports/qbs/Probes/GccProbe.qbs
@@ -507,6 +548,7 @@ share/qtcreator/qbs/share/qbs/imports/qb
share/qtcreator/qbs/share/qbs/imports/qbs/Probes/SdccProbe.qbs
share/qtcreator/qbs/share/qbs/imports/qbs/Probes/TypeScriptProbe.qbs
share/qtcreator/qbs/share/qbs/imports/qbs/Probes/WiXProbe.qbs
+share/qtcreator/qbs/share/qbs/imports/qbs/Probes/XcodeLocationProbe.qbs
share/qtcreator/qbs/share/qbs/imports/qbs/Probes/XcodeProbe.qbs
share/qtcreator/qbs/share/qbs/imports/qbs/Probes/path-probe.js
share/qtcreator/qbs/share/qbs/imports/qbs/UnixUtils/unix-utils.js
@@ -554,6 +596,7 @@ share/qtcreator/qbs/share/qbs/module-pro
share/qtcreator/qbs/share/qbs/module-providers/Qt/templates/qmlcache.qbs
share/qtcreator/qbs/share/qbs/module-providers/Qt/templates/quick.js
share/qtcreator/qbs/share/qbs/module-providers/Qt/templates/quick.qbs
+share/qtcreator/qbs/share/qbs/module-providers/Qt/templates/rcc.js
share/qtcreator/qbs/share/qbs/module-providers/Qt/templates/scxml.qbs
share/qtcreator/qbs/share/qbs/module-providers/__fallback/fallback.qbs
share/qtcreator/qbs/share/qbs/module-providers/__fallback/provider.qbs
@@ -579,6 +622,12 @@ share/qtcreator/qbs/share/qbs/modules/cl
share/qtcreator/qbs/share/qbs/modules/cli/cli.js
share/qtcreator/qbs/share/qbs/modules/cli/mono.qbs
share/qtcreator/qbs/share/qbs/modules/cli/windows-dotnet.qbs
+share/qtcreator/qbs/share/qbs/modules/codesign/CodeSignModule.qbs
+share/qtcreator/qbs/share/qbs/modules/codesign/android.qbs
+share/qtcreator/qbs/share/qbs/modules/codesign/apple.qbs
+share/qtcreator/qbs/share/qbs/modules/codesign/codesign.js
+share/qtcreator/qbs/share/qbs/modules/codesign/noop.qbs
+share/qtcreator/qbs/share/qbs/modules/codesign/signtool.qbs
share/qtcreator/qbs/share/qbs/modules/cpp/CppModule.qbs
share/qtcreator/qbs/share/qbs/modules/cpp/DarwinGCC.qbs
share/qtcreator/qbs/share/qbs/modules/cpp/GenericGCC.qbs
@@ -586,8 +635,12 @@ share/qtcreator/qbs/share/qbs/modules/cp
share/qtcreator/qbs/share/qbs/modules/cpp/MingwBaseModule.qbs
share/qtcreator/qbs/share/qbs/modules/cpp/UnixGCC.qbs
share/qtcreator/qbs/share/qbs/modules/cpp/android-gcc.qbs
+share/qtcreator/qbs/share/qbs/modules/cpp/cosmic.js
+share/qtcreator/qbs/share/qbs/modules/cpp/cosmic.qbs
share/qtcreator/qbs/share/qbs/modules/cpp/cpp.js
share/qtcreator/qbs/share/qbs/modules/cpp/darwin.js
+share/qtcreator/qbs/share/qbs/modules/cpp/dmc.js
+share/qtcreator/qbs/share/qbs/modules/cpp/dmc.qbs
share/qtcreator/qbs/share/qbs/modules/cpp/freebsd-gcc.qbs
share/qtcreator/qbs/share/qbs/modules/cpp/freebsd.js
share/qtcreator/qbs/share/qbs/modules/cpp/gcc.js
@@ -635,6 +688,7 @@ share/qtcreator/qbs/share/qbs/modules/no
share/qtcreator/qbs/share/qbs/modules/nsis/NSISModule.qbs
share/qtcreator/qbs/share/qbs/modules/pkgconfig/pkgconfig.qbs
share/qtcreator/qbs/share/qbs/modules/protobuf/cpp/protobufcpp.qbs
+share/qtcreator/qbs/share/qbs/modules/protobuf/nanopb/nanopb.qbs
share/qtcreator/qbs/share/qbs/modules/protobuf/objc/protobufobjc.qbs
share/qtcreator/qbs/share/qbs/modules/protobuf/protobuf.js
share/qtcreator/qbs/share/qbs/modules/protobuf/protobufbase.qbs
@@ -745,6 +799,8 @@ share/qtcreator/qml/qmlpuppet/commands/r
share/qtcreator/qml/qmlpuppet/commands/removesharedmemorycommand.h
share/qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.cpp
share/qtcreator/qml/qmlpuppet/commands/reparentinstancescommand.h
+share/qtcreator/qml/qmlpuppet/commands/requestmodelnodepreviewimagecommand.cpp
+share/qtcreator/qml/qmlpuppet/commands/requestmodelnodepreviewimagecommand.h
share/qtcreator/qml/qmlpuppet/commands/scenecreatedcommand.h
share/qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.cpp
share/qtcreator/qml/qmlpuppet/commands/statepreviewimagechangedcommand.h
@@ -782,7 +838,11 @@ share/qtcreator/qml/qmlpuppet/container/
share/qtcreator/qml/qmlpuppet/container/sharedmemory.h
share/qtcreator/qml/qmlpuppet/container/sharedmemory_qt.cpp
share/qtcreator/qml/qmlpuppet/container/sharedmemory_unix.cpp
+share/qtcreator/qml/qmlpuppet/editor3d_qt5.qrc
+share/qtcreator/qml/qmlpuppet/editor3d_qt6.qrc
share/qtcreator/qml/qmlpuppet/html/welcome.html
+share/qtcreator/qml/qmlpuppet/images/non-visual-component.png
+share/qtcreator/qml/qmlpuppet/images/non-visual-component%2x.png@localhost
share/qtcreator/qml/qmlpuppet/images/template_image.png
share/qtcreator/qml/qmlpuppet/images/webkit.png
share/qtcreator/qml/qmlpuppet/instances/instances.pri
@@ -794,39 +854,8 @@ share/qtcreator/qml/qmlpuppet/interfaces
share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceglobal.h
share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.cpp
share/qtcreator/qml/qmlpuppet/interfaces/nodeinstanceserverinterface.h
-share/qtcreator/qml/qmlpuppet/mockfiles/AdjustableArrow.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/AreaLightHandle.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/Arrow.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/AutoScaleHelper.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/AxisHelper.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/AxisHelperArm.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/CameraFrustum.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/CameraGizmo.qml
share/qtcreator/qml/qmlpuppet/mockfiles/Dialog.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/DirectionalDraggable.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/EditCameraController.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/EditView3D.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/FadeHandle.qml
share/qtcreator/qml/qmlpuppet/mockfiles/GenericBackend.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/HelperGrid.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/IconGizmo.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/IconRenderer3D.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/LightGizmo.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/LightIconGizmo.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/LightModel.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/Line3D.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/MoveGizmo.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/Overlay2D.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/PlanarDraggable.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/PlanarMoveHandle.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/PlanarScaleHandle.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/RotateGizmo.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/RotateRing.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/ScaleGizmo.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/ScaleRod.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/SceneView3D.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/SelectionBox.qml
-share/qtcreator/qml/qmlpuppet/mockfiles/SpotLightHandle.qml
share/qtcreator/qml/qmlpuppet/mockfiles/SwipeView.qml
share/qtcreator/qml/qmlpuppet/mockfiles/ToggleButton.qml
share/qtcreator/qml/qmlpuppet/mockfiles/ToolBarButton.qml
@@ -837,6 +866,8 @@ share/qtcreator/qml/qmlpuppet/mockfiles/
share/qtcreator/qml/qmlpuppet/mockfiles/images/directional%2x.png@localhost
share/qtcreator/qml/qmlpuppet/mockfiles/images/editor_camera.png
share/qtcreator/qml/qmlpuppet/mockfiles/images/editor_camera%2x.png@localhost
+share/qtcreator/qml/qmlpuppet/mockfiles/images/editor_particlesystem.png
+share/qtcreator/qml/qmlpuppet/mockfiles/images/editor_particlesystem%2x.png@localhost
share/qtcreator/qml/qmlpuppet/mockfiles/images/point.png
share/qtcreator/qml/qmlpuppet/mockfiles/images/point%2x.png@localhost
share/qtcreator/qml/qmlpuppet/mockfiles/images/spot.png
@@ -846,12 +877,87 @@ share/qtcreator/qml/qmlpuppet/mockfiles/
share/qtcreator/qml/qmlpuppet/mockfiles/meshes/ring.mesh
share/qtcreator/qml/qmlpuppet/mockfiles/meshes/ringselect.mesh
share/qtcreator/qml/qmlpuppet/mockfiles/meshes/scalerod.mesh
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/AdjustableArrow.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/AreaLightHandle.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/Arrow.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/AutoScaleHelper.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/AxisHelper.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/AxisHelperArm.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/CameraFrustum.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/CameraGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/DirectionalDraggable.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/EditCameraController.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/EditView3D.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/FadeHandle.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/HelperGrid.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/IconGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/IconRenderer3D.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/LightGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/LightIconGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/LightModel.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/Line3D.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/MaterialNodeView.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/ModelNode2DImageView.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/ModelNode3DImageView.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/ModelNodeView.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/MoveGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/NodeNodeView.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/Overlay2D.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/PlanarDraggable.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/PlanarMoveHandle.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/PlanarScaleHandle.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/RotateGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/RotateRing.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/ScaleGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/ScaleRod.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/SceneView3D.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/SelectionBox.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt5/SpotLightHandle.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/AdjustableArrow.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/AreaLightHandle.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/Arrow.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/AutoScaleHelper.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/AxisHelper.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/AxisHelperArm.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/CameraFrustum.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/CameraGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/DirectionalDraggable.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/EditCameraController.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/EditView3D.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/FadeHandle.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/HelperGrid.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/IconGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/IconRenderer3D.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/LightGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/LightIconGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/LightModel.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/Line3D.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/MaterialNodeView.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/ModelNode2DImageView.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/ModelNode3DImageView.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/ModelNodeView.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/MoveGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/NodeNodeView.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/Overlay2D.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/ParticleSystemGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/PlanarDraggable.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/PlanarMoveHandle.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/PlanarScaleHandle.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/RotateGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/RotateRing.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/ScaleGizmo.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/ScaleRod.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/SceneView3D.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/SelectionBox.qml
+share/qtcreator/qml/qmlpuppet/mockfiles/qt6/SpotLightHandle.qml
share/qtcreator/qml/qmlpuppet/qml2puppet/Info.plist
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/camerageometry.cpp
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/camerageometry.h
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/editor3d.pri
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/generalhelper.cpp
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/generalhelper.h
+share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/geometrybase.cpp
+share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/geometrybase.h
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/gridgeometry.cpp
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/gridgeometry.h
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/icongizmoimageprovider.cpp
@@ -862,11 +968,16 @@ share/qtcreator/qml/qmlpuppet/qml2puppet
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/linegeometry.h
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/mousearea3d.cpp
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/mousearea3d.h
+share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/qt5compat/qquick3darealight.cpp
+share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/qt5compat/qquick3darealight_p.h
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/selectionboxgeometry.cpp
share/qtcreator/qml/qmlpuppet/qml2puppet/editor3d/selectionboxgeometry.h
share/qtcreator/qml/qmlpuppet/qml2puppet/iconrenderer/iconrenderer.cpp
share/qtcreator/qml/qmlpuppet/qml2puppet/iconrenderer/iconrenderer.h
share/qtcreator/qml/qmlpuppet/qml2puppet/iconrenderer/iconrenderer.pri
+share/qtcreator/qml/qmlpuppet/qml2puppet/import3d/import3d.cpp
+share/qtcreator/qml/qmlpuppet/qml2puppet/import3d/import3d.h
+share/qtcreator/qml/qmlpuppet/qml2puppet/import3d/import3d.pri
share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.cpp
share/qtcreator/qml/qmlpuppet/qml2puppet/instances/anchorchangesnodeinstance.h
share/qtcreator/qml/qmlpuppet/qml2puppet/instances/behaviornodeinstance.cpp
@@ -902,6 +1013,8 @@ share/qtcreator/qml/qmlpuppet/qml2puppet
share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qmltransitionnodeinstance.h
share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt3dpresentationnodeinstance.cpp
share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt3dpresentationnodeinstance.h
+share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5captureimagenodeinstanceserver.cpp
+share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5captureimagenodeinstanceserver.h
share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5capturepreviewnodeinstanceserver.cpp
share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5capturepreviewnodeinstanceserver.h
share/qtcreator/qml/qmlpuppet/qml2puppet/instances/qt5informationnodeinstanceserver.cpp
@@ -940,11 +1053,16 @@ share/qtcreator/qml/qmlpuppet/qmlpuppet.
share/qtcreator/qml/qmlpuppet/qmlpuppet_utilities.pri
share/qtcreator/qml/qmlpuppet/types/enumeration.h
share/qtcreator/qml/qmlpuppet/types/types.pri
+share/qtcreator/qmldesigner/formatconfiguration.json
+share/qtcreator/qmldesigner/itemLibraryQmlSources/AddImport.qml
+share/qtcreator/qmldesigner/itemLibraryQmlSources/Assets.qml
share/qtcreator/qmldesigner/itemLibraryQmlSources/ItemDelegate.qml
share/qtcreator/qmldesigner/itemLibraryQmlSources/ItemsView.qml
+share/qtcreator/qmldesigner/itemLibraryQmlSources/LibraryHeader.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/BooleanEditorTemplate.template
share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/ColorEditorTemplate.template
share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/FontEditorTemplate.template
+share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/ImageEditorTemplate.template
share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/IntEditorTemplate.template
share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/RealEditorTemplate.template
share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/RectangleEditorTemplate.template
@@ -952,6 +1070,8 @@ share/qtcreator/qmldesigner/propertyEdit
share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/TemplateTypes.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/TextEditorTemplate.template
share/qtcreator/qmldesigner/propertyEditorQmlSources/PropertyTemplates/UrlEditorTemplate.template
+share/qtcreator/qmldesigner/propertyEditorQmlSources/Qt5HelperWindow.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/Qt6HelperWindow.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQml/ConnectionsSpecifics.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQml/QtObjectPane.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AdvancedSection.qml
@@ -964,10 +1084,54 @@ share/qtcreator/qmldesigner/propertyEdit
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ColorAnimationSpecifics.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ColumnSpecifics.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ConnectionsSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/AbstractButtonSection.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/BusyIndicatorSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ButtonSection.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ButtonSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckBoxSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckDelegateSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/CheckSection.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ComboBoxSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ContainerSection.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ControlSection.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DelayButtonSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialogSpecifics.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DrawerSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/FrameSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/GroupBoxSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/InsetSection.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ItemDelegateSection.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ItemDelegateSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/LabelSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageIndicatorSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PageSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSection.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PaneSpecifics.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSection.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/PopupSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ProgressBarSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RadioButtonSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RadioDelegateSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RangeSliderSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/RoundButtonSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ScrollViewSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SliderSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/StackViewSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeDelegateSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwipeViewSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwitchDelegateSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SwitchSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabBarSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TabButtonSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextAreaSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextFieldSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TextSection.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolBarSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolButtonSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ToolSeparatorSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlickableSpecifics.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlipableSpecifics.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml
@@ -977,9 +1141,12 @@ share/qtcreator/qmldesigner/propertyEdit
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ImageSpecifics.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ItemPane.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayerSection.qml
-share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutPoperties.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutProperties.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/LayoutSection.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/ColumnLayoutSpecifics.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/GridLayoutSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/RowLayoutSpecifics.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Layouts/StackLayoutSpecifics.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/ListViewSpecifics.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/MouseAreaSpecifics.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/NumberAnimationSpecifics.qml
@@ -1003,57 +1170,75 @@ share/qtcreator/qmldesigner/propertyEdit
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/emptyPane.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/project.qmlproject
share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick3D/Object3DPane.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/RegExpValidator.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AbstractButton.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ActionIndicator.qml
-share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AligmentHorizontalButtons.qml
-share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AligmentVerticalButtons.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AlignmentHorizontalButtons.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AlignmentVerticalButtons.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/AnchorButtons.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/BoolButtonRowButton.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Button.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ButtonRow.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ButtonRow2.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ButtonRowButton.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/CharacterSection.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/CheckBox.qml
-share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorButton.qml
-share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorCheckButton.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorEditor.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorLine.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorLogic.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorPalette.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ColorPicker.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComboBox.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComponentButton.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ComponentSection.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Constants.js
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ControlLabel.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Controller.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/DoubleSpinBox.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/EditableListView.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExpandingSpacer.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExpressionTextField.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ExtendedFunctionLogic.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FlickableGeometrySection.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FlickableSection.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontComboBox.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontExtrasSection.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontSection.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/FontStyleButtons.qml
-share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientDialogPopup.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientLine.qml
-share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientPopupIndicator.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientPresetList.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientPresetTabContent.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/GradientPropertySpinBox.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/HorizontalScrollBar.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/HueSlider.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/IconIndicator.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/IconLabel.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ImagePreviewTooltipArea.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ImageSection.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ItemFilterComboBox.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Label.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/LineEdit.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/LinkIndicator2D.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ListViewComboBox.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/LuminanceSlider.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/MarginSection.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/MultiIconLabel.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OpacitySlider.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OriginControl.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OriginIndicator.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/OriginSelector.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PaddingSection.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PropertyEditorPane.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/PropertyLabel.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/RoundedPanel.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ScrollView.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SecondColumnLayout.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Section.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SectionLayout.qml
-share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SimpleColorPalette.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/Spacer.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/SpinBox.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/StandardTextSection.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/TextExtrasSection.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/ToolTipArea.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/UrlChooser.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/HelperWidgets/VerticalScrollBar.qml
@@ -1085,10 +1270,14 @@ share/qtcreator/qmldesigner/propertyEdit
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ComboBox.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ComboBoxInput.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ContextMenu.qml
-share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ExpandingSpacer.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/InfinityLoopIndicator.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/ItemDelegate.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/LinkIndicator2D.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/LinkIndicator3D.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/LinkIndicator3DComponent.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/Menu.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/MenuItem.qml
+share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/MenuItemWithIcon.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/MenuSeparator.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RealSliderPopup.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/RealSpinBox.qml
@@ -1116,8 +1305,14 @@ share/qtcreator/qmldesigner/propertyEdit
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/Values.qml
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/icons.ttf
share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioTheme/qmldir
+share/qtcreator/qmldesigner/qt4mcu/metadata.qml
+share/qtcreator/qmldesigner/qt4mcu/qul-14.qml
+share/qtcreator/qmldesigner/qt4mcu/qul-17.qml
+share/qtcreator/qmldesigner/qt4mcu/qul-18.qml
+share/qtcreator/qmldesigner/qt4mcu/qul-19.qml
share/qtcreator/qmldesigner/statesEditorQmlSources/StatesDelegate.qml
share/qtcreator/qmldesigner/statesEditorQmlSources/StatesList.qml
+share/qtcreator/qmldesigner/statesEditorQmlSources/images/checkers.png
share/qtcreator/qmldesigner/workspacePresets/3D_Preset.wrk
share/qtcreator/qmldesigner/workspacePresets/Essentials.wrk
share/qtcreator/qmlicons/Qt/16x16/BorderImage.png
@@ -1210,7 +1405,7 @@ share/qtcreator/templates/wizards/autote
share/qtcreator/templates/wizards/autotest/files/tst_main.cpp
share/qtcreator/templates/wizards/autotest/files/tst_qml.tmpl
share/qtcreator/templates/wizards/autotest/files/tst_src.cpp
-share/qtcreator/templates/wizards/autotest/files/tst_src.h
+share/qtcreator/templates/wizards/autotest/files/tst_src_gt.cpp
share/qtcreator/templates/wizards/autotest/wizard.json
share/qtcreator/templates/wizards/classes/cpp/file.cpp
share/qtcreator/templates/wizards/classes/cpp/file.h
@@ -1409,12 +1604,13 @@ share/qtcreator/templates/wizards/projec
share/qtcreator/templates/wizards/projects/vcs/subversion/icon.png
share/qtcreator/templates/wizards/projects/vcs/subversion/icon%2x.png@localhost
share/qtcreator/templates/wizards/projects/vcs/subversion/wizard.json
+share/qtcreator/templates/wizards/qtcreatorplugin/CMakeLists.txt
share/qtcreator/templates/wizards/qtcreatorplugin/MyPlugin.json.in
-share/qtcreator/templates/wizards/qtcreatorplugin/github_workflow_README.md
-share/qtcreator/templates/wizards/qtcreatorplugin/github_workflow_build_qmake.yml
+share/qtcreator/templates/wizards/qtcreatorplugin/README.md
+share/qtcreator/templates/wizards/qtcreatorplugin/github_workflows_README.md
+share/qtcreator/templates/wizards/qtcreatorplugin/github_workflows_build_cmake.yml
share/qtcreator/templates/wizards/qtcreatorplugin/myplugin.cpp
share/qtcreator/templates/wizards/qtcreatorplugin/myplugin.h
-share/qtcreator/templates/wizards/qtcreatorplugin/myplugin.pro
share/qtcreator/templates/wizards/qtcreatorplugin/myplugin_global.h
share/qtcreator/templates/wizards/qtcreatorplugin/mypluginconstants.h
share/qtcreator/templates/wizards/qtcreatorplugin/qtcreatorplugin.png
Index: pkgsrc/editors/qtcreator/distinfo
diff -u pkgsrc/editors/qtcreator/distinfo:1.4 pkgsrc/editors/qtcreator/distinfo:1.5
--- pkgsrc/editors/qtcreator/distinfo:1.4 Tue Oct 26 10:21:38 2021
+++ pkgsrc/editors/qtcreator/distinfo Sat Nov 20 20:51:14 2021
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.4 2021/10/26 10:21:38 nia Exp $
+$NetBSD: distinfo,v 1.5 2021/11/20 20:51:14 wiz Exp $
-BLAKE2s (qt-creator-opensource-src-4.13.2.zip) = 248b4ae00c91184d9b8634ea6d2b4dfe8dc2362b12d4c1819bf69ad3390b6d8d
-SHA512 (qt-creator-opensource-src-4.13.2.zip) = efbe7f4ee6ccfcd32ecd182e4a7c88023df86790771c1621b732530fa8bb1f125f0e809c92806903e401a6192df9b3876cc87bae4b504c4e4fbf2e5407b0203a
-Size (qt-creator-opensource-src-4.13.2.zip) = 65177262 bytes
-SHA1 (patch-qtcreator.pro) = 7f96fc4106ed17e4f7c802ba649392125e23d0c4
+BLAKE2s (qt-creator-opensource-src-5.0.3.zip) = 961dcaa2d6b6e2b739d774f4a7b0090730bad4b5cf5c93a80f28c39caafdd9a3
+SHA512 (qt-creator-opensource-src-5.0.3.zip) = 9ba7d7a1b506039460efedc9defe974c06905b5024f3e33de2328dcac335ba58d24c2c73ed2083f40305c4393507d6257ff755e2bfe3692cffd601f50bfce131
+Size (qt-creator-opensource-src-5.0.3.zip) = 72614121 bytes
+SHA1 (patch-share_share.pro) = e6f9448295a6eeb78b12979684b53ea29649da95
+SHA1 (patch-src_libs_3rdparty_sqlite_sqlite3.c) = fadde723c6e4fe758d9d66e00e95044755913b92
Added files:
Index: pkgsrc/editors/qtcreator/patches/patch-share_share.pro
diff -u /dev/null pkgsrc/editors/qtcreator/patches/patch-share_share.pro:1.1
--- /dev/null Sat Nov 20 20:51:14 2021
+++ pkgsrc/editors/qtcreator/patches/patch-share_share.pro Sat Nov 20 20:51:14 2021
@@ -0,0 +1,36 @@
+$NetBSD: patch-share_share.pro,v 1.1 2021/11/20 20:51:14 wiz Exp $
+
+Install desktop files on non-Linux too.
+
+--- share/share.pro.orig 2021-11-03 11:13:10.000000000 +0000
++++ share/share.pro
+@@ -3,20 +3,18 @@ SUBDIRS = qtcreator/static.pro
+
+ include(../qtcreator.pri)
+
+-linux {
+- appdata = $$cat($$PWD/metainfo/org.qt-project.qtcreator.appdata.xml.cmakein, blob)
+- appdata = $$replace(appdata, \\$\\{IDE_VERSION_DISPLAY\\}, $$QTCREATOR_DISPLAY_VERSION)
+- appdata = $$replace(appdata, \\$\\{DATE_ATTRIBUTE\\}, "")
+- write_file($$OUT_PWD/metainfo/org.qt-project.qtcreator.appdata.xml, appdata)
++appdata = $$cat($$PWD/metainfo/org.qt-project.qtcreator.appdata.xml.cmakein, blob)
++appdata = $$replace(appdata, \\$\\{IDE_VERSION_DISPLAY\\}, $$QTCREATOR_DISPLAY_VERSION)
++appdata = $$replace(appdata, \\$\\{DATE_ATTRIBUTE\\}, "")
++write_file($$OUT_PWD/metainfo/org.qt-project.qtcreator.appdata.xml, appdata)
+
+- appstream.files = $$OUT_PWD/metainfo/org.qt-project.qtcreator.appdata.xml
+- appstream.path = $$QTC_PREFIX/share/metainfo/
++appstream.files = $$OUT_PWD/metainfo/org.qt-project.qtcreator.appdata.xml
++appstream.path = $$QTC_PREFIX/share/metainfo/
+
+- desktop.files = share/applications/org.qt-project.qtcreator.desktop
+- desktop.path = $$QTC_PREFIX/share/applications/
++desktop.files = share/applications/org.qt-project.qtcreator.desktop
++desktop.path = $$QTC_PREFIX/share/applications/
+
+- INSTALLS += appstream desktop
+-}
++INSTALLS += appstream desktop
+
+ defineTest(hasLupdate) {
+ cmd = $$eval(QT_TOOL.lupdate.binary)
Index: pkgsrc/editors/qtcreator/patches/patch-src_libs_3rdparty_sqlite_sqlite3.c
diff -u /dev/null pkgsrc/editors/qtcreator/patches/patch-src_libs_3rdparty_sqlite_sqlite3.c:1.1
--- /dev/null Sat Nov 20 20:51:14 2021
+++ pkgsrc/editors/qtcreator/patches/patch-src_libs_3rdparty_sqlite_sqlite3.c Sat Nov 20 20:51:14 2021
@@ -0,0 +1,17 @@
+$NetBSD: patch-src_libs_3rdparty_sqlite_sqlite3.c,v 1.1 2021/11/20 20:51:14 wiz Exp $
+
+By default, the code tries to use localtime_s and fails.
+
+--- src/libs/3rdparty/sqlite/sqlite3.c.orig 2021-11-03 11:13:14.000000000 +0000
++++ src/libs/3rdparty/sqlite/sqlite3.c
+@@ -22478,6 +22478,10 @@ static void clearYMD_HMS_TZ(DateTime *p)
+ ** already, check for an MSVC build environment that provides
+ ** localtime_s().
+ */
++#ifdef __NetBSD__
++#undef HAVE_LOCALTIME_R
++#define HAVE_LOCALTIME_R 1
++#endif
+ #if !HAVE_LOCALTIME_R && !HAVE_LOCALTIME_S \
+ && defined(_MSC_VER) && defined(_CRT_INSECURE_DEPRECATE)
+ #undef HAVE_LOCALTIME_S
Home |
Main Index |
Thread Index |
Old Index