Skip to content

Releases: DamnWidget/anaconda

v1.4.7

11 Apr 11:46
Compare
Choose a tag to compare

Changes in 1.4.7

Fixes

  • Wrap Jedi API call to 'clear_time_caches' into a try, except and fallback to
    'clear_caches' for users that uses their own Jedi version (old version)

v1.4.6

11 Apr 02:55
Compare
Choose a tag to compare

Changes in 1.4.6

Fixes

  • Fix incompatible API call into Jedi cache clearing features. Solves #297

v1.4.5

10 Apr 14:02
Compare
Choose a tag to compare

Changes in 1.4.5

Third party

  • Bump version for Jedi library

Fixes

v1.4.4

10 Mar 15:34
Compare
Choose a tag to compare

Changes in 1.4.4

Fixes

For more detailed information about those changes run git v1.4.3..v1.4.4 on git repository

v1.4.3

25 Feb 21:19
Compare
Choose a tag to compare

Changes in 1.4.3

Fixes

  • Fix for issue #283 introduced in v1.4.0

For more detailed information about those changes run git v1.4.2..v1.4.3 on git repository

v1.4.2

25 Feb 15:13
Compare
Choose a tag to compare

Changes in 1.4.2

Fixes

Improvements

  • Improved tooltips for method signatures and docstrings
  • Support $project_path in python_interpreter and extra_paths

For more detailed information about those changes run git v1.4.1..v1.4.2 on git repository

v1.4.1

21 Feb 18:24
Compare
Choose a tag to compare

Changes in 1.4.1

  • Fixed small bug introduced in v1.4.0 when find usages was used

For more detailed information about those changes run git v1.4.0..v1.4.1 on git repository

v1.4.0

21 Feb 14:35
Compare
Choose a tag to compare

Changes in 1.4.0

Sublime Text 3 build 3070 included a new API that allow us to show
tooltips with basic formated HTML on them.

This release implements this feature that should be available to anyone
using Sublime Text 3 build 3070 or newer.

Notes

In build 3070 the tooltips doesn't play nice with the auto completion
the solution is to update to 3071 or better or just disable tooltips
in anaconda configuration file

Configuration Changes

  • Display signatures is now true by default
  • Tooltips are enabled by default
  • More informative display signatures is enabled by default

Customizable Tooltips

The theme of the tooltips are customizable, there are two by default themes:

  • Dark (for darker themes)
  • Light (for lighter themes)

Users can create their own custom themes adding CSS files with their
customizations into Packages/User/Anaconda.themes like for example:

Packages/User/Anaconda.themes/custom_tooltip.css

CSS Template

html {
    background-color: #141414;
    color: #d3bc5f;
}

h3 {
    color: #beb7c8;
    font-size: 1.2em;
}

.signature {
    margin-top: 4px;
}

.doc_signature {
    margin-top: 4px;
    color: #44849b;
    font-size: 1.2em;
}

For more detailed information about those changes run git v1.3.7..v1.4.0 on git repository

v1.3.7

27 Jan 19:57
Compare
Choose a tag to compare

Changes in 1.3.7

Minor enhancements and bug fixes

Bug Fixes

Fixed #259
* resolves bug in in path resolution for test runner introduced in v1.3.6

Features

Resolves #260
* added configurable test_runner theme option

Resolves #263
* added option to show error list automatically on save

For more detailed information about those changes run git v1.3.6..v1.3.7 on git repository

v1.3.6

17 Jan 19:59
Compare
Choose a tag to compare

Changes in 1.3.6

Several bug fixes

Upgrades

  • jedi upgraded to commit 91710e0310e136018fc491c30dd5b0c8c6134f2f
  • pyflakes upgraded to 0.8.2a0
  • pep8 upgraded to 1.6.0a0
  • pep257 upgraded to version 0.4

Bug Fixes

Fixed #218

* fixed wrong offset in underline linting

Fixed #238

* fixed runtime exception when 'run test under the cursor' didn't return a valid path

Fixed #252

* skip docstring blocks in the imports validator

Fixed #253

* Sometimes ST3 behaves weird in Windows making anaconda not
  able to spawn JsonServers as the project name can't be
  infered. A workaround has been added to solve that.

For more detailed information about those changes run git v1.3.5..v1.3.6 on git repository