Skip to content

Commit f304ab7

Browse files
committed
v0.21.0
1 parent 5ab26a6 commit f304ab7

File tree

9 files changed

+28
-8
lines changed

9 files changed

+28
-8
lines changed

asconfigc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222
<parent>
2323
<groupId>com.as3mxml.vscode</groupId>
2424
<artifactId>vscode-as3mxml</artifactId>
25-
<version>0.21.0-SNAPSHOT</version>
25+
<version>0.21.0</version>
2626
</parent>
2727

2828
<groupId>com.as3mxml.vscode</groupId>

check-java-version/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.as3mxml.vscode</groupId>
99
<artifactId>vscode-as3mxml</artifactId>
10-
<version>0.21.0-SNAPSHOT</version>
10+
<version>0.21.0</version>
1111
</parent>
1212

1313
<groupId>com.as3mxml.vscode</groupId>

check-royale-version/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222
<parent>
2323
<groupId>com.as3mxml.vscode</groupId>
2424
<artifactId>vscode-as3mxml</artifactId>
25-
<version>0.21.0-SNAPSHOT</version>
25+
<version>0.21.0</version>
2626
</parent>
2727

2828
<groupId>com.as3mxml.vscode</groupId>

distribution/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222
<parent>
2323
<groupId>com.as3mxml.vscode</groupId>
2424
<artifactId>vscode-as3mxml</artifactId>
25-
<version>0.21.0-SNAPSHOT</version>
25+
<version>0.21.0</version>
2626
</parent>
2727

2828
<groupId>com.as3mxml.vscode</groupId>

distribution/src/assembly/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## v0.21.0
2+
3+
### New Features
4+
5+
* 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.
6+
* 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.
7+
8+
### Fixed Issues
9+
10+
* Code Actions: Fixed issue where a null reference exception could be thrown if the line number and indent could not be discovered.
11+
* Completion: Fixed issue where completing a method incorrectly added `()` when the next character in the file is already `(`.
12+
* Debugger: Fixed issue where port forwarding for connected devices was not cleaned up if the connection to the debugger times out.
13+
* Syntax: Fixed issue where comments inside function signature parameters were not colored correctly.
14+
* Syntax: Fixed issue where parameter types containing numbers were not colored correctly.
15+
16+
### Other Changes
17+
18+
* 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.
19+
* 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.
20+
121
## v0.20.0
222

323
### New Features

language-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222
<parent>
2323
<groupId>com.as3mxml.vscode</groupId>
2424
<artifactId>vscode-as3mxml</artifactId>
25-
<version>0.21.0-SNAPSHOT</version>
25+
<version>0.21.0</version>
2626
</parent>
2727

2828
<groupId>com.as3mxml.vscode</groupId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
<groupId>com.as3mxml.vscode</groupId>
2222
<artifactId>vscode-as3mxml</artifactId>
23-
<version>0.21.0-SNAPSHOT</version>
23+
<version>0.21.0</version>
2424
<name>vscode-as3mxml</name>
2525
<packaging>pom</packaging>
2626

rcsh/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222
<parent>
2323
<groupId>com.as3mxml.vscode</groupId>
2424
<artifactId>vscode-as3mxml</artifactId>
25-
<version>0.21.0-SNAPSHOT</version>
25+
<version>0.21.0</version>
2626
</parent>
2727

2828
<groupId>com.as3mxml.vscode</groupId>

swf-debugger/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ limitations under the License.
2121
<parent>
2222
<artifactId>vscode-as3mxml</artifactId>
2323
<groupId>com.as3mxml.vscode</groupId>
24-
<version>0.21.0-SNAPSHOT</version>
24+
<version>0.21.0</version>
2525
</parent>
2626

2727
<groupId>com.as3mxml.vscode</groupId>

0 commit comments

Comments
 (0)