Skip to content

Commit

Permalink
version 1.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
bp74 committed Jun 20, 2020
1 parent 9483e61 commit 42b5776
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
.packages
.pub/
.idea/
.vscode/
pubspec.lock
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ announcements on the StageXL forum or use one of the support links below:
* StageXL GitHub <https://github.com/bp74/StageXL/issues>
* StageXL StackOverflow: <http://stackoverflow.com/questions/ask?tags=stagexl>

#### 1.4.5
* Upgraded to latest package versions

#### 1.4.4
* Support the latest release of `package:xml`.

Expand Down
2 changes: 1 addition & 1 deletion lib/src/resources/texture_atlas_format_starling_xml.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class _TextureAtlasFormatStarlingXml extends TextureAtlasFormat {
var pixelRatio = loader.getPixelRatio();
var textureAtlas = TextureAtlas(pixelRatio);

var xmlRoot = parse(source).rootElement;
var xmlRoot = XmlDocument.parse(source).rootElement;
var imagePath = _getString(xmlRoot, 'imagePath', '');
var renderTextureQuad = await loader.getRenderTextureQuad(imagePath);

Expand Down

0 comments on commit 42b5776

Please sign in to comment.