Skip to content

Commit

Permalink
Update Version to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mafanwei committed Apr 14, 2022
1 parent 7c50675 commit 60dc70d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,10 @@

* delete `bgColor` api.('Use `chartColors.bgColor` instead.')
* Add TradeLine.
* Fixed about data not contain `change` or `radio`.
* Fixed about data not contain `change` or `radio`.

## [0.6.1]

* Add `chartColors.lineFillInsideColor`.
* Add `materialInfoDialog` config.
* Fix: removes duplicate crossLine and crossLine text rendering.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Maybe this is the best k chart in Flutter.Support drag,scale,long press,fling.An
#### Install
```
dependencies:
k_chart: ^0.6.0
k_chart: ^0.6.1
```
or use latest:
```
Expand Down
4 changes: 2 additions & 2 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ class _MyHomePageState extends State<MyHomePage> {
/*
* 可以翻墙使用方法1加载数据,不可以翻墙使用方法2加载数据,默认使用方法1加载最新数据
*/
//final Future<String> future = getChatDataFromInternet(period);
final Future<String> future = getChatDataFromJson();
final Future<String> future = getChatDataFromInternet(period);
//final Future<String> future = getChatDataFromJson();
future.then((String result) {
solveChatData(result);
}).catchError((_) {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: k_chart
description: A Flutter K Chart.
version: 0.6.0
version: 0.6.1
homepage: https://github.com/mafanwei/k_chart

environment:
Expand Down

0 comments on commit 60dc70d

Please sign in to comment.