Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updateversion3.4.1 #479

Merged
merged 6 commits into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## [3.4.1] - 2023-8-4

### Changed

#### base

- Fix dart analysis check warning.

#### components

- **Breaking change**: remove deprecated attribute <code>fontSize</code> in  <code>BrnIconButton</code>, use <code>style</code> instead .

- **Breaking change**: in order to optimize the use of <code>MediaQueryData.fromWindow</code> and replace it with the official suggested api, add attribute <code> context </code> to the <code>keyOrValueLastQuestionInfo</code> method and <code>valueLastClickInfo</code> method in <code>BrnInfoModal</code>.

- **Breaking change**: remove deprecated attribute <code>isShowXDial</code>in <code>BrnPointsLine</code>, use <code>isShowXDial</code> in <code>BrnLinePainter</code> instead.



## [3.4.0] - 2023-7-24

### Changed
Expand Down
1 change: 1 addition & 0 deletions README.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ Please download from [Releases](https://github.com/LianjiaTech/bruno/releases) o
| 3.2.0 | 3.3.0 |
| 3.3.0 | 3.7.0 |
| 3.4.0 | 3.10.0 |
| 3.4.1 | 3.10.0 |


## Preparing for use
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
| 3.2.0 | 3.3.0 |
| 3.3.0 | 3.7.0 |
| 3.4.0 | 3.10.0 |
| 3.4.1 | 3.10.0 |



Expand Down
7 changes: 1 addition & 6 deletions lib/src/components/charts/broken_line/brn_line_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,6 @@ class BrnPointsLine {
/// 点内圈的半径
double? pointInnerRadius;

/// 是否显示x轴的文字,用来处理多个线条绘制的时候,同一x轴坐标不需要绘制多次,则只需要将多条线中一个标记绘制即可
@Deprecated('该字段废弃,X刻度是否绘制由 [BrnBrokenLine.isShowXDial]')
bool isShowXDial;

/// 标记是否为曲线
bool isCurve;

Expand All @@ -121,8 +117,7 @@ class BrnPointsLine {
bool isShowPointText;

BrnPointsLine(
{this.isShowXDial = false,
this.lineWidth = 2,
{this.lineWidth = 2,
this.pointRadius = 0,
this.pointColor,
this.pointInnerRadius,
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: bruno
description: An enterprise-class package of Flutter components for mobile applications.
version: 3.4.0
version: 3.4.1
homepage: https://github.com/LianjiaTech/bruno

environment:
Expand Down
Loading