Skip to content

Commit

Permalink
v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtynjala committed Sep 20, 2018
1 parent e0d91b6 commit 861ef20
Show file tree
Hide file tree
Showing 13 changed files with 256 additions and 329 deletions.
2 changes: 1 addition & 1 deletion asconfigc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ limitations under the License.
<parent>
<groupId>com.as3mxml.vscode</groupId>
<artifactId>vscode-nextgenas</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
</parent>

<groupId>com.as3mxml.vscode</groupId>
Expand Down
2 changes: 1 addition & 1 deletion check-java-version/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.as3mxml.vscode</groupId>
<artifactId>vscode-nextgenas</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
</parent>

<groupId>com.as3mxml.vscode</groupId>
Expand Down
2 changes: 1 addition & 1 deletion check-royale-version/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ limitations under the License.
<parent>
<groupId>com.as3mxml.vscode</groupId>
<artifactId>vscode-nextgenas</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
</parent>

<groupId>com.as3mxml.vscode</groupId>
Expand Down
2 changes: 1 addition & 1 deletion distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ limitations under the License.
<parent>
<groupId>com.as3mxml.vscode</groupId>
<artifactId>vscode-nextgenas</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
</parent>

<groupId>com.as3mxml.vscode</groupId>
Expand Down
25 changes: 25 additions & 0 deletions distribution/src/assembly/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
## v0.14.0

### New Features

* Multi-Threading: Improved performance by handling requests from VSCode in multiple threads.
* Outline: Symbols in the Outline view are now displayed as a tree. For example, you'll now see properties and methods of a class as its children.
* Quick Compile & Debug: If another debug session is currently active, it is now stopped automatically before starting a new one.
* Settings: Replaced prefix `nextgenas` with `as3mxml`. For example, `nextgenas.sdk.framework` is now `as3mxml.sdk.framework`. You don't need to do anything to migrate. The extension will detect existing settings and automatically convert them when you open a workspace.
* Tasks: Provides additional build tasks for workspaces that contain multiple *asconfig* JSON files. For example, you could now create the standard *asconfig.json* for development, with a separate *asconfig.prod.json* for production builds.

### Fixed Issues

* Build: Fixed issue where files that should be included when packaging an Adobe AIR app were not available when debugging in the simulator.
* Code Intelligence: Fixed issue where adding, removing, or changing *.swc* files in the workspace would not update code intelligence without restaring VSCode.
* Completion: Fixed issue where the list of states in MXML didn't include state groups.
* Library projects: In addition to `source-path`, now also checks for `include-sources` to determine if a file should support code intelligence when opened in an editor.
* Multi-Root Workspaces: Fixed stability issues in workspaces with multiple root folders.
* Multi-Root Workspaces: Fixed issue where adding a new root folder to a workspace would not activate code intelligence until VSCode is restarted.
* Royale: Fixed issue where the order of items in the `targets` compiler option did not affect code intelligence anymore.
* Syntax Highlighting: Fixed a number of issues that should make ActionScript more consistent with other languages.

### Other Changes

* eclipse/lsp4j updated to v0.5.0.

## v0.13.0

### New Features
Expand Down
2 changes: 1 addition & 1 deletion distribution/src/assembly/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

## Minimum Requirements

* Visual Studio Code 1.24
* Visual Studio Code 1.27
* Java 1.8 Runtime

## asconfig.json
Expand Down
2 changes: 1 addition & 1 deletion language-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ limitations under the License.
<parent>
<groupId>com.as3mxml.vscode</groupId>
<artifactId>vscode-nextgenas</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
</parent>

<groupId>com.as3mxml.vscode</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.

<groupId>com.as3mxml.vscode</groupId>
<artifactId>vscode-nextgenas</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
<name>vscode-nextgenas</name>
<packaging>pom</packaging>

Expand Down
2 changes: 1 addition & 1 deletion rcsh/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ limitations under the License.
<parent>
<groupId>com.as3mxml.vscode</groupId>
<artifactId>vscode-nextgenas</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
</parent>

<groupId>com.as3mxml.vscode</groupId>
Expand Down
2 changes: 1 addition & 1 deletion swf-debugger/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ limitations under the License.
<parent>
<artifactId>vscode-nextgenas</artifactId>
<groupId>com.as3mxml.vscode</groupId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>
</parent>

<groupId>com.as3mxml.vscode</groupId>
Expand Down
Loading

0 comments on commit 861ef20

Please sign in to comment.