- Jul 16, 2010
-
-
Alessandro Portale authored
Short: Create a new self running qml .sis/.deb package. Long: A typical Qml application usually consists of a couple of .qml, .js and image files. Deploying such an application is challenging, especially to mobile devices. This wizard will generate a C++ project with a customized, light weight Declarative Viewer, a helloworld Qml file and a .pro file that takes care of the deployment of the Qml file(s). This is just the first step. There will be an import wizard, and further more there will be the possibility to add additional Qml modules and probably also Qml directories to the package. Task-number: QTCREATORBUG-1813
-
- Jul 15, 2010
-
-
Lasse Holmstedt authored
-
- Jul 14, 2010
-
-
Lasse Holmstedt authored
-
Lasse Holmstedt authored
-
Lasse Holmstedt authored
-
dt authored
-
dt authored
Move link handling code to outputwindow from OutputFormatter Move createOutputFormatter to the RunConfiguration That makes it easier for Qt4RunConfiguration et all. This also fixes that each time a runcontrol was rerun a new OutputFormatter was created without deleting the old one, thus increasing the memory usage.
-
- Jul 09, 2010
-
-
Alessandro Portale authored
-
- Jul 08, 2010
-
-
Lasse Holmstedt authored
This qmlviewer will be also the default one when opening qmlproject files as the runconfiguration was changed too.
-
Lasse Holmstedt authored
-
- Jul 07, 2010
-
-
dt authored
-
- Jul 06, 2010
-
-
con authored
Task-number: QTCREATORBUG-1790 Reviewed-by: dt Reviewed-by: mae
-
- Jul 02, 2010
- Jun 28, 2010
-
-
Roberto Raggi authored
-
Roberto Raggi authored
-
- Jun 24, 2010
-
-
Christian Kamm authored
What about paths that actually contain spaces? Reviewed-by: Erik Verbruggen
-
Christian Kamm authored
Task-number: QTCREATORBUG-1728 Reviewed-by: Kai Koehne
-
- Jun 22, 2010
-
-
Christian Kamm authored
Previously, the model manager always had exactly one import path - but you can open more than one Qml project at once. Now, we store the union of all import paths in the model manager. Reviewed-by: Roberto Raggi
-
- Jun 16, 2010
-
-
Tobias Hunger authored
-
- Jun 11, 2010
- Jun 10, 2010
-
-
hjk authored
-
Roberto Raggi authored
-
Kai Koehne authored
The heuristics to find the file to run and the logic that decides whether the show / debug button is shown weren't in sync. Also, don't try to run .qmlproject files if open in the editor. Reviewed-by: Lasse Holmstedt
-
- Jun 09, 2010
-
-
Kai Koehne authored
Task-number: QTCREATORBUG-1609
-
- 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
-
-
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
-
con authored
-
- May 12, 2010
-
-
Daniel Molkentin authored
Reviewed-by: Leena Miettinen
-
dt authored
Reviewed-By: con Reviewed-By: Friedemann Kleint We now support renaming files. The version control system tries first to rename, if that doesn't support or can't rename the file we do a normal rename. (Note: git, hg, perforce > 2009.02 support renaming, cvs not. (perforce untested)). We correctly notify all editors of the renamed file and tell the project manager to rename the file in the project. Note: Only the qt4projectmanager knows how to rename files. Note: renaming folders, moving files to different folders, renaming .pro/.pri files is not supported. Those things can be later added after this has proven to work correctly in the simple case. Also we don't do any actions based on the renaming like renaming classes, changing include guards or #include lines.
-
- May 03, 2010
-
-
dt authored
And use it to implement changing the run icon in the application output. That implementation does only support the two run modes run and debug for now. Further abstraction for more run modes to be done once needed. Task-Nr: QTCREATORBUG-1232
-