From a64ff3b6304ad52201f2467d36d69e6b5db0b986 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Lo=CC=81pez=20Guevara?= Date: Mon, 28 Jul 2025 20:20:50 -0300 Subject: [PATCH] feat(note): created at show full date format --- crates/notedeck/src/time.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/notedeck/src/time.rs b/crates/notedeck/src/time.rs index 973fe26c..ea23b862 100644 --- a/crates/notedeck/src/time.rs +++ b/crates/notedeck/src/time.rs @@ -88,7 +88,7 @@ pub fn time_format(_i18n: &mut Localization, timestamp: i64) -> String { // TODO: format this using the selected locale DateTime::from_timestamp(timestamp, 0) .unwrap() - .format("%Y-%m-%d %H:%M:%S") + .format("%l:%M %p %b %d, %Y") .to_string() }