Improve linux icon theme integration (will use code-xxx icons for code completion icons and outline widget)
Fix a few issues in the pynotepad example and add a freeze_setup that works with python3 and PyQt5 (but not yet with python2 and PySide).
2.6.1
----- New features/improvements: - improve syntax highlighter: ['and', 'or', 'not', 'in', 'is'] and ['from', 'import', 'as'] the results are closer to what you can get with the pygments lexer
Fixed bugs: - fix another corner case with auto indent
2.6.0
-----
New features: - Switch from Frosted to PyFlakes - Wheel support
Fixed bugs: - Fix unimplemented code completion icon types (Jedi 0.9) - Improve calltips behaviour - Fix custom editor example - PyInteractiveConsole: fix traceback regex to work with dotted package names (e.g. pyqode.core directory name when installed in development mode) - Fix a couple of corner cases in autoindent mode - Fix quick doc panel colors on Ubuntu
2.5.0
-----
New features: - Unified API for document outline (see pyQode/pyQode24)
Fixed bugs: - fix a bug with interpreter selection in the pynotepad example (see pyQode/pyQode25)
2.4.2
-----
Fixed bugs:
- fix an issue with newest version of pep8.py
2.4.1
-----
New features:
- implement pyQode/pyQode21 - add CaseConverterMode to PyCodeEdit
Fixed bugs:
- fix buffering issue with PyInteractiveConsole, now ``PYTHONBUFFERED`` is always set to 1. - fix auto-indent bug: if a parentheses is closed but the cursor if after a "," and just before ")" indentation was not right. The solution is to check for ',' and ignore whitespaces before the previous character.