Skip to content

Commit 193af05

Browse files
committed
prepare for 0.4.2
1 parent f3b272a commit 193af05

File tree

9 files changed

+24
-14
lines changed

9 files changed

+24
-14
lines changed

check-flexjs-version/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ limitations under the License.
2222
<parent>
2323
<groupId>com.nextgenactionscript.vscode</groupId>
2424
<artifactId>vscode-nextgenas</artifactId>
25-
<version>0.4.2-SNAPSHOT</version>
25+
<version>0.4.2</version>
2626
</parent>
2727

2828
<groupId>com.nextgenactionscript.vscode</groupId>
2929
<artifactId>check-flexjs-version</artifactId>
30-
<version>0.4.2-SNAPSHOT</version>
30+
<version>0.4.2</version>
3131
<name>check-flexjs-version</name>
3232

3333
<build>

check-java-version/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<parent>
88
<groupId>com.nextgenactionscript.vscode</groupId>
99
<artifactId>vscode-nextgenas</artifactId>
10-
<version>0.4.2-SNAPSHOT</version>
10+
<version>0.4.2</version>
1111
</parent>
1212

1313
<groupId>com.nextgenactionscript.vscode</groupId>
1414
<artifactId>check-java-version</artifactId>
15-
<version>0.4.2-SNAPSHOT</version>
15+
<version>0.4.2</version>
1616
<name>check-java-version</name>
1717

1818
<build>

distribution/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ limitations under the License.
2222
<parent>
2323
<groupId>com.nextgenactionscript.vscode</groupId>
2424
<artifactId>vscode-nextgenas</artifactId>
25-
<version>0.4.2-SNAPSHOT</version>
25+
<version>0.4.2</version>
2626
</parent>
2727

2828
<groupId>com.nextgenactionscript.vscode</groupId>
2929
<artifactId>distribution</artifactId>
30-
<version>0.4.2-SNAPSHOT</version>
30+
<version>0.4.2</version>
3131
<name>distribution</name>
3232
<packaging>pom</packaging>
3333

distribution/src/assembly/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.4.2
2+
3+
* When opening a workspace, immediately checks for errors instead of waiting to open an ActionScript or MXML file.
4+
* ActionScript completion is now supported inside MXML event attributes.
5+
* Added ability to specify `extdir` option in `launch.json` to allow AIR applications to access a directory of unpacked native extensions.
6+
* Search for symbols in workspace is now case insensitive and it may start from anywhere inside the fully qualified name of a symbol (not only from the beginning).
7+
* Fixed issue where the generated `launch.json` might reference the wrong file extension (was .as, but should have been .swf).
8+
* Fixed issue where the completion list was incorrectly empty after activating with Ctrl+click on the left side of member access.
9+
* Fixed issue where a goto definition link would not appear if the mouse was over the first character of an identifier.
10+
111
## 0.4.1
212

313
* Fixed issue where super protected members were sometimes omitted

language-server/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ limitations under the License.
2222
<parent>
2323
<groupId>com.nextgenactionscript.vscode</groupId>
2424
<artifactId>vscode-nextgenas</artifactId>
25-
<version>0.4.2-SNAPSHOT</version>
25+
<version>0.4.2</version>
2626
</parent>
2727

2828
<groupId>com.nextgenactionscript.vscode</groupId>
2929
<artifactId>language-server</artifactId>
30-
<version>0.4.2-SNAPSHOT</version>
30+
<version>0.4.2</version>
3131
<name>language-server</name>
3232

3333
<build>

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.nextgenactionscript.vscode</groupId>
2222
<artifactId>vscode-nextgenas</artifactId>
23-
<version>0.4.2-SNAPSHOT</version>
23+
<version>0.4.2</version>
2424
<name>vscode-nextgenas</name>
2525
<packaging>pom</packaging>
2626

swf-debugger/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ limitations under the License.
2121
<parent>
2222
<artifactId>vscode-nextgenas</artifactId>
2323
<groupId>com.nextgenactionscript.vscode</groupId>
24-
<version>0.4.2-SNAPSHOT</version>
24+
<version>0.4.2</version>
2525
</parent>
2626

2727
<groupId>com.nextgenactionscript.vscode</groupId>
2828
<artifactId>swf-debugger</artifactId>
29-
<version>0.4.2-SNAPSHOT</version>
29+
<version>0.4.2</version>
3030
<name>swf-debugger</name>
3131

3232
<build>

vscode-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-nextgenas",
33
"displayName": "NextGen ActionScript",
44
"description": "ActionScript and MXML language extension for Visual Studio Code",
5-
"version": "0.4.2-SNAPSHOT",
5+
"version": "0.4.2",
66
"publisher": "bowlerhatllc",
77
"homepage": "http://nextgenactionscript.com/vscode/",
88
"repository": {

vscode-extension/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ limitations under the License.
2222
<parent>
2323
<groupId>com.nextgenactionscript.vscode</groupId>
2424
<artifactId>vscode-nextgenas</artifactId>
25-
<version>0.4.2-SNAPSHOT</version>
25+
<version>0.4.2</version>
2626
</parent>
2727

2828
<groupId>com.nextgenactionscript.vscode</groupId>
2929
<artifactId>vscode-extension</artifactId>
30-
<version>0.4.2-SNAPSHOT</version>
30+
<version>0.4.2</version>
3131
<name>vscode-extension</name>
3232

3333
<properties>

0 commit comments

Comments
 (0)