Skip to content

Releases: aurelia/vscode-extension

2.3.5

05 Oct 16:01
Compare
Choose a tag to compare
2.3.5 Pre-release
Pre-release

2.3.5 (2022-10-05)

Bug Fixes

  • core: add "aurelia-bootstrapper" to v1 detection (d09dfc3), closes #199

Capabilities

  • disabled renames (now default is false)

v2.3.4

10 Apr 14:13
Compare
Choose a tag to compare
v2.3.4 Pre-release
Pre-release

2.3.4 (2022-04-10)

Bug Fixes

  • documents: Start up crash on certain projects.
    • check if file exists before (3b08349)

2.3.3

15 Mar 16:01
Compare
Choose a tag to compare
2.3.3 Pre-release
Pre-release

2.3.3 (2022-03-15)

Bug Fixes

  • core: Update a file should now correctly update the extension internal logic.
    • update uses correct paths to compare (fab68cd)

2.3.0

17 Feb 10:21
Compare
Choose a tag to compare
2.3.0 Pre-release
Pre-release

2.3.0 (2022-02-06)

Note on versioning

We are trying out VSCode pre-release https://code.visualstudio.com/api/working-with-extensions/publishing-extension.
In the hopes, that we can more freely push updates, and to monitor code changes, before an "official" release.

Example:

  • 2.3.* for pre-release
  • 2.4.* for release

Bug Fixes

  • core: use correct file format for document finding (98cf4ca)
  • definitions: add editing tracker (56d1d1b)
  • rename: add editing tracker (1c4a65d)

If you noticed, that normal Typescript Renaming and Definitions behaved off. Yes that was our mistake.
Explanation:

  • To enrich your view model files with Aurelia specific features, we return (eg. View information) in the Defintions list as well
  • But, when we return new information, the old Typescript Defintions are overwritten.
  • So we used a library (TsMorph) to readd those missing Typescript Defintions.
  • When doing so, the normal Typescript Defintions sometimes got outdated
    • Because we only accounted for saved files and not files, that you are currently editing (eg. a dot instead of an x next the file name)
  • --> Fix: Try to always use files, that have the correct "real time" content
    • Detail: Introduce a editingFilesTracker array, that collects files while you are editing
      • Clears the tracker on save.

2.1.4

01 Jan 21:05
Compare
Choose a tag to compare

fix for attributes containerless, compile-spy, and view-spy

08 Feb 19:51
Compare
Choose a tag to compare

0.2.4 (2017-02-08)

Bug Fixes

  • highlight: containerless, compile-spy, and view-spy regex add foward lookahead for ' ' or '>', resolves #35 (8735a7a)

0.2.3

03 Feb 17:02
Compare
Choose a tag to compare
0.2.3 Pre-release
Pre-release

Bug Fixes

  • commands: change to current directory before executing new command (0c566e7)
  • themes: update dark plus theme to color css scopes, resolves #34 (a10ac53)

Features

  • themes: add solarized dark & light themes with Aurelia syntax, resolves #33 (0f1c7b2)

fixes for aurelia themes with vscode 1.9.0

03 Feb 06:04
Compare
Choose a tag to compare

Bug Fixes

  • readme: remove outdated screenshot (1267382)
  • themes: scopes won't auto inherit anymore in 1.9.0, defined all au scopes seperatly (22d308a)

fixes for vscode 1.9.0

03 Feb 06:03
Compare
Choose a tag to compare
Pre-release

Bug Fixes

  • dependencies: updated vscode-languageclient, vscode-languageserver. vscode-languageserver-types (3794414)
  • theme: adjust dark theme to new settings in vscode 1.9 (691610f)
  • theme: adjust light theme to new settings in vscode 1.9 (f4cd0f4)

Features

  • vscode: SnippetString was removed and API changed to InsertTextFormat.Snippet (4ee1599)

upgrade to snippetstring

03 Feb 06:02
Compare
Choose a tag to compare
Pre-release

Features

  • vscode: adopt SnippetString for auto complete (new feature in vscode 1.8.0) (#28), resolves #25 (a438cb5)