Skip to content

Commit

Permalink
Version 4.10.32
Browse files Browse the repository at this point in the history
  • Loading branch information
martynasma committed Dec 14, 2022
1 parent 1ed95fb commit b181d6a
Show file tree
Hide file tree
Showing 17 changed files with 41 additions and 13 deletions.
6 changes: 6 additions & 0 deletions dist/ember/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
Please note, that this project, while following numbering syntax, it DOES NOT
adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) rules.

## [4.10.32] - 2022-12-14

### Fixed
- Image export was broken in some cases since 4.10.31.


## [4.10.31] - 2022-12-13

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion dist/ember/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@amcharts/amcharts4-ember",
"version": "4.10.31",
"version": "4.10.32",
"description": "Ember add-on for amCharts 4",
"keywords": [
"ember-addon",
Expand Down
6 changes: 6 additions & 0 deletions dist/ember/vendor/script/amcharts4/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
Please note, that this project, while following numbering syntax, it DOES NOT
adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) rules.

## [4.10.32] - 2022-12-14

### Fixed
- Image export was broken in some cases since 4.10.31.


## [4.10.31] - 2022-12-13

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion dist/ember/vendor/script/amcharts4/core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ember/vendor/script/amcharts4/core.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/es2015/.internal/core/System.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/es2015/.internal/core/System.js.map

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion dist/es2015/.internal/core/export/Export.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/es2015/.internal/core/export/Export.js.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions dist/es2015/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
Please note, that this project, while following numbering syntax, it DOES NOT
adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) rules.

## [4.10.32] - 2022-12-14

### Fixed
- Image export was broken in some cases since 4.10.31.


## [4.10.31] - 2022-12-13

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@amcharts/amcharts4",
"version": "4.10.31",
"version": "4.10.32",
"author": "amCharts <[email protected]> (https://www.amcharts.com/)",
"description": "amCharts 4",
"homepage": "https://www.amcharts.com/",
Expand Down
6 changes: 6 additions & 0 deletions dist/script/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
Please note, that this project, while following numbering syntax, it DOES NOT
adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) rules.

## [4.10.32] - 2022-12-14

### Fixed
- Image export was broken in some cases since 4.10.31.


## [4.10.31] - 2022-12-13

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion dist/script/core.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/script/core.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "@amcharts/amcharts4",
"version": "4.10.31",
"version": "4.10.32",
"repository": {
"type": "git",
"url": "https://github.com/amcharts/amcharts4.git"
Expand Down
2 changes: 1 addition & 1 deletion src/.internal/core/System.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class System {
*
* @see {@link https://docs.npmjs.com/misc/semver}
*/
static VERSION: string = "4.10.31";
static VERSION: string = "4.10.32";

/**
* @todo Description
Expand Down
4 changes: 3 additions & 1 deletion src/.internal/core/export/Export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2601,7 +2601,9 @@ export class Export extends Validatable {
* @param canvas Canvas element
*/
protected disposeCanvas(canvas: HTMLCanvasElement): void {
document.body.removeChild(canvas);
if (document.body.contains(canvas)) {
document.body.removeChild(canvas);
}
}

/**
Expand Down

0 comments on commit b181d6a

Please sign in to comment.