Changelog.rst 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. Changelog
  2. =========
  3. ## 2012-09-07 0.6.10
  4. --------------------
  5. * Dont raise an exception when Logger has no message handler (c) nixon
  6. * Improve performance of white space removal (c) Dave Smith
  7. * Improve ropemode support (c) s0undt3ch
  8. * Add `g:pymode_updatetime` option
  9. * Update autopep8 to version 0.8.1
  10. ## 2012-09-07 0.6.9
  11. -------------------
  12. * Update autopep8
  13. * Improve pymode#troubleshooting#Test()
  14. ## 2012-09-06 0.6.8
  15. -------------------
  16. * Add PEP8 indentation ":help 'pymode_indent'"
  17. ## 2012-08-15 0.6.7
  18. -------------------
  19. * Fix documentation. Thanks (c) bgrant;
  20. * Fix pymode "async queue" support.
  21. ## 2012-08-02 0.6.6
  22. -------------------
  23. * Updated Pep8 to version 1.3.3
  24. * Updated Pylint to version 0.25.2
  25. * Fixed virtualenv support for windows users
  26. * Added pymode modeline ':help PythonModeModeline'
  27. * Added diagnostic tool ':call pymode#troubleshooting#Test()'
  28. * Added `PyLintAuto` command ':help PyLintAuto'
  29. * Code checking is async operation now
  30. * More, more fast the pymode folding
  31. * Repaired execution of python code
  32. ## 2012-05-24 0.6.4
  33. -------------------
  34. * Add 'pymode_paths' option
  35. * Rope updated to version 0.9.4
  36. ## 2012-04-18 0.6.3
  37. -------------------
  38. * Fix pydocs integration
  39. ## 2012-04-10 0.6.2
  40. -------------------
  41. * Fix pymode_run for "unnamed" clipboard
  42. * Add 'pymode_lint_mccabe_complexity' option
  43. * Update Pep8 to version 1.0.1
  44. * Warning! Change 'pymode_rope_goto_def_newwin' option
  45. for open "goto definition" in new window, set it to 'new' or 'vnew'
  46. for horizontally or vertically split
  47. If you use default behaviour (in the same buffer), not changes needed.
  48. ## 2012-03-13 0.6.0
  49. -------------------
  50. * Add 'pymode_lint_hold' option
  51. * Improve pymode loading speed
  52. * Add pep8, mccabe lint checkers
  53. * Now g:pymode_lint_checker can have many values
  54. Ex. "pep8,pyflakes,mccabe"
  55. * Add 'pymode_lint_ignore' and 'pymode_lint_select' options
  56. * Fix rope keys
  57. * Fix python motion in visual mode
  58. * Add folding 'pymode_folding'
  59. * Warning: 'pymode_lint_checker' now set to 'pyflakes,pep8,mccabe' by default
  60. ## 2012-02-12 0.5.8
  61. -------------------
  62. * Fix pylint for Windows users
  63. * Python documentation search running from Vim (delete g:pydoc option)
  64. * Python code execution running from Vim (delete g:python option)
  65. ## 2012-02-11 0.5.7
  66. -------------------
  67. * Fix 'g:pymode_lint_message' mode error
  68. * Fix breakpoints
  69. * Fix python paths and virtualenv detection
  70. ## 2012-02-06 0.5.6
  71. -------------------
  72. * Fix 'g:pymode_syntax' option
  73. * Show error message in bottom part of screen
  74. see 'g:pymode_lint_message'
  75. * Fix pylint for windows users
  76. * Fix breakpoint command (Use pdb when idpb not installed)
  77. ## 2012-01-17 0.5.5
  78. -------------------
  79. * Add a sign for info messages from pylint.
  80. (c) Fredrik Henrysson
  81. * Change motion keys: vic - viC, dam - daM and etc
  82. * Add 'g:pymode_lint_onfly' option
  83. ## 2012-01-09 0.5.3
  84. -------------------
  85. * Prevent the configuration from breaking python-mode
  86. (c) Dirk Wallenstein
  87. ## 2012-01-08 0.5.2
  88. -------------------
  89. * Fix ropeomnicompletion
  90. * Add preview documentation
  91. ## 2012-01-06 0.5.1
  92. -------------------
  93. * Happy new year!
  94. * Objects and motion fixes
  95. ## 2011-11-30 0.5.0
  96. -------------------
  97. * Add python objects and motions (beta)
  98. :h pymode_motion
  99. ## 2011-11-27 0.4.8
  100. -------------------
  101. * Add `PyLintWindowToggle` command
  102. * Fix some bugs
  103. ## 2011-11-23 0.4.6
  104. -------------------
  105. * Enable all syntax highlighting
  106. For old settings set in your vimrc:
  107. let g:pymode_syntax_builtin_objs = 0
  108. let g:pymode_syntax_builtin_funcs = 0
  109. * Change namespace of syntax variables
  110. See README
  111. ## 2011-11-18 0.4.5
  112. -------------------
  113. * Add 'g:pymode_syntax' option
  114. * Highlight 'self' keyword
  115. ## 2011-11-16 0.4.4
  116. -------------------
  117. * Minor fixes
  118. ## 2011-11-11 0.4.3
  119. -------------------
  120. * Fix pyflakes
  121. ## 2011-11-09 0.4.2
  122. -------------------
  123. * Add FAQ
  124. * Some refactoring and fixes
  125. ## 2011-11-08 0.4.0
  126. -------------------
  127. * Add alternative code checker "pyflakes"
  128. See :h 'pymode_lint_checker'
  129. * Update install docs
  130. ## 2011-10-30 0.3.3
  131. -------------------
  132. * Fix RopeShowDoc
  133. ## 2011-10-28 0.3.2
  134. -------------------
  135. * Add 'g:pymode_options_*' stuff, for ability
  136. to disable default pymode options for python buffers
  137. ## 2011-10-27 0.3.1
  138. -------------------
  139. * Add 'g:pymode_rope_always_show_complete_menu' option
  140. * Some pylint fixes
  141. ## 2011-10-25 0.3.0
  142. -------------------
  143. * Add g:pymode_lint_minheight and g:pymode_lint_maxheight
  144. options
  145. * Fix PyLintToggle
  146. * Fix Rope and PyLint libs loading
  147. ## 2011-10-21 0.2.12
  148. --------------------
  149. * Auto open cwindow with results
  150. on rope find operations
  151. ## 2011-10-20 0.2.11
  152. --------------------
  153. * Add 'pymode_lint_jump' option
  154. ## 2011-10-19 0.2.10
  155. --------------------
  156. * Minor fixes (virtualenv loading, buffer commands)
  157. ## 2011-10-18 0.2.6
  158. -------------------
  159. * Add <C-space> shortcut for macvim users.
  160. * Add VIRTUALENV support
  161. ## 2011-10-17 0.2.4
  162. -------------------
  163. * Add current work path to sys.path
  164. * Add 'g:pymode' option (disable/enable pylint and rope)
  165. * Fix pylint copyright
  166. * Hotfix rope autocomplete
  167. ## 2011-10-15 0.2.1
  168. -------------------
  169. * Change rope variables (ropevim_<name> -> pymode_rope_<name>)
  170. * Add "pymode_rope_auto_project" option (default: 1)
  171. * Update and fix docs
  172. * 'pymode_rope_extended_complete' set by default
  173. * Auto generate rope project and cache
  174. * "<C-c>r a" for RopeAutoImport
  175. ## 2011-10-12 0.1.4
  176. -------------------
  177. * Add default pylint configuration
  178. ## 2011-10-12 0.1.3
  179. -------------------
  180. * Fix pylint and update docs
  181. ## 2011-10-11 0.1.2
  182. -------------------
  183. * First public release