Skip to content

Commit

Permalink
v0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtynjala committed Jul 19, 2019
1 parent 5ab26a6 commit f304ab7
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 8 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-as3mxml</artifactId>
<version>0.21.0-SNAPSHOT</version>
<version>0.21.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-as3mxml</artifactId>
<version>0.21.0-SNAPSHOT</version>
<version>0.21.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-as3mxml</artifactId>
<version>0.21.0-SNAPSHOT</version>
<version>0.21.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-as3mxml</artifactId>
<version>0.21.0-SNAPSHOT</version>
<version>0.21.0</version>
</parent>

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

### New Features

* Editor: Enabled partial code intelligence for open files that come from outside of the workspace's source path. This includes SDK framework classes, and *.as* and *.mxml* files that are opened when no workspace folder is open in Visual Studio Code.
* Settings: Added `as3mxml.problems.showFileOutsideSourcePath` setting to disable the informational message that is displayed when an open *.as* or *.mxml* file is not in the workspace's source path.

### Fixed Issues

* Code Actions: Fixed issue where a null reference exception could be thrown if the line number and indent could not be discovered.
* Completion: Fixed issue where completing a method incorrectly added `()` when the next character in the file is already `(`.
* Debugger: Fixed issue where port forwarding for connected devices was not cleaned up if the connection to the debugger times out.
* Syntax: Fixed issue where comments inside function signature parameters were not colored correctly.
* Syntax: Fixed issue where parameter types containing numbers were not colored correctly.

### Other Changes

* Build: Activating a "quick compile" command before the language server initializes now queues it up for later, instead of displaying an error message. After initialization, the queued compile command will be re-attempted.
* Language Server: Consolidated the `TextDocumentService` and `WorkspaceService` implementations into a single `ActionScriptServices` class. Custom language servers that extend the old `ActionScriptTextDocumentService` or `ActionScriptWorkspaceService` will need to extend the new class instead.

## v0.20.0

### New Features
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-as3mxml</artifactId>
<version>0.21.0-SNAPSHOT</version>
<version>0.21.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-as3mxml</artifactId>
<version>0.21.0-SNAPSHOT</version>
<version>0.21.0</version>
<name>vscode-as3mxml</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-as3mxml</artifactId>
<version>0.21.0-SNAPSHOT</version>
<version>0.21.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-as3mxml</artifactId>
<groupId>com.as3mxml.vscode</groupId>
<version>0.21.0-SNAPSHOT</version>
<version>0.21.0</version>
</parent>

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

0 comments on commit f304ab7

Please sign in to comment.