aboutsummaryrefslogtreecommitdiffstats
path: root/dist
Commit message (Collapse)AuthorAgeFilesLines
* Change C++ parameter type used for var parameters in QML declared signalsSimon Hausmann2013-12-241-0/+68
| | | | | | | | | | | | | | "signal someSignal(var foo)" mapped to foo being of type QVariant. Unfortunately that is a "lossy" type and it cannot represent all JavaScript values, including for example function closures (as reported in the JIRA bug). Instead we should use QJSValue. It is an important behavioural change because it affects the presumably rare case of somebody declaring a signal in QML with such a parameter and connect to it from C++ (or trying to emit it) - in that situation the code needs to be changed. Task-number: QTBUG-35171 Change-Id: I4fb4a18b407e4ea6c28a3a297fc6f76edb76d734 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
* Update changelog for change Icf323618 / QTBUG-35174Tor Arne Vestbø2013-12-031-0/+8
| | | | | Change-Id: Idff1507fdce960ad7dabc2662bb273bc6103c1ca Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
* Update changelog for 5.2.0Alan Alpert2013-11-302-26/+74
| | | | | | | | | Includes taking entries for 5.1.2, which is no longer a general bugfix release. Change-Id: I33b4c06aa83d6344a2f14b4147eaf7056c3bacb9 Reviewed-by: Sergio Ahumada <sahumada@gmail.com> Reviewed-by: Lars Knoll <lars.knoll@digia.com>
* Fix === operator for value typesLars Knoll2013-11-151-0/+7
| | | | | | | | | Fix === comparison for urls and other QML value types. Task-number: QTBUG-33546 Change-Id: I4a7066e6bbc7de7c599fe2c7b2fdfb75e0ff5196 Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
* Polish up QQmlFileSelectorAlan Alpert2013-11-131-0/+4
| | | | | | | | Incorporate beta feedback, and hide QQmlAbstractUrlInterceptor as the implementation (instead of making that "the API"). Change-Id: Ib7b14afeb9205fb8a87ed16a6d38b1f468b2aaaa Reviewed-by: Lars Knoll <lars.knoll@digia.com>
* Fix rounding behavior of Qml when assigning doubles to integer propertiesSimon Hausmann2013-11-051-0/+4
| | | | | | | | | | | | The engine used to round, but that is inconsistent with ECMAScript's way of converting doubles to integers by truncation. With this patch we can also enable the propagation of integer type information into the IR, but we have to be careful not to utilize it when writing properties. Change-Id: I04af4879ba5131349eca2eeff2b27f4598f5267b Reviewed-by: Lars Knoll <lars.knoll@digia.com>
* New scenegraph renderer and atlas textures.Gunnar Sletta2013-09-021-0/+20
| | | | | | | | | | | | | The renderer tries to batch primitives together where possible, isolate non-changing subparts of the scene from changing subparts and retain vertexdata on the GPU as much as possible. Atlas textures are crucial in enabling batching. The renderer and atlas texture are described in detail in the doc page "Qt Quick Scene Graph Renderer". Change-Id: Ia476c7f0f42e1fc57a2cef528e93ee88cf8f7055 Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@digia.com>
* Merge remote-tracking branch 'origin/stable' into devFrederik Gladhorn2013-08-192-0/+69
|\ | | | | | | | | | | | | | | Conflicts: tests/auto/quick/qquickgridview/qquickgridview.pro tests/auto/quick/qquickitem/qquickitem.pro Change-Id: Ic54cafbdda1ac22757d2ee65dcc63a1b167c7556
| * Fix currentIndex in Qml itemView when assigning an empty modelNils Jeisecke2013-08-161-0/+25
| | | | | | | | | | | | | | | | | | | | When assigning an empty model to e.g. a ListView after component initialization has been completed, currentIndex is now correctly set to -1. Change-Id: I540c034944009ccb8894bf84f400658ef9f0371f Task-number: QTBUG-32838 Reviewed-by: Alan Alpert <aalpert@blackberry.com>
| * Add changes-5.1.1 filev5.1.1Alan Alpert2013-08-151-0/+44
| | | | | | | | | | | | Task-number: QTBUG-32808 Change-Id: I44852be41c18491a38f80afa71eda8b85b51381d Reviewed-by: Lars Knoll <lars.knoll@digia.com>
* | Add changes-5.2.0 fileJ-P Nurmi2013-08-141-0/+70
|/ | | | | Change-Id: I1574531ae13998f3fbf77c72cc04247a3b053c2e Reviewed-by: Alan Alpert <aalpert@blackberry.com>
* QtQml: document QQmlExtensionPlugin::baseUrlShawn Rutledge2013-06-281-0/+2
| | | | | | | | | | | It was added here https://codereview.qt-project.org/#change,47532 without documentation. Also updated \since because for now qdoc seems to interpret \since 5.0 as QtQml 5.0. Task-number: QTBUG-31928 Change-Id: I652e9471f1ad8e83b355bffc8498a6565dc9aa2b Reviewed-by: Jerome Pasion <jerome.pasion@digia.com> Reviewed-by: Martin Smith <martin.smith@digia.com>
* Update 5.1.0 changelog and what's newAlan Alpert2013-06-251-4/+58
| | | | | | | All the new features should now be listed in those two documents Change-Id: Ifa17581bf589f3a18b602f8a1d10683a5e48c70d Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
* Update Changes fileAlberto Mardegan2013-06-031-0/+7
| | | | | | | | Mention the behavioral change introduced by the fix for QTBUG-29836. Task-number: QTBUG-29836 Change-Id: I15ffd32fd5c0d537528f7b1386691103dab371c7 Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com>
* Make sure tryCompare value argument is not undefinedAlbert Astals Cid2013-05-291-0/+3
| | | | | | | | | | | | | | | It happens often that people convert a compare(foo.bar, 3) to a tryCompare(foo.bar, 3) and unfortunately that succeeds but doesn't do what they expected This makes tryCompare fail if no third argument is given Task-number: QTBUG-31427 Change-Id: I0c9618dae9aad4be55aa35c3e2dcf3535728beaa Reviewed-by: Alan Alpert <aalpert@blackberry.com>
* Changelog entry for not-quite-so-important behavior changeAlan Alpert2013-05-151-0/+2
| | | | | | Task-number: QTBUG-30837 Change-Id: Ia39c0d85d29cf87861083e4a5170aab701fb2199 Reviewed-by: Andrew den Exter <andrew.den.exter@qinetic.com.au>
* Changelog entry for ListView behavioural changeAlan Alpert2013-05-141-0/+4
| | | | | | | Task-number: QTBUG-30555 Change-Id: Idcb0b2457e761f806179f4900ea5b0c9cb811cea Reviewed-by: Andrew den Exter <andrew.den.exter@qinetic.com.au> Reviewed-by: Albert Astals Cid <albert.astals@canonical.com>
* ChangeLog: Document behavior change for resource propertyThomas Hartmann2013-05-081-0/+3
| | | | | | Change-Id: Id6e157aa191aaa4e24a9cd5c76abfe902fe43d44 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com> Reviewed-by: Jan Arve Sæther <jan-arve.saether@digia.com>
* a nested Window automatically becomes transient for its parentShawn Rutledge2013-04-101-0/+3
| | | | | | | | | | | | | | | | If you declare Window { Window {}} or Window { Item { Window {}}} the inner window will automatically become transient for the outer one. The transient relationship must be set before the inner window becomes visible though, so declaring visible: true doesn't always work, depending on initialization order. It's OK if you assign visible (or call show()) later on when the user needs to see the transient window for the first time. Also added documentation. Change-Id: I888c3b9da6d44d11516227c085bcc12a5ccb5e81 Reviewed-by: Shawn Rutledge <shawn.rutledge@digia.com> Reviewed-by: Jan Arve Sæther <jan-arve.saether@digia.com>
* Add change log file for Qt 5.1.0Sergio Ahumada2013-04-081-0/+65
| | | | | Change-Id: I9bd3fe3cb3897c18b08a3f9d4792f69a29d9d5f9 Reviewed-by: Shawn Rutledge <shawn.rutledge@digia.com>
* Add changes-5.0.2 fileSergio Ahumada2013-03-251-0/+45
| | | | | | Change-Id: Ifb952f46be13cd1009a82131d1eb7c17962c7118 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com> Reviewed-by: Iikka Eklund <iikka.eklund@digia.com>
* Doc: Updated change log with documentation entryJerome Pasion2013-01-241-0/+1
| | | | | Change-Id: I1cd4dc70265f2425045328910be12a0cfaeb795c Reviewed-by: Sergio Ahumada <sergio.ahumada@digia.com>
* Update changes file for 5.0.1 releaseSergio Ahumada2013-01-121-7/+21
| | | | | Change-Id: I704cc948c37af639d9686c783a5341e2ab89903e Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
* Add changes-5.0.1 fileSergio Ahumada2012-12-241-0/+56
Task-number: QTBUG-26065 Change-Id: I3345a178cdfbc8e8c68b0e069eb9928772353186 Reviewed-by: Alan Alpert <aalpert@rim.com>