diff --git a/CHANGELOG.md b/CHANGELOG.md
index f8ad202..8f46fe9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,22 @@
+### Chores
++ dependencies updated, [7a9bdc9699594532e17a33e044ca0678693c8d3f], [58e03a750fe89b914b9069cb0c6c02a3d0929439]
+
+### Docs
++ README.md and screenshot updated, [73ab7580c61dd59c59f10872629111360afb9033]
+
+### Features
++ Ability to delete a container, be warned, as this will force delete, closes #27, [937202fe34d1692693c62dd1a7ad19db37651233]
++ Publish images to `ghcr.io` as well as Docker Hub, [cb1271cf7f21c898020481ad85914a3dcc83ec93]
++ Replace `tui-rs` with [ratatui](https://github.com/tui-rs-revival/ratatui), [d431f850219b28af2bc45f3b6917377604596a40]
+
+### Fixes
++ out of bound bug in `heading_bar()`, [b9c125da46fe0eb4aae15c354d87ac824e9cb83a]
++ `-d` arg error text updated, [e0b49be84062abdfcb636418f57043fad37d06ec]
+
+### Refactors
++ `popup()` use `saturating_x()` rather than `checked_x()`, [d628e8029942916053b3b7e72d363b1290fc5711]
++ button_item() include brackets, [7c92ffef7da20143a31706a310b5e6f2c3e0554f]
+
# v0.2.5
### 2023-03-13
diff --git a/src/ui/draw_blocks.rs b/src/ui/draw_blocks.rs
index 25ed869..ff55df2 100644
--- a/src/ui/draw_blocks.rs
+++ b/src/ui/draw_blocks.rs
@@ -11,7 +11,7 @@ use ratatui::{
},
Frame,
};
-use std::{default::Default, ops::Sub};
+use std::default::Default;
use std::{fmt::Display, sync::Arc};
use crate::app_data::{Header, SortedOrder};
@@ -794,16 +794,17 @@ pub fn delete_confirm(
)
.split(area);
+ // Should maybe have a differenet button_space IF the f.width() is within 2 chars of no_chars + yes_chars?
let button_spacing = (max_line_width - no_chars - yes_chars) / 3;
let split_buttons = Layout::default()
.direction(Direction::Horizontal)
.constraints(
[
- Constraint::Min(button_spacing),
- Constraint::Max(no_chars),
- Constraint::Min(button_spacing),
- Constraint::Max(yes_chars),
- Constraint::Min(button_spacing),
+ Constraint::Max(button_spacing),
+ Constraint::Min(no_chars),
+ Constraint::Max(button_spacing),
+ Constraint::Min(yes_chars),
+ Constraint::Max(button_spacing),
]
.as_ref(),
)