Skip to content

Commit 96e1c8f

Browse files
committed
release: 2.4.4
2 parents 3cafe10 + 9441c0c commit 96e1c8f

22 files changed

+59
-41
lines changed

CREDITS.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Project Dependencies
22
Package: fyi
3-
Version: 2.4.3
3+
Version: 2.4.4
44
Target: x86_64-unknown-linux-gnu
5-
Generated: 2026-01-23 02:12:25 UTC
5+
Generated: 2026-02-04 22:19:43 UTC
66

77
| Package | Version | Author(s) | License |
88
| ---- | ---- | ---- | ---- |
99
| [**argyle**](https://github.com/Blobfolio/argyle) | 0.15.0 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
1010
| [**dactyl**](https://github.com/Blobfolio/dactyl) | 0.13.2 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
11-
| [**fyi_ansi**](https://github.com/Blobfolio/fyi) | 2.4.3 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
12-
| [**fyi_msg**](https://github.com/Blobfolio/fyi) | 2.4.3 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
11+
| [**fyi_ansi**](https://github.com/Blobfolio/fyi) | 2.4.4 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
12+
| [**fyi_msg**](https://github.com/Blobfolio/fyi) | 2.4.4 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
1313
| [tz-rs](https://github.com/x-hgg-x/tz-rs) | 0.7.1 | x-hgg-x | MIT OR Apache-2.0 |
1414
| [**utc2k**](https://github.com/Blobfolio/utc2k) | 0.19.0 | [Josh Stoik](mailto:josh@blobfolio.com) | WTFPL |
1515

fyi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fyi"
3-
version = "2.4.3"
3+
version = "2.4.4"
44
license = "WTFPL"
55
authors = ["Josh Stoik <josh@blobfolio.com>"]
66
edition = "2024"

fyi_ansi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fyi_ansi"
3-
version = "2.4.3"
3+
version = "2.4.4"
44
authors = ["Josh Stoik <josh@blobfolio.com>"]
55
edition = "2024"
66
rust-version = "1.90"

fyi_msg/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fyi_msg"
3-
version = "2.4.3"
3+
version = "2.4.4"
44
authors = ["Josh Stoik <josh@blobfolio.com>"]
55
edition = "2024"
66
rust-version = "1.90"

fyi_msg/src/progress/mod.rs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,17 @@ impl ProglessInner {
377377
/// # Cycle Number.
378378
fn cycle(&self) -> u8 { self.cycle.load(SeqCst) }
379379

380+
#[inline]
381+
#[must_use]
382+
/// # Current Done.
383+
fn done(&self) -> Option<NonZeroU32> {
384+
if self.running() {
385+
let done_total = self.done_total.load(SeqCst);
386+
NonZeroU32::new(done!(done_total) as u32)
387+
}
388+
else { None }
389+
}
390+
380391
#[inline]
381392
/// # Is Ticking.
382393
///
@@ -1512,6 +1523,13 @@ impl Progless {
15121523
Ok(())
15131524
}
15141525

1526+
#[inline]
1527+
#[must_use]
1528+
/// # Current Done.
1529+
///
1530+
/// Return the current "done" amount, if any and the instance is running.
1531+
pub fn done(&self) -> Option<NonZeroU32> { self.inner.done() }
1532+
15151533
#[inline]
15161534
/// # Set Done.
15171535
///

release/man/fyi-aborted.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.TH "FYI ABORTED" "1" "January 2026" "fyi aborted v2.4.3" "User Commands"
1+
.TH "FYI ABORTED" "1" "February 2026" "fyi aborted v2.4.4" "User Commands"
22
.SH NAME
3-
ABORTED \- Manual page for fyi aborted v2.4.3.
3+
ABORTED \- Manual page for fyi aborted v2.4.4.
44
.SH DESCRIPTION
55
Aborted: Hello World
66
.SS USAGE:

release/man/fyi-blank.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.TH "FYI BLANK" "1" "January 2026" "fyi blank v2.4.3" "User Commands"
1+
.TH "FYI BLANK" "1" "February 2026" "fyi blank v2.4.4" "User Commands"
22
.SH NAME
3-
BLANK \- Manual page for fyi blank v2.4.3.
3+
BLANK \- Manual page for fyi blank v2.4.4.
44
.SH DESCRIPTION
55
Print blank line(s).
66
.SS USAGE:

release/man/fyi-confirm.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.TH "FYI CONFIRM" "1" "January 2026" "fyi confirm v2.4.3" "User Commands"
1+
.TH "FYI CONFIRM" "1" "February 2026" "fyi confirm v2.4.4" "User Commands"
22
.SH NAME
3-
CONFIRM \- Manual page for fyi confirm v2.4.3.
3+
CONFIRM \- Manual page for fyi confirm v2.4.4.
44
.SH DESCRIPTION
55
Ask a Yes/No question using the built\-in prefix "confirm".
66
.SS USAGE:

release/man/fyi-crunched.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.TH "FYI CRUNCHED" "1" "January 2026" "fyi crunched v2.4.3" "User Commands"
1+
.TH "FYI CRUNCHED" "1" "February 2026" "fyi crunched v2.4.4" "User Commands"
22
.SH NAME
3-
CRUNCHED \- Manual page for fyi crunched v2.4.3.
3+
CRUNCHED \- Manual page for fyi crunched v2.4.4.
44
.SH DESCRIPTION
55
Crunched: Hello World
66
.SS USAGE:

release/man/fyi-debug.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
.TH "FYI DEBUG" "1" "January 2026" "fyi debug v2.4.3" "User Commands"
1+
.TH "FYI DEBUG" "1" "February 2026" "fyi debug v2.4.4" "User Commands"
22
.SH NAME
3-
DEBUG \- Manual page for fyi debug v2.4.3.
3+
DEBUG \- Manual page for fyi debug v2.4.4.
44
.SH DESCRIPTION
55
Debug: Hello World
66
.SS USAGE:

0 commit comments

Comments
 (0)