Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Snake game cannot be restarted | mae | 2010-08-03 | 1 | -2/+15 |
| | | | | Task-id: QT-3668 | ||||
* | Uncomment code accidentally removed with ↵ | Aaron Kennedy | 2010-07-29 | 1 | -2/+0 |
| | | | | | | 1937adaab5861ced44813c6a4b0bff1c3750ecd3 QTBUG-3620 | ||||
* | Undefined is undefined, and now qml warns about it | mae | 2010-06-29 | 1 | -3/+3 |
| | |||||
* | Move knowledge of QGraphicsObject out of qml engine | Aaron Kennedy | 2010-06-16 | 1 | -0/+2 |
| | |||||
* | Fix snake demo | mae | 2010-06-08 | 3 | -3/+12 |
| | | | | | | | | | Code degeneration lead to three bugs: 1. progress bar worked only the first time 2. restart was broken 3. highscore model was not persistent Reviewed-by: Trust me | ||||
* | Add license headers for .qml files. | Jason McDonald | 2010-05-21 | 6 | -0/+246 |
| | | | | | | | Examples get the BSD license, while all other .qml files get the LGPL/tech-preview license. Reviewed-by: Trust Me | ||||
* | Rename Component::errorsString() -> errorString() (and also for | Bea Lam | 2010-05-20 | 1 | -2/+2 |
| | | | | QDeclarativeComponent) | ||||
* | Merge branch '4.7' of git@scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Alan Alpert | 2010-05-07 | 1 | -3/+3 |
|\ | | | | | | | | | Conflicts: examples/declarative/dynamic/qml/itemCreation.js | ||||
| * | Cleanup | Yann Bodson | 2010-05-06 | 1 | -3/+3 |
| | | |||||
* | | Make component.createObject require a parent argument | Alan Alpert | 2010-05-05 | 1 | -4/+2 |
|/ | | | | | | | | | For graphical objects (the common case) a common mistake is to not parent a dynamically created item. Since you almost always want to add a parent, and it's hard for a beginner to diagnose this problem, a parent is now a required argument and dealt with by the createObject function. Task-number: QTBUG-10110 | ||||
* | Remove Component's isReady, isLoading, isError and isNull properties. | Bea Lam | 2010-04-29 | 1 | -4/+4 |
| | | | | | | | The Component status enum covers all of these properties already and removing these also makes the API consistent with Image and Loader. Note this change only affects the QML Component API; the methods are still available for QDeclarativeComponent. | ||||
* | Replace usage of print() with console.log(). | Michael Brasser | 2010-04-23 | 1 | -4/+4 |
| | |||||
* | Merge branch '4.7' of git@scm.dev.nokia.troll.no:qt/qt-qml into 4.7 | Alan Alpert | 2010-04-21 | 1 | -0/+16 |
|\ | |||||
| * | Add .qmlproject files for declarative demos. | Yann Bodson | 2010-04-20 | 1 | -0/+16 |
| | | |||||
* | | Make the dynamic creation functions on the Qt object | Alan Alpert | 2010-04-21 | 1 | -2/+2 |
|/ | | | | | | | | | Also updated examples to still work, and the dynamic example now uses exceptions a little, to demonstrate that it can be done. Exceptions are also now filled out with the QML error data. Task-number: QT-2801 Reviewed-by: Aaron Kennedy | ||||
* | Replace "property var " with "property variant " in QML code | Aaron Kennedy | 2010-04-09 | 1 | -1/+1 |
| | |||||
* | Replace "import Qt 4.6" with "import Qt 4.7" | Michael Brasser | 2010-04-08 | 6 | -6/+6 |
| | |||||
* | Deprecate inline Script {} blocks | Aaron Kennedy | 2010-03-22 | 2 | -28/+25 |
| | | | | | | | | Inline blocks/includes have been replaced with an import syntax: import "foo.js" as Foo this gives better separation between QML and code. Imported script blocks also have a mandatory qualifier, which leads to better optimization potential. | ||||
* | Import "content" with as qualifier to support network without qmldir | mae | 2010-03-15 | 1 | -5/+5 |
| | |||||
* | Move particles in their own plugin (Qt.labs.particles) | Yann Bodson | 2010-03-11 | 2 | -0/+2 |
| | | | | Task-number: QT-2846 | ||||
* | Use a better method for installing declarative demos. | Rohan McGovern | 2010-03-08 | 1 | -13/+0 |
| | | | | Simply copy the demo directories, instead of writing a stub .pro file. | ||||
* | Fixed declarative demos not being installed. | Rohan McGovern | 2010-03-08 | 1 | -0/+13 |
| | |||||
* | Make "on" syntax mandatory for value sources and interceptors | Aaron Kennedy | 2010-03-02 | 5 | -13/+13 |
| | | | | | | | | | | | | | | | | | | | | | Where you would have written x: NumberAnimation {} y: Behavior {} you now must write NumberAnimation on x {} Behavior on y {} This change also makes the parser more strict with respect to multiple assignments to a single property - they're no longer allowed. For example this x: 10 x: 11 is now an error. | ||||
* | Recfactor in declarative snake demo | Leonardo Sobral Cunha | 2010-02-25 | 1 | -2/+2 |
| | | | | | Avoid having 2 'states' that have 'when' conditions that can be 'true' at the same time. | ||||
* | Rename MouseRegion -> MouseArea | Martin Jones | 2010-02-22 | 2 | -2/+2 |
| | |||||
* | Follow naming conventions (pass examples test) | Warwick Allison | 2010-01-11 | 23 | -5/+6 |
| | |||||
* | reenable particles effect for the cookie | mae | 2009-11-26 | 2 | -1/+1 |
| | |||||
* | added a snake demo | mae | 2009-11-25 | 22 | -0/+1019 |