Skip to content
Snippets Groups Projects
  1. Mar 05, 2014
  2. Feb 19, 2014
  3. Jan 08, 2014
  4. Oct 15, 2013
  5. Oct 11, 2013
  6. Jan 29, 2013
  7. Nov 16, 2012
  8. Oct 05, 2012
  9. Jul 19, 2012
  10. Jan 26, 2012
  11. Jan 11, 2012
  12. Nov 03, 2011
  13. May 06, 2011
  14. Apr 20, 2011
  15. Apr 15, 2011
  16. Apr 13, 2011
  17. Jan 12, 2011
  18. Dec 17, 2010
  19. Sep 29, 2010
  20. May 20, 2010
    • Friedemann Kleint's avatar
      Version control: Improve detection. · 7003b82e
      Friedemann Kleint authored
      Merge managesDirectory() and findTopLevelForDirectory()
      into one giving managesDirectory() an optional topLevel
      parameter. This removes the need to go up the directory
      hierarchy twice when checking for Merurial or git and also
      saves some checks for CVS/Subversion.
      VCSManager: Check cache in reverse order starting out with
      the full path first to improve handling of nested repositories.
      Rubber-stamped-by: con
      Acked-by: dt
      7003b82e
  21. May 12, 2010
    • dt's avatar
      File renaming · 9bc9fe73
      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.
      9bc9fe73
  22. Mar 19, 2010
  23. Mar 05, 2010
  24. Jan 15, 2010
    • Friedemann Kleint's avatar
      VCS[git]: Add support for stashes. · 9ac98a40
      Friedemann Kleint authored
      Add non-modal stash management dialog and additional menu option
      "Stash snapshot..." to stash away changes prompting for a description,
      which will immediately replay the stash (take snapshot and continue
      working).
      Add interface to IVersionControl for creating/restoring/deleting
      snapshots for backup/complex undo operations (currently supported
      by git only). Add test options to VCSBasePlugin.
      Clean up and extend git client accordingly.
      9ac98a40
  25. Jan 12, 2010
    • Friedemann Kleint's avatar
      VCS[hg, git]: Add support for repository creation. · d5271a08
      Friedemann Kleint authored
      Add repository creation operation to IVersionControl, implement for hg
      and git, add convenience slot with prompts to VCSBasePlugin.
      Add respective menu options and make menus are visible in case no VCS is
      active.
      Change project wizards extension page to list VCS that are capable of
      repository creation in a QComboBox in case the directory is not managed
      by another VCS (in which case it lists that one for operation 'add').
      On that occasion, polish the Project selection to use a QComboBox as
      well and add some smartness to find the most suitable project to add via
      path matching.
      d5271a08
  26. Jan 07, 2010
    • Tobias Hunger's avatar
      Make method naming more consistent. · a6ad7737
      Tobias Hunger authored
        * Use id() for methods returning a string used to represent
          some type of object.
        * Use displayName() for strings that are meant to be user
          visible.
        * Quieten some warnings while touching the files anyway.
        * Move Factories to their products in the plugins where that
          was not done before.
      
      Reviewed-by: dt
      a6ad7737
  27. Dec 08, 2009
    • Friedemann Kleint's avatar
      VCS: Introduce Base class for VCS plugins, use in git. · 8097879d
      Friedemann Kleint authored
      Fixes:
      - Cannot diff a file that does not belong to a project
      - Cannot commit when a temporary diff/log view is open
        due to the current file pointing to a temporary directory
      - git's project-related actions not passing the correct
        relative path.
      
      Implementation:
      - Centralize code to listen for Qt Creator's relevant state changes
        in VCSBasePlugin, dispatching the changes to the instances affected.
        (avoiding multiple invocations of searches/QFileInfo on current).
      - Do the same for the corelistener catching closing SubmitEditors.
      - Introduce VCSBasePluginState representing the relevant state
        (current file/project).
      - Call git with working directory set and relative arguments
      - Remove setEnabled/isEnabled() logic of IVersionControl
      - Pass toplevel from VCSManager to avoid duplicate searches.
      8097879d
  28. Nov 11, 2009
  29. Nov 10, 2009
  30. Nov 09, 2009
  31. Aug 14, 2009
  32. Jun 16, 2009
    • con's avatar
      Cherry-pick: Update license headers and sales contact details. · 2919c210
      con authored
      Reviewed-by: Trust Me
      
      Conflicts:
      
      	src/libs/cplusplus/CppBindings.cpp
      	src/libs/cplusplus/CppBindings.h
      	src/libs/cplusplus/FastPreprocessor.cpp
      	src/libs/cplusplus/FastPreprocessor.h
      	src/plugins/cpptools/cppcurrentdocumentfilter.cpp
      	src/plugins/cpptools/cppcurrentdocumentfilter.h
      	src/plugins/cpptools/cppsemanticsearch.cpp
      	src/plugins/cpptools/cppsemanticsearch.h
      	src/plugins/duieditor/parser/qmljs.g
      	src/plugins/duieditor/parser/qmljsast.cpp
      	src/plugins/duieditor/parser/qmljsast_p.h
      	src/plugins/duieditor/parser/qmljsastfwd_p.h
      	src/plugins/duieditor/parser/qmljsastvisitor.cpp
      	src/plugins/duieditor/parser/qmljsastvisitor_p.h
      	src/plugins/duieditor/parser/qmljsengine_p.cpp
      	src/plugins/duieditor/parser/qmljsengine_p.h
      	src/plugins/duieditor/parser/qmljsgrammar.cpp
      	src/plugins/duieditor/parser/qmljsgrammar_p.h
      	src/plugins/duieditor/parser/qmljslexer.cpp
      	src/plugins/duieditor/parser/qmljslexer_p.h
      	src/plugins/duieditor/parser/qmljsmemorypool_p.h
      	src/plugins/duieditor/parser/qmljsnodepool_p.h
      	src/plugins/duieditor/parser/qmljsparser.cpp
      	src/plugins/duieditor/parser/qmljsparser_p.h
      	src/plugins/duieditor/parser/qmljsprettypretty.cpp
      	src/plugins/duieditor/parser/qmljsprettypretty_p.h
      	src/plugins/duieditor/rewriter/rewriter.cpp
      	src/plugins/duieditor/rewriter/rewriter_p.h
      	src/plugins/duieditor/rewriter/textwriter.cpp
      	src/plugins/duieditor/rewriter/textwriter_p.h
      	src/shared/cplusplus/ASTClone.cpp
      	tests/manual/cplusplus/main.cpp
      2919c210
    • Jason McDonald's avatar
      Update license headers and sales contact details. · 884b7af7
      Jason McDonald authored
      Reviewed-by: Trust Me
      884b7af7
  33. Feb 25, 2009
  34. Jan 13, 2009
Loading