Skip to content

Commit

Permalink
Task/release 0.14.10 (#161)
Browse files Browse the repository at this point in the history
* Fix clippy lints

* Bump version
  • Loading branch information
tarkah authored Jun 17, 2024
1 parent fb53601 commit 7dd73f5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 10 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ and `Removed`.

## [Unreleased]

## [0.14.10] - 2024-06-17

### Fixed

- Race condition preventing data from loading if a long update interval was defined
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tickrs"
version = "0.14.9"
version = "0.14.10"
authors = ["tarkah <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tickrs-api"
version = "0.14.9"
version = "0.14.10"
authors = ["tarkah <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
6 changes: 1 addition & 5 deletions src/draw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,13 +206,9 @@ fn draw_main<B: Backend>(frame: &mut Frame<B>, app: &mut App, area: Rect) {
let state = &mut stock.chart_configuration;

let chart_type = stock.chart_type;
let time_frame = stock.time_frame;

frame.render_stateful_widget(
ChartConfigurationWidget {
chart_type,
time_frame,
},
ChartConfigurationWidget { chart_type },
main_chunks[1],
state,
);
Expand Down
1 change: 0 additions & 1 deletion src/widget/chart_configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,6 @@ pub enum KagiSelection {

pub struct ChartConfigurationWidget {
pub chart_type: ChartType,
pub time_frame: TimeFrame,
}

impl StatefulWidget for ChartConfigurationWidget {
Expand Down

0 comments on commit 7dd73f5

Please sign in to comment.