Skip to content

Commit

Permalink
Version 4.0.0-beta.34
Browse files Browse the repository at this point in the history
  • Loading branch information
martynasma committed Jul 22, 2018
1 parent b6ef246 commit 97c95d7
Show file tree
Hide file tree
Showing 81 changed files with 200 additions and 144 deletions.
Binary file not shown.
Binary file modified dist/amcharts_geodata_4.0.4.zip
Binary file not shown.
14 changes: 10 additions & 4 deletions dist/ember/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,29 @@ 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.0.0-beta.34] - 2018-07-22

### Fixed
- Dramatic performance improvements!


## [4.0.0-beta.33] - 2018-07-19

### Added
- `calcualtePercent` flag added to `Series`. Default value is `false`, except for `PieSeries`. Series will not calculate percent values of each data item if this is not explicitly set to `true`. Since it wasn't been used anywhere but Pie chart, this should improve performance of initial data parsing.
- `calculatePercent` flag added to `Series`. Default value is `false`, except for `PieSeries`. Series will not calculate percent values of each data item if this is not explicitly set to `true`. Since it wasn't been used anywhere but Pie chart, this should improve performance of initial data parsing.

### Fixed
- Performance improvements. Especially when zooming/scrolling chart with a lot of data.
- `lineSeries` was not paying attention to `propertyField` values set in data.
- Radar and Gauge charts were not centered properly when resizing window.
- Container's background properties were not copied when clonging container.
- Container's background properties were not copied when cloning container.


## [4.0.0-beta.32] - 2018-07-17

### Important (potentially breaking changes)
- To maintain event-naming consistecy, events `"insert"` and `"remove"` were renamed to `"inserted"` and `"removed"` respectively in `List` and its inheriting classes. [#132]
- To maintain event-naming consistecy, events `"clear"` and `"remove"` were renamed to `"cleared"` and `"removed"` respectively in `Dictionary` and its inheriting classes.
- To maintain event-naming consistency, events `"insert"` and `"remove"` were renamed to `"inserted"` and `"removed"` respectively in `List` and its inheriting classes. [#132]
- To maintain event-naming consistency, events `"clear"` and `"remove"` were renamed to `"cleared"` and `"removed"` respectively in `Dictionary` and its inheriting classes.

### Fixed
- Significant performance improvements were made.
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.0.0-beta.33",
"version": "4.0.0-beta.34",
"description": "Ember add-on for AmCharts V4",
"keywords": [
"ember-addon",
Expand Down
14 changes: 10 additions & 4 deletions dist/ember/vendor/script/amcharts4/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,29 @@ 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.0.0-beta.34] - 2018-07-22

### Fixed
- Dramatic performance improvements!


## [4.0.0-beta.33] - 2018-07-19

### Added
- `calcualtePercent` flag added to `Series`. Default value is `false`, except for `PieSeries`. Series will not calculate percent values of each data item if this is not explicitly set to `true`. Since it wasn't been used anywhere but Pie chart, this should improve performance of initial data parsing.
- `calculatePercent` flag added to `Series`. Default value is `false`, except for `PieSeries`. Series will not calculate percent values of each data item if this is not explicitly set to `true`. Since it wasn't been used anywhere but Pie chart, this should improve performance of initial data parsing.

### Fixed
- Performance improvements. Especially when zooming/scrolling chart with a lot of data.
- `lineSeries` was not paying attention to `propertyField` values set in data.
- Radar and Gauge charts were not centered properly when resizing window.
- Container's background properties were not copied when clonging container.
- Container's background properties were not copied when cloning container.


## [4.0.0-beta.32] - 2018-07-17

### Important (potentially breaking changes)
- To maintain event-naming consistecy, events `"insert"` and `"remove"` were renamed to `"inserted"` and `"removed"` respectively in `List` and its inheriting classes. [#132]
- To maintain event-naming consistecy, events `"clear"` and `"remove"` were renamed to `"cleared"` and `"removed"` respectively in `Dictionary` and its inheriting classes.
- To maintain event-naming consistency, events `"insert"` and `"remove"` were renamed to `"inserted"` and `"removed"` respectively in `List` and its inheriting classes. [#132]
- To maintain event-naming consistency, events `"clear"` and `"remove"` were renamed to `"cleared"` and `"removed"` respectively in `Dictionary` and its inheriting classes.

### Fixed
- Significant performance improvements were made.
Expand Down
2 changes: 1 addition & 1 deletion dist/ember/vendor/script/amcharts4/charts.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

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/charts/axes/CategoryAxis.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/charts/axes/CategoryAxis.js.map

Large diffs are not rendered by default.

22 changes: 18 additions & 4 deletions dist/es2015/.internal/core/Container.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,19 @@ export declare class Container extends Sprite {
*/
hasFocused: boolean;
/**
* Specifies if, when state is applied on this container, the same state should be applied to container's children
* Specifies if, when state is applied on this container, the same state
* should be applied to container's children as well as `background`.
*
* @type {boolean}
*/
setStateOnChildren: boolean;
/**
* An array of references to elements the state should be set, when it is set
* ont this element.
*
* @type {Sprite[]}
*/
setStateOnSprites: Sprite[];
layoutInvalid: boolean;
protected _absoluteWidth: number;
protected _absoluteHeight: number;
Expand Down Expand Up @@ -346,9 +355,8 @@ export declare class Container extends Sprite {
* ones can be drawn first.
*
* @ignore Exclude from docs
* @param {Sprite[]} children Container's children (elements)
*/
sortChildren(children?: Sprite[]): void;
sortChildren(): void;
/**
* Calculates relative sizes for all Container's children.
*
Expand Down Expand Up @@ -395,6 +403,12 @@ export declare class Container extends Sprite {
* @param {Sprite} background Background element
*/
background: this["_background"];
/**
* Handles the situation where parent element is resized.
*
* @ignore Exclude from docs
*/
handleGlobalScale(): void;
/**
* Creates and returns a [[Rectangle]] to use as a background for Container.
*
Expand Down Expand Up @@ -557,7 +571,7 @@ export declare class Container extends Sprite {
*/
/**
* Font size to be used for the text. The size can either be numeric, in
* pxels, or other measurements.
* pixels, or other measurements.
*
* Parts of the text may override this setting using in-line formatting.
*
Expand Down
50 changes: 32 additions & 18 deletions dist/es2015/.internal/core/Container.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/Container.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/es2015/.internal/core/Sprite.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -511,9 +511,9 @@ export declare class Sprite extends BaseObjectEvents implements IAnimatable {
* Parent container.
*
* @ignore Exclude from docs
* @type {MutableValueDisposer}
* @type {Container}
*/
protected _parent: MutableValueDisposer<Container>;
protected _parent: Container;
/**
* Defines bounding box (square) for this element.
*
Expand Down
Loading

0 comments on commit 97c95d7

Please sign in to comment.