Skip to content

Commit 4c811e1

Browse files
committed
v0.8.0
1 parent 4ba3ae1 commit 4c811e1

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
## Unreleased
22

3+
## 0.8.0 - 2025-12-18
4+
35
- Rewrite terminal input handling. This should fix all known bugs related to key
46
handling.
57
- Add restart-all and force-restart-all commands

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/build-windows-x86_64.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SET VERSION=0.7.3
1+
SET VERSION=0.8.0
22

33
MKDIR release\mprocs-%VERSION%-windows-x86_64 || exit /b
44

src/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mprocs"
3-
version = "0.7.3"
3+
version = "0.8.0"
44
description = "TUI for running multiple processes"
55
repository = "https://github.com/pvolok/mprocs"
66
authors = ["Pavel Volokitin <pavelvolokitin@gmail.com>"]

src/term/input_parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ where
247247
i += 1;
248248
buf[i - 1]
249249
} else {
250-
log::error!("TODO: CSI is incomplete.");
250+
log::error!("CSI is incomplete. Ignoring.");
251251
return Some(i);
252252
}
253253
} else {

0 commit comments

Comments
 (0)