summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* QbsProjectManager: Fix qbs build against external qbsChristian Kandeler2018-07-201-1/+1
| | | | | Change-Id: Iccc0b340498e363fa6c8df39bd0949f55bddd77a Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
* Doc: Describe newly supported Qt Quick Controls 2Leena Miettinen2018-07-191-3/+27
| | | | | | | | Support for several controls has been added to the Library in the Design mode. Change-Id: I9822f7379991eea3b32f47574e3c3548445d538d Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* Debugger: Fix breakpoint disabling and enabling in for QMLUlf Hermann2018-07-191-10/+7
| | | | | | | | | | | | | | | | As QML currently does not expose a command to atomically enable or disable a breakpoint, we need to remove and re-insert it. The previous code scheduled the removal through a timer, and depending on if the timer hit before the insertion or after, the operation was successful or not. As the QML engine doesn't have to be in a specific state to insert and remove breakpoints, we can just directly send the messages instead and therefore be certain that they arrive in the right order. Task-number: QTCREATORBUG-20795 Change-Id: If69797b2c75e1107ad552f88e709e1580b4164db Reviewed-by: hjk <hjk@qt.io>
* Update danish (da) translation for Qt Creator 4.7scootergrisen2018-07-191-4684/+2812
| | | | | Change-Id: Ia9e7f40283fe3f257fe288df6a8ca1bb02a68de0 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
* Version bump to 4.7.1Eike Ziller2018-07-182-4/+4
| | | | | Change-Id: I428ed0c2643193caec1e6a0f47eff8f55df55ef2 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Debugger: Pass native gdb.Value to native gdb pretty printershjk2018-07-171-2/+2
| | | | | | | Task-number: QTCREATORBUG-20770 Change-Id: I6ea92faf0c9314c50da05356fa9004f87124111a Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Remove copying settings from Nokia directoryv4.7.0Orgad Shaneh2018-07-161-1/+1
| | | | | Change-Id: I550b62ab74505f72eee5c8daba206f80dd5a3a34 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Qml Profiler: Do toggle extended statistics when option is checkedUlf Hermann2018-07-161-1/+1
| | | | | | Task-number: QTCREATORBUG-20778 Change-Id: I3390241c25ab7a87329bc8b20c49c32cf4c02944 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* BinEditor: Fix "Find Next" for a single charOrgad Shaneh2018-07-161-1/+1
| | | | | Change-Id: If35807230969d3620a3a9018af8d2c21236cd58d Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Update changelog for 4.7.0Eike Ziller2018-07-131-1/+10
| | | | | Change-Id: I90aef93f9794393002be830e4279ed28f9a3fcef Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
* Doc: Add 3rd-party libraries to AcknowledgementsLeena Miettinen2018-07-131-29/+193
| | | | | | | | | Reformat parts of the existing text. Task-number: QTCREATORBUG-20682 Change-Id: I019146d3861fe57258ba0ddc84ed3ed576128da9 Reviewed-by: Xing Xiong Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* ProjectExplorer: Make Collapse All action for project tree workTobias Hunger2018-07-131-2/+2
| | | | | | | | | Creator registers a "Collapse All" action for the Project tree. Make this work again. Task-number: QTCREATORBUG-20771 Change-Id: I49f1c8a97c4eb22ef6f7f703eefdfe46c3c0a035 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Clang: Suppress class-memaccess warnings for GCC8Orgad Shaneh2018-07-131-0/+9
| | | | | | | | | They appear a lot in Clang headers. Until this is fixed in Clang, suppress them. Change-Id: I5292ae442089aec3f52ba846ee21e0bd9e61d0cb Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
* Squish: Remove unneeded function callRobert Loehning2018-07-121-1/+0
| | | | | Change-Id: I3fb85bc69086501dada922b45ef353e34030e0db Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* Squish: Remove unused variablesRobert Loehning2018-07-121-2/+2
| | | | | Change-Id: I24d8ecbe7e7208a20d0f27f62d5b8f488d2a240a Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* Tracing: Don't rebuild flame graph if there is nothing to seeUlf Hermann2018-07-121-5/+7
| | | | | | | | | | If the root size is 0, none of the nodes will be visible. Don't create them in the first place. Task-number: QTCREATORBUG-20772 Change-Id: I9595daece2d17fe8202b322ffafd361d6fa422fa Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* AutoTest: Handle direct usage of quick_test_mainChristian Stenger2018-07-123-3/+75
| | | | | | | | | | | | If users need to register additional QML types before Qt5.12 they need to bend the Quick tests magic a bit and use quick_test_main or quick_test_main_with_setup directly. The plugin supports something similar for QTest::qExec, so allow this for Quick tests as well. Task-number: QTCREATORBUG-20746 Change-Id: I672f8410914c6cc77abc901998f419dda35755ae Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
* Fix assert when filtering examples / tutorialsEike Ziller2018-07-121-4/+67
| | | | | | | | | | | | | | | | | | | | | The examples are put throw two proxy models. The first one implements the sorting and filtering, the second one transforms the list into a grid. The grid proxy model was based on QIdentityProxyModel, which is wrong because that explicitly states that it should be used when the structure of the model stays the same. Even QAbstractProxyModel works under the assumption that all items in the proxy model correspond to an item in the source model, which is not true for a N*M grid. Just implement the proxy model "by hand", making sure that all items that cannot be mapped to the source are handles correctly as "empty" items. Task-number: QTCREATORBUG-20641 Change-Id: Id08b77bb7157b893b9d0d73dc006db98d90032b7 Reviewed-by: hjk <hjk@qt.io>
* ProjectModel: Fix crash when updating parsing state of projectTobias Hunger2018-07-121-2/+8
| | | | | | | | | Fix crash when updating the parsing state of a project during the time between the project being removed from the session and the time when the project is actually destroyed. Change-Id: I54bf4793626497315fe588ebb68474b880de2984 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* CMake: Fix building on current executable targetTobias Hunger2018-07-121-1/+1
| | | | | | | Task-number: QTCREATORBUG-20763 Change-Id: Ie25c0993c1c2051de3f6a15fca56b56caaa04b00 Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
* FileProperties: Use native separators for file pathAndre Hartmann2018-07-121-1/+2
| | | | | Change-Id: I66c9f62b0c48165f5160d117ad3f0cf5e84f686b Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Fix that Qt Quick Designer did not request Design mode creationEike Ziller2018-07-121-0/+1
| | | | | | | | | | If you turned off Designer and ScxmlEditor plugins, you'd not get Design mode even if you have Qt Quick Designer. Fix-up of 299da013325be20ff731b91e7ead47b20242b1cd Change-Id: Ib3a269db9630af09c36968435ca0b0d998cc1709 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* Update qbs submoduleChristian Kandeler2018-07-121-0/+0
| | | | | | | To HEAD of 1.12 branch. Change-Id: I3b0115655d3f3735730250a06b96805bc343dee8 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
* Doc: Replace title with HTML filename as value of \contentspageLeena Miettinen2018-07-12113-227/+226
| | | | | | | To make links work if the title changes. Change-Id: Icf516e74c68efc3b26689aaec27f28ee7ae51ce3 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* AutoTest: Fix handling of cpp files for Quick testsChristian Stenger2018-07-114-4/+43
| | | | | | | | | | | | | | | | Modifying C++ files of Quick tests had been ignored as they normally have little impact. But nevertheless this behavior is wrong and could lead to unexpected behavior later on if no complete rescan had been done and even with a rescan there could have been some cached artifacts. Fix this by tracking the paths of the C++ files that hold the main() or the respective macro to be able to handle changes of these files correctly as well. Task-number: QTCREATORBUG-20746 Change-Id: Iec860aa63ffd167511efdbf63a6ffa369f094edf Reviewed-by: David Schulz <david.schulz@qt.io>
* Doc: Move information about Qt Quick Controls to "Creating Components"Leena Miettinen2018-07-119-480/+367
| | | | | | | | Move the topic up in the hierarchy. Will remove "Creating Screens" in a follow-up commit. Change-Id: I0de2bdc4706ab0cce13f5772006126b291e76b97 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* ProjectExplorer: only add Tasks from the main threadDavid Schulz2018-07-114-60/+89
| | | | | | | | | | | If something fails while extracting the build env from msvc vavars scripts we want to add task hub entries to inform the user about a most probably unusable toolchain. As the msvc toolchain detection is threaded nowadays and the TaskHub is not thread safe we need to propagate the error message to the main thread before adding the Task entries. Change-Id: I5c67d3b8d58b22ea895afb6f22ee73f19fa52f17 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* Utils: Follow symlinks in Environment::isSameExecutableOrgad Shaneh2018-07-111-1/+5
| | | | | | | | | If qmake uses /usr/bin/gcc and the kit is configured to use /usr/bin/gcc-7, and both reference the same executable, there is no reason to warn. Change-Id: Ida79fccb97cffb682c1d85d7fa8888d85bf7d6a4 Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
* Doc: Move information about states to "Adding States"Leena Miettinen2018-07-113-105/+118
| | | | | | | | Now that the states have their own topic, all information about using states should be found there. Change-Id: Iab1d17aeca9774e3e4bd3e50c776862aa4697a47 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* Doc: Describe Navigator and Properties in separate topicsLeena Miettinen2018-07-116-318/+390
| | | | | | | To modularize the Qt Quick Designer docs. Change-Id: Ia0ef0dbd07344375a7f145af16fe949e7807d55f Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
* Squish: Update suite_WELPRobert Loehning2018-07-115-14/+15
| | | | | | | This is a follow-up to 744279. Change-Id: I24485972b3a292952c653f2cfab1af198578fcc4 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* Merge "Merge remote-tracking branch 'origin/4.6' into 4.7" into 4.7Eike Ziller2018-07-111-259/+1633
|\
| * Merge remote-tracking branch 'origin/4.6' into 4.7Oswald Buddenhagen2018-07-101-259/+1633
| |\ | | | | | | | | | Change-Id: Iaeca1396d6057cc92a75f376934edfb03213ebcd
| | * Update danish (da) translation for Qt Creator 4.64.6scootergrisen2018-07-101-259/+1633
| | | | | | | | | | | | | | | Change-Id: I2633ab242f193aa0aaa79cadba250bd8d9842924 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
* | | Debugger: add instruction to build python enabled dumper for cdbDavid Schulz2018-07-111-0/+3
|/ / | | | | | | | | | | | | | | | | | | Like for the llvm code model additional 3rd party installation is required to build the python enabled dumper on Windows. Adding minimum version of Python and the name of the environment variable pointing to the Python installation to the README.md. Change-Id: I0cad39a57e4726083fcd44bde8b4c990cbd1ab03 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* | More changelog for 4.7hjk2018-07-101-0/+6
| | | | | | | | | | Change-Id: Ic32da3de59a1e855d324330d684260ac60eb1eb6 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
* | use initializer listTim Jenssen2018-07-101-1/+1
| | | | | | | | | | Change-Id: I15fdcf313db913df91a1a93684e1d60de7bf16bd Reviewed-by: Orgad Shaneh <orgads@gmail.com>
* | WinRT: set symbol file before debugging winrt packagesDavid Schulz2018-07-101-0/+1
| | | | | | | | | | Change-Id: Ic3224cd1f12e799a9b38f31ba6dfe04c7774e35f Reviewed-by: hjk <hjk@qt.io>
* | ProjectExplorer: Fix handling of the QTC_USER_FILE_PATH variableFriedemann Kleint2018-07-101-5/+4
| | | | | | | | | | | | | | | | Add a quick check whether the variable is set and return nullopt in that case. Flip the check in the below code. Change-Id: I655662f2940946150165107a66c003a3a4bc025d Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
* | Fix running lrelease and lupdate as external toolsEike Ziller2018-07-102-0/+2
| | | | | | | | | | | | | | | | | | | | | | With newer Qt versions. These want to run cl.exe on Windows, which usually is not on the PATH except for the build environment. So, use the current build environment's PATH if that is available (falling back to the system environment's PATH). Task-number: QTCREATORBUG-19892 Change-Id: Ia512b3599d2cca7a0d1169b0d673f32158cb701f Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
* | Add %{CurrentBuild:Env} to global environmentEike Ziller2018-07-101-0/+7
| | | | | | | | | | | | | | | | %{CurrentBuild:Name} and %{CurrentBuild:Type} are there too. Change-Id: I06b49da61cd689b54be87333d7fa3f212ebf1762 Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
* | Expand variables in external tool environmentEike Ziller2018-07-101-1/+6
| | | | | | | | | | Change-Id: I98fc942f25309bba1b4573b0544418d3b4b836c8 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
* | Show 4 columns of examples within Qt Creator's default window widthEike Ziller2018-07-101-2/+2
| | | | | | | | | | | | | | | | | | By reducing the width of the individual items. Otherwise first startup looks a bit stupid with a large empty column to the right. Change-Id: Iff7fa343a5c36181f09e1e3c18307dc55bd11abc Reviewed-by: hjk <hjk@qt.io>
* | Android: Fix aapt tool's path in windowsVikas Pachdha2018-07-101-1/+1
| | | | | | | | | | | | Task-number: QTCREATORBUG-20750 Change-Id: Ie35675d789007a6c79b979b4520dc0ecc83c688c Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* | Wizards: Make it easier to debug cmake based quick applicationsChristian Stenger2018-07-091-2/+2
| | | | | | | | | | | | Change-Id: I09a09fb14b3cf8d5486e84413f9f3238c72e2d0f Reviewed-by: Christian Stenger <christian.stenger@qt.io> Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
* | Qml Debugger: Disallow editing of items with childrenUlf Hermann2018-07-091-6/+12
| | | | | | | | | | | | | | | | | | | | | | The debugger will treat any value you put in there as string, and then fail to update the item because it doesn't expect the type to change. Proper editing of JavaScript objects requires quite a bit more UI than this, so disallow it for now. Task-number: QTCREATORBUG-20736 Change-Id: I7bf6e7a3747cde3c6682b66aaa810291f753e85d Reviewed-by: hjk <hjk@qt.io>
* | QML Debugger: Make sure to re-fetch expanded properties on updateUlf Hermann2018-07-091-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | If an expanded object is updated we typically just get the ref for it. If we leave the tree item at "wantsChildren", the debugger will think that the update fails and "adjust" the "child expectation" to none. Fetching the children right away takes care of this. Task-number: QTCREATORBUG-20736 Change-Id: I1b3725e7106a563198962915cbcab8f68ef741a6 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Eike Ziller <eike.ziller@qt.io>
* | Show examples page in welcome mode on first startEike Ziller2018-07-091-2/+6
| | | | | | | | | | | | | | | | | | This change might help first-time users getting started. Task-number: QTCREATORBUG-20674 Change-Id: If55402160bf6b1515142bb64f281654fe4c68134 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
* | Squish: Update tst_CSUP01Robert Loehning2018-07-091-5/+7
| | | | | | | | | | | | | | The built-in code model also proposes "void_t". Change-Id: I2462e47d5b1a69065f998244fc8372011e37a0c8 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
* | Squish: Give code model more time to list refactoringsRobert Loehning2018-07-091-1/+1
| | | | | | | | | | Change-Id: I944dfa306954cd16fdb24334db6e869702da282f Reviewed-by: Christian Stenger <christian.stenger@qt.io>