Skip to content

Commit e446f76

Browse files
committed
v0.22.0
1 parent 09e7a0a commit e446f76

File tree

12 files changed

+96
-22
lines changed

12 files changed

+96
-22
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.22.0-SNAPSHOT</version>
25+
<version>0.22.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.22.0-SNAPSHOT</version>
10+
<version>0.22.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.22.0-SNAPSHOT</version>
25+
<version>0.22.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.22.0-SNAPSHOT</version>
25+
<version>0.22.0</version>
2626
</parent>
2727

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

distribution/src/assembly/CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
## v0.22.0
2+
3+
### New Features
4+
5+
* Build: The `application` field in *asconfig.json* can now (optionally) accept an object that references multiple platforms so that each platform may use a different file.
6+
7+
Example:
8+
9+
``` json
10+
{
11+
"application": {
12+
"ios": "src/ExampleIOS-app.xml",
13+
"android": "src/ExampleAndroid-app.xml"
14+
}
15+
}
16+
```
17+
18+
You may continue to specify a single Adobe AIR application descriptor for all platforms — just like in previous versions:
19+
20+
``` json
21+
{
22+
"application": "src/Example-app.xml"
23+
}
24+
```
25+
26+
* Settings: Added `as3mxml.asconfigc.jvmargs` setting to pass additional arguments to the Java Virtual Machine when running the compiler.
27+
28+
Example:
29+
30+
``` json
31+
{
32+
"as3mxml.asconfigc.jvmargs": "-Xms512m -Xmx1024m"
33+
}
34+
```
35+
36+
This setting may be used to increase performance and fix out of memory errors when compiling, [similar to Adobe Flash Builder](https://helpx.adobe.com/flash-builder/kb/sluggish-performance-out-memory-errors.html).
37+
38+
* Settings: Added `as3mxml.asconfigc.verboseOutput` setting to display more detailed output when running a build task. Verbose output includes the full set of options passed to any tools that are run during the build (including the compiler and the Adobe AIR packager).
39+
40+
### Fixed Issues
41+
42+
* Build: Fixed issue where `-sampler`, `-embedBitcode` and `-hideAneLibSymbols` were incorrectly formatted when packaging an Adobe AIR application for iOS.
43+
* Build: Simplified the ADT command when packaging folders into an Adobe AIR application.
44+
* Build: Fixed issue where folders to be packaged in an Adobe AIR app could not be found when building an asconfig.json file that is not in the workspace root (such as when the file is in a sub-folder).
45+
* Build: Fixed issue where the name of the generated Adobe AIR application descriptor was wrong when using a template from the SDK.
46+
* Debug: Fixed issue where SWF workers were not allowed to start in the debugger.
47+
* Tasks: Fixed issue where Adobe AIR packaging tasks were missing if the `airOptions` section were missing in *asconfig.json*, but other fields could be used to detect the Adobe AIR requirement.
48+
* Code Actions: Fixed null reference exception when MXML cannot be parsed.
49+
* Completion: Fixed issue where `//` in a URL namespace was incorrectly detected as a comment when appearing before an MXML attribute.
50+
* Completion: Fixed issue where completing an MXML attribute does not automatically add `=""` if the next character is already `=`.
51+
52+
### Other Changes
53+
54+
* Documentation: Added a page that explains [how to enable ActionScript and MXML code intelligence in Sublime Text](https://github.com/BowlerHatLLC/vscode-as3mxml/wiki/How-to-use-the-ActionScript-and-MXML-language-server-with-Sublime-Text) by using the language server from this Visual Studio Code extension.
55+
156
## v0.21.0
257

358
### 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.22.0-SNAPSHOT</version>
25+
<version>0.22.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.22.0-SNAPSHOT</version>
23+
<version>0.22.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.22.0-SNAPSHOT</version>
25+
<version>0.22.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.22.0-SNAPSHOT</version>
24+
<version>0.22.0</version>
2525
</parent>
2626

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

vscode-extension/package-lock.json

Lines changed: 31 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)