From 998a2f2ffdf248bd0d0b378330cc2e25a568a60c Mon Sep 17 00:00:00 2001 From: Joscha Date: Sun, 14 Jan 2024 12:41:48 +0100 Subject: [PATCH] Fix crash when window too small with msg editor visible --- CHANGELOG.md | 3 +++ Cargo.lock | 4 ++-- Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ea84d9..8f5a49a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,9 @@ Procedure when bumping the version number: ### Removed - Key binding to open present page +### Fixed +- Crash when window is too small while empty message editor is visible + ## v0.8.0 - 2024-01-04 ### Added diff --git a/Cargo.lock b/Cargo.lock index 9be7313..62cfe27 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1477,8 +1477,8 @@ dependencies = [ [[package]] name = "toss" -version = "0.2.1" -source = "git+https://github.com/Garmelon/toss.git?tag=v0.2.1#b01ee297d5bdbb3b28cafe2b5b130c2767667974" +version = "0.2.2" +source = "git+https://github.com/Garmelon/toss.git?tag=v0.2.2#761e8baeba09b923e2a409ea7df7bb363fc77fd5" dependencies = [ "async-trait", "crossterm", diff --git a/Cargo.toml b/Cargo.toml index 9117885..da87015 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ thiserror = "1.0.56" [workspace.dependencies.toss] git = "https://github.com/Garmelon/toss.git" -tag = "v0.2.1" +tag = "v0.2.2" [profile.dev.package."*"] opt-level = 3