Skip to content

Releases: CJCombrink/SpellChecker-Plugin

v0.14.0

06 Jul 20:25
Compare
Choose a tag to compare

Optimisation release for Qt Creator 4.3.

Functionally this release does not add anything new compared to release 0.13.
It does contain many optimisation updates provided and inspired by @Typz (Thanks again).
It should speed up the parsing and underlining of words in documents.

The README.txt file attached contains all information need to deploy the plugin. Please refer to the main page of the project for usage information.

For Windows: *.zip
For Ubuntu (x64): *.tar.gz

v0.13.0

29 May 20:28
Compare
Choose a tag to compare

First release for Qt Creator 4.3.

This release contains mainly updates and fixes for Qt Creator 4.3 in regards to colors and icons.

The README.txt file attached contains all information need to deploy the plugin. Please refer to the main page of the project for usage information.

For Windows: *.zip
For Ubuntu (x64): *.tar.gz

v0.12.0

30 Jan 19:27
Compare
Choose a tag to compare

First release for Qt Creator 4.2 (A bit late I know, sorry)

Unfortunately I could not test as extensively as previous releases. My development laptop stopped working and I have not gone through the effort to fully set up a new development computer. If there are any issues with this release, do not hesitate to create a new issue.

The README.txt file attached contains all information need to deploy the plugin. Please refer to the main page of the project for usage information.

For Windows: *.zip
For Ubuntu (x64): *.tar.gz

v0.11.0

02 Sep 15:25
Compare
Choose a tag to compare

First release for Qt Creator 4.1

One major change is the usage of the latest Hunspell, on Windows this is v1.4.1. On Ubuntu 16.04 it might be the same as previous (1.3.3-4).

NB for Windows users that have used a previous release of this SpellChecker Plugin:

  • Copy the libhunspell.dll in the extracted folder into the QtCreator bin folder and replace the previous one.

Unfortunately I could not test as extensively as previous releases. My development laptop stopped working and I have not gone through the effort to fully set up a new development computer. If there are any issues with this release, do not hesitate to create a new issue.

The README.txt file attached contains all information need to deploy the plugin. Please refer to the main page of the project for usage information.

For Windows: *.zip
For Ubuntu (x64): *.tar.gz

v0.10.0

24 May 19:33
Compare
Choose a tag to compare

First release for Qt Creator 4.0.

The following new features are added:

  • Allow fixes of spelling mistakes through quick fix (Thanks to @Typz)
  • Added buttons to the output pane to replace the selected spelling mistake with one of the suggestions directly.
  • Updated for Qt Creator 4.0 (again thanks to @Typz )

The README.txt file attached contains all information need to deploy the plugin. Please refer to the main page of the project for usage information.

For Windows: *.zip
For Ubuntu (x64): *.tar.gz

v0.9.1

06 Feb 19:08
Compare
Choose a tag to compare

Minor update Release for Qt Creator 3.6.

This is an update release that fixes the issue with checking string literals in macros. This is an important release since QStringLiteral() is a macro function.

The README.txt file attached contains all information need to deploy the plugin. Please refer to the main page of the project for usage information.
QtCreator: 3.6.0
README.txt

For Windows: *.zip
For Ubuntu (x64): *.tar.gz

v0.9.0

17 Dec 19:25
Compare
Choose a tag to compare

Release for Qt Creator 3.6.

This build contains support for different languages (not latin based alphabet), thanks to the contribution by @IvanSafonov.

Apart from the above change no other changes were made from version 0.8.0 except for some code cleanup.

The README.txt file attached contains all information need to deploy the plugin. Please refer to the main page of the project for usage information.
QtCreator: 3.6.0
README.txt

For Windows: *.zip
For Ubuntu (x64): *.tar.gz

v0.8.0

03 Nov 21:03
Compare
Choose a tag to compare

Optimisation release for QtC 3.5 and initial builds for QtC 3.6.0 Beta 1.

This build does not contain any new functionality.

For parsing a C++ document an optimisation is implemented when a file is checked multiple times where the parser will attempt not to parse tokens (comments and string literals) if the token did not change. It will re-use the words that were extracted from the token on the previous pass.
There will not be any improvement when switching to a new file, a file is parsed for the first time or if settings changes.

This release also contains binaries for QtCreator 3.6.0-beta1. Please make sure to download the correct version that corresponds to your version of QtCreator and your OS.

The README.txt file attached contains all information need to deploy the plugin. Please refer to the main page of the project for usage information.
QtCreator: 3.5 and 3.6.0-beta1
README.txt

For Windows: *.zip
For Ubuntu 14.04.01 (x64): *.tar.gz

v0.7.0

26 Oct 20:18
Compare
Choose a tag to compare

Bugfix and Optimisation release for QtC 3.5

This release does not contain any new functionality. The following bugs were fixed:

  • Added 'typedef' to the list of reserved C++ keywords.
  • Fixed the saving and loading of 'Check external files' setting.

The following optimisation was done:

  • Reusing suggestions of misspelled words as much as possible since getting suggestions for the same word from the spellchecker takes a lot of time.

Hopefully the next release will be version 1.0 when QtC 3.6 gets released.

The README.txt file attached contains all information need to deploy the plugin. Please refer to the main page of the project for usage information.

This release is for:
QtCreator: 3.5
For Windows: *.zip
For Ubuntu 14.04.01 (x64): *.tar.gz

v0.6.0

26 Aug 20:39
Compare
Choose a tag to compare

Release for Qt 3.5 and moving towards first major release.

From a user perspective the following changes were made

  • Added suggestions to the "Spell Check" menu when Right clicking on a misspelled word.
    • Added option to the Spell Checker to either replace only the suggested word or all instances of misspelled word on current page when using the right click menu.
  • Improved guides, messages and errors associated with setting up the spell checker that should be used for the plugin.
  • *.dox files will also now be parsed as a C++ file if the QtCreator mime type is set up for dox files.
  • Added notification if more than one word was replaced by a single action.

Behind the scenes the following changes were made:

  • The actual Spell Checking of parsed words are now done in a background thread. This is the first step into improving the performance of the plugin when parsing large files.
    • A few more updates will follow but for now the release is made for testing and so that the plugin can be used with the latest version of Qt Creator (3.5).

The README.txt file attached contains all information need to deploy the plugin. Please refer to the main page of the project for usage information.

This release is for:
QtCreator: 3.5
For Windows: *.zip
For Ubuntu 14.04.01 (x64): *.tar.gz