- Jun 07, 2010
-
-
Kai Koehne authored
This reverts commit 5234c775 and 21065291.
-
con authored
-
- Jun 03, 2010
-
-
Christian Kamm authored
- Enable qmlprojectplugin even if Qml support is disabled. - But disable its wizards in that case. - Disable the Qml file wizard if the support is off. Reviewed-by: Kai Koehne
-
- Jun 01, 2010
-
-
Daniel Molkentin authored
Not needed anymore after the general QML support got deactivated. This reverts commit 74bd95d3.
-
- May 31, 2010
-
-
Daniel Molkentin authored
Reviewed-by: Kai Koehne
-
- May 28, 2010
-
-
Kai Koehne authored
There is a hard limit on the number of file handles that can be open at one point per process on Mac OS X (e.g. it's 2560 on Mac OS X Snow Leopard Server, as shown by ulimit -a). Opening one or several .qmlproject's with a large number of directories to watch easily exceeds this. The results are crashes later on, e.g. when threads cannot be created any more. This patch implements a heuristic that the file system watcher used for .qmlproject files never uses more than half the number of available file handles. It also increases the number from rlim_cur to rlim_max - the old code in main.cpp failed, see last section in http://developer.apple.com/maac/library/documentation/Darwin/Reference/ManPages/man2/setrlimit.2.html for details. Reviewed-by: ckamm Task-number: QTCREATORBUG-1487 Task-number: QTCREATORBUG-1486
-
- May 20, 2010
-
-
Kai Koehne authored
Latest qt renamed qml executable back to qmlviewer, and also named the executable again QML Viewer instead of Runtime/Launcher.
-
Kai Koehne authored
the method name got changed in 5732a440.
-
- May 19, 2010
-
-
Erik Verbruggen authored
When adding a new file, refreshing semantic errors in the open editor should have worked. It now also works for removing existing files. Done-with: Christian Kamm
-
- May 18, 2010
-
-
con authored
-
- May 12, 2010
-
-
Daniel Molkentin authored
Reviewed-by: Leena Miettinen
-
- Apr 21, 2010
-
-
Lasse Holmstedt authored
-
- Apr 20, 2010
-
-
Erik Verbruggen authored
-
Erik Verbruggen authored
-
- Apr 19, 2010
-
-
Erik Verbruggen authored
-
Erik Verbruggen authored
So now the "Applciation Output" can distinguish between these four, and handle them appropriately.
-
Erik Verbruggen authored
By introducing the OutputFormatter, RunControls can influence the formatting depening on the application started. A nice (and intended) side-effect is that the QML runtime specific formatting will not interfere anymore with anything else.
-
- Apr 16, 2010
-
-
Lasse Holmstedt authored
-
Friedemann Kleint authored
Remove all hacks/conventions of considering the last generated file as project file, etc. and instead add attributes flags to Core::GeneratedFile, giving fine-grained control of what to do with the file. Implement static utility functions in wizards that handle it. Add boolean XML-attributes "openeditor"/"openproject" to the file elements used by the CustomWizard XML-specification. Manually set the attributes in all wizards. Task-number: QTCREATORBUG-1166
-
Thorbjørn Lindeijer authored
Renamed RunConfiguration::configurationWidget to createConfigurationWidget. Reviewed-by: dt
-
Erik Verbruggen authored
-
Erik Verbruggen authored
The QML task manager behaviour is to show warnings/errors for _saved_ files only.
-
- Apr 15, 2010
-
-
Lasse Holmstedt authored
It's not yet possible to attach to an external app running a qml debugging server, because the server is only started on startup if an env variable is set. Changing this requires action from Brisbane, but even the current solution works for C++ apps with QML in them. Task-number: BAUHAUS-585 Reviewed-by: dt
-
- Apr 14, 2010
-
-
Kai Koehne authored
See commit c3a54c470 in qt
-
- Apr 13, 2010
-
-
Kai Koehne authored
Reviewed-by: Thomas Hartmann
-
Lasse Holmstedt authored
Task-number: BAUHAUS-548 Reviewed-by: kkoehne
-
- Apr 12, 2010
-
-
Lasse Holmstedt authored
-
- Apr 06, 2010
-
-
Kai Koehne authored
Task-number: QTCREATORBUG-1040
-
Christian Kamm authored
Previously we just scanned every directory containing a qml file for other qml files. This makes import ".." work. Reviewed-by: Erik Verbruggen
-
- Apr 01, 2010
-
-
Christiaan Janssen authored
-
- Mar 31, 2010
-
-
con authored
-
Jarek Kobus authored
-
Christian Kamm authored
Reviewed-by: Roberto Raggi
-
Christiaan Janssen authored
The run configuration id changed, leaving restored qmlproject without any run configuration. Reviewed-by: kkoehne
-
- Mar 29, 2010
-
-
hjk authored
-
Kai Koehne authored
Only watch directories, and not single files. Also, share one FileSystemWatcher between projects & FileFilter items. This fixes the issue that the process runs out of file handles e.g. when loading a .qmlproject file containing all of qt examples & demos. Basic implementation of FileSystemWatcher was copied from ProjectExplorer::FileWatcher - however the FileWatcher is only for files (and not directories), and also monitors the last change date etc.
-
- Mar 25, 2010
-
-
dt authored
-
- Mar 22, 2010
-
-
con authored
Reviewed-by: dt
-
Kai Koehne authored
E.g. "QmlFiles {}" now also monitors subdirectories by default, while "QmlFiles { paths : ["bla.qml"] } does not. Task-number: BAUHAUS-503
-