diff --git a/CHANGELOG.md b/CHANGELOG.md index a9c0ab6..80e3073 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 14de9d0..d73ec64 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1348,7 +1348,7 @@ dependencies = [ [[package]] name = "tickrs" -version = "0.14.9" +version = "0.14.10" dependencies = [ "anyhow", "async-std", @@ -1371,7 +1371,7 @@ dependencies = [ [[package]] name = "tickrs-api" -version = "0.14.9" +version = "0.14.10" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 3bf6848..92f4ecd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tickrs" -version = "0.14.9" +version = "0.14.10" authors = ["tarkah "] edition = "2021" license = "MIT" diff --git a/api/Cargo.toml b/api/Cargo.toml index df1ae79..560ed2f 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tickrs-api" -version = "0.14.9" +version = "0.14.10" authors = ["tarkah "] edition = "2021" license = "MIT" diff --git a/src/draw.rs b/src/draw.rs index f5b1df2..aa2b8f7 100644 --- a/src/draw.rs +++ b/src/draw.rs @@ -206,13 +206,9 @@ fn draw_main(frame: &mut Frame, 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, ); diff --git a/src/widget/chart_configuration.rs b/src/widget/chart_configuration.rs index 415923e..ef26986 100644 --- a/src/widget/chart_configuration.rs +++ b/src/widget/chart_configuration.rs @@ -260,7 +260,6 @@ pub enum KagiSelection { pub struct ChartConfigurationWidget { pub chart_type: ChartType, - pub time_frame: TimeFrame, } impl StatefulWidget for ChartConfigurationWidget {