aboutsummaryrefslogtreecommitdiffstats
path: root/changelogs
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2019-02-12 11:08:41 +0100
committerChristian Kandeler <christian.kandeler@qt.io>2019-02-13 09:30:09 +0000
commitc05b6dfac4df3956f9e11ffada7e9580cecb8c82 (patch)
tree6e0c97ebe2b71535405469cfee67012178a3530a /changelogs
parentb907fb1fef8ba704dde383c2d9bb2065cddca515 (diff)
Add change log for 1.13
Change-Id: Ia09223e5b3f07b9ef69ff0e9d462d5ddf5aa3b7d Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'changelogs')
-rw-r--r--changelogs/changes-1.13.0.md37
1 files changed, 37 insertions, 0 deletions
diff --git a/changelogs/changes-1.13.0.md b/changelogs/changes-1.13.0.md
new file mode 100644
index 000000000..37e4da006
--- /dev/null
+++ b/changelogs/changes-1.13.0.md
@@ -0,0 +1,37 @@
+# General
+* Added a lot more documentation.
+* The `--show-progress` command line option is now supported on Windows.
+
+# Language
+* Introduced module providers.
+* The `Depends` item now falls back to `pkg-config` to locate dependencies whose names do not
+ correspond to a qbs module.
+* Added the concept of job pools for limiting concurrent execution of commands by type.
+* Added support for rules without output artifacts.
+* Added `atEnd` function to the `Process` service.
+* Added `canonicalPath` function to the `FileInfo` service.
+* Removed the need to add "import qbs" at the head of project files.
+* The `Application`, `DynamicLibrary` and `StaticLibrary` items now have properties for more
+ convenient installation of target binaries.
+
+# C/C++ Support
+* Added recursive dependency scanning of GNU ld linkerscripts.
+* Added new `cpp` property `linkerVariant` to force use of `gold`, `bfd` or `lld`.
+
+# Qt Support
+* It is no longer required to call `setup-qt` before building Qt projects.
+* Introduced the property `Qt.core.enableBigResources` for the creation of "big" Qt resources.
+* Static builds now pull in the default set of plugins as specified by Qt, and the user can
+ specify the set of plugins by type.
+* Files can be explicitly tagged as mocable now.
+
+# Other modules
+* Added `protobuf` support for C++ and Objective-C.
+* Introduced the `texttemplate` module, a facility similar to qmake's `SUBSTITUTES` feature.
+
+# Android Support
+* The `AndroidApk` item was deprecated, a normal `Application` item can be used instead.
+* Building Qt apps is properly supported now, by making use of the `androiddeployqt` tool.
+
+# Autotest support
+* Introduced the `autotest` module.