From c3dc8f411d6ff0b83a66589b29d76155afe2c803 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Wed, 17 Dec 2025 14:18:58 +0800 Subject: Add sheet and time context to no changes status message The "no changes" status message now includes the sheet name and timestamp when displaying that the workspace is synchronized. This provides better context about which sheet and what time the status is based on. --- src/bin/jv.rs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/bin/jv.rs') diff --git a/src/bin/jv.rs b/src/bin/jv.rs index dd00b7e..cf0c720 100644 --- a/src/bin/jv.rs +++ b/src/bin/jv.rs @@ -1966,7 +1966,16 @@ async fn jv_status(_args: StatusArgs) { .trim() ); } else { - println!("{}", md(t!("jv.success.status.no_changes"))); + println!( + "{}", + md(t!( + "jv.success.status.no_changes", + sheet_name = sheet_name, + h = h, + m = m, + s = s + )) + ); } } -- cgit