Skip to content
Snippets Groups Projects
  1. Jun 07, 2010
  2. Jun 03, 2010
  3. Jun 01, 2010
  4. May 31, 2010
  5. May 28, 2010
    • Kai Koehne's avatar
      Fix crashes when loading large .qmlproject's (Mac OS X) · 7f1f9e14
      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
      7f1f9e14
  6. May 20, 2010
  7. May 19, 2010
    • Erik Verbruggen's avatar
      Fixed QTCREATORBUG-1397. · ef66bc98
      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
      ef66bc98
  8. May 18, 2010
  9. May 12, 2010
  10. Apr 21, 2010
  11. Apr 20, 2010
  12. Apr 19, 2010
  13. Apr 16, 2010
  14. Apr 15, 2010
    • Lasse Holmstedt's avatar
      Added debugging mode for simultaneous QML and C++ debugging · 990ec1be
      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
      990ec1be
  15. Apr 14, 2010
  16. Apr 13, 2010
  17. Apr 12, 2010
  18. Apr 06, 2010
  19. Apr 01, 2010
  20. Mar 31, 2010
  21. Mar 29, 2010
    • hjk's avatar
      qmlprojectmanager: compile fix · b1aae1b6
      hjk authored
      b1aae1b6
    • Kai Koehne's avatar
      QmlProjectFiles: Dramatically reduce number of watched fs entities · 48d19596
      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.
      48d19596
  22. Mar 25, 2010
  23. Mar 22, 2010
Loading