Skip to content

Commit

Permalink
0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
algenty committed Dec 20, 2019
2 parents 7813465 + 923316c commit 47a9f07
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 21 deletions.
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
/bower_components
/externals
/node_modules
/externals
/.vscode
/archives
/public
/coverage
/archives
/backups

yarn-error.log
21 changes: 13 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,32 @@
# Changelog

## [[0.6.0 SNAPSHOT]](https://algenty.github.io/flowcharting-repository/archives/agenty-flowcharting-panel-0.6.0-SNAPSHOT.zip) - 2019-11-24
## [[0.6.0 SNAPSHOT]](https://algenty.github.io/flowcharting-repository/archives/agenty-flowcharting-panel-0.6.0.zip) - 2019-12-20
### Added
- Some optimization on :
- Experimental implementation for table type data (Mysql, Postgres, Zabbix, Streaming, loki and other ...)
- PlaceHolder feature supported [see doc from draw.io](https://desk.draw.io/support/solutions/articles/16000051979)
- Some optimization on :
- tooltips
- States
- Tooltip Graph :
- Histogram ([See example](https://algenty.github.io/flowcharting-repository/images/histogram_ani.png))
- Logarithmic scale.
- Variables support in download input url ([See example](https://algenty.github.io/flowcharting-repository/images/url_download_variable_ani.png))
- Add graduate effect when color changed.
- New rule design in editor
- Typescript convertion.
- Migration to grafana-toolkit.
- New Mxgraph/Draw.io engine for best support.
- Add graduate animation when color changed ([See example](https://video.twimg.com/tweet_video/EISkJwdWwAAi5Qh.mp4))
- New rule design in editor ([See example](https://algenty.github.io/flowcharting-repository/images/rule_design.png))
- Typescript migration for best quality code.
- Build migration to grafana-toolkit (thanks Dominik and Ryan).
- New engine graph for best compatibility with draw.io.
- Better Zoom for firefox and IE/edge.
- Add checks/controls on edit mode for XML and URL.
- Regular expression for String type values implemented to define level state.
### Fixed
- Fix download url on first load.
- Fix value null for string [(issue #65)](https://github.com/algenty/grafana-flowcharting/issues/65)
- Fix bug "subways" Editor [(issue #73)](https://github.com/algenty/grafana-flowcharting/issues/73)
- Fix date on 2 digit in tooltip [(issue #77)](https://github.com/algenty/grafana-flowcharting/issues/73)
- Fix minors bug.



## [[0.5.0 SNAPSHOT]](https://algenty.github.io/flowcharting-repository/archives/agenty-flowcharting-panel-0.5.0-SNAPSHOT.zip) - 2019-10-13
### Added
- 2 new modes for "Update text value" ([See example](https://algenty.github.io/flowcharting-repository/images/append_mode_ani.png))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ See more example at draw.io

# Changelog

## [[0.6.0 SNAPSHOT]](https://algenty.github.io/flowcharting-repository/archives/agenty-flowcharting-panel-0.6.0-SNAPSHOT.zip) - 2019-12-16
## [[0.6.0 SNAPSHOT]](https://algenty.github.io/flowcharting-repository/archives/agenty-flowcharting-panel-0.6.0.zip) - 2019-12-20
### Added
- Experimental implementation for table type data (Mysql, Postgres, Zabbix, Streaming, loki and other ...)
- PlaceHolder feature supported [see doc from draw.io](https://desk.draw.io/support/solutions/articles/16000051979)
- Some optimization on :
- Some optimization on :
- tooltips
- States
- Tooltip Graph :
Expand Down
4 changes: 2 additions & 2 deletions dist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ See more example at draw.io

# Changelog

## [[0.6.0 SNAPSHOT]](https://algenty.github.io/flowcharting-repository/archives/agenty-flowcharting-panel-0.6.0-SNAPSHOT.zip) - 2019-12-08
## [[0.6.0 SNAPSHOT]](https://algenty.github.io/flowcharting-repository/archives/agenty-flowcharting-panel-0.6.0.zip) - 2019-12-20
### Added
- Experimental implementation for table type data (Mysql, Postgres, Zabbix, Streaming, loki and other ...)
- PlaceHolder feature supported [see doc from draw.io](https://desk.draw.io/support/solutions/articles/16000051979)
- Some optimization on :
- Some optimization on :
- tooltips
- States
- Tooltip Graph :
Expand Down
2 changes: 1 addition & 1 deletion dist/module.js

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions src/flowchart_options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ export class FlowchartOptionsCtrl {
this.errorSourceMsg = 'Invalid Xml definition';
} else {
this.errorSourceMsg = '';
this.onSourceChange();
this.$scope.$applyAsync();
}
return bool;
}
Expand Down
4 changes: 2 additions & 2 deletions src/rule_class.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,10 +215,10 @@ export default class Rule {
if (!!obj.tpGraphType) {
this.data.tpGraphType = obj.tpGraphType;
}
if (!!obj.tpGraphLow) {
if (!!obj.tpGraphLow || obj.tpGraphLow === 0) {
this.data.tpGraphLow = obj.tpGraphLow;
}
if (!!obj.tpGraphHigh) {
if (!!obj.tpGraphHigh || obj.tpGraphHigh === 0) {
this.data.tpGraphHigh = obj.tpGraphHigh;
}
if (!!obj.tpGraphScale) {
Expand Down

0 comments on commit 47a9f07

Please sign in to comment.