Skip to content

Releases: pyQode/pyqode.core

1.3.2

25 Jun 16:26
Compare
Choose a tag to compare

Fix a few bugs with subprocess server

1.3.1

06 Apr 13:06
Compare
Choose a tag to compare

Fixed bugs:

  • improve auto complete, many small bug fixes
  • fix infinite loop when saving an empty document
  • fix file watcher when filePath is None
  • fix a small bug with line panel where the last line was not
    highlighted as selected.

1.3.0

08 Mar 13:35
Compare
Choose a tag to compare

New features:

  • converter mode
  • improve go to line dialog

Fixed bugs:

  • fix bugs with replace all
  • fix wrong behavious with auto completion
  • fix a bug where it was not possible to select a code completion using ENTER
  • fix UnicodeEncodeError with python 2.7

1.2

08 Dec 13:57
Compare
Choose a tag to compare
1.2

New debian packages and many bug fixed

New:

  • Debian packages build scripts (cmake scripts):

     $ cd /path/to/source && mkdir build && cd build
     $ cmake -DCPACK_GENRATOR=DEB .. 
     $ make package
    
  • Packages are available in the following PPA:

     $ sudo apt-add-repository ppa:pyqode/stable
     $ sudo apt-get update
     $ sudo apt-get install python-pyqode.core python3-pyqode.core
    

Bug fixed:

  • Code Completion does not trigger if there is a string or comment in the line
  • Fix filewatcher bug with deleted files
  • Fix filewatcher bug when user say no to file reload the first time
  • Fix syntax highlighter bugs with old PyQt libraries.

1.1.0

11 Nov 18:22
Compare
Choose a tag to compare

New features:

  • Improve code completion process performances and reliability
  • Make QT_API case insensitive
  • Wrap settings and style properties with python properties
  • Allow user to start code completion server before a code editor instance is created.
  • New mode: AutoComplete mode
  • New mode: WordClickMode, add support for word under MOUSE cursor
  • New setting: autoSave on focus out

Bug fixed:

  • Fix bug with subprocess intercomm (and improves performances)
  • Fix Document cleanup bugs

1.0

17 Oct 20:52
Compare
Choose a tag to compare
1.0

This is the final release for pyqode.core 1.0.

Here are the changes since the last beta release:

  • Switch to MIT license
  • Update documentation
  • Do not use load_ui anymore + remove load_ui, load_rc functions
  • Add PYQODE_NO_COMPLETION_SERVER env var to disable code completion
  • A few minor bug fixes and internal refactorings.