From 7d164517ca762cf9fa9108919437396c50dfb13d Mon Sep 17 00:00:00 2001 From: z1nc0r3 Date: Sun, 18 Dec 2022 13:45:02 +0530 Subject: [PATCH 1/3] #1678 Add "hh:mm:ss tt" to clock formats. --- Flow.Launcher/ViewModel/SettingWindowViewModel.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs index a97a328e6..ae8c9d9aa 100644 --- a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs +++ b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs @@ -477,7 +477,8 @@ namespace Flow.Launcher.ViewModel "tt h:mm", "tt hh:mm", "h:mm tt", - "hh:mm tt" + "hh:mm tt", + "hh:mm:ss tt" }; public List DateFormatList { get; } = new() From 8fbf7a852695dd3e5e2dd0746fc3dc7d81af2b6b Mon Sep 17 00:00:00 2001 From: DB p Date: Mon, 19 Dec 2022 10:56:49 +0900 Subject: [PATCH 2/3] Add Time sec format --- Flow.Launcher/ViewModel/SettingWindowViewModel.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs index ae8c9d9aa..c0188fd5a 100644 --- a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs +++ b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs @@ -478,7 +478,8 @@ namespace Flow.Launcher.ViewModel "tt hh:mm", "h:mm tt", "hh:mm tt", - "hh:mm:ss tt" + "hh:mm:ss tt", + "HH:mm:ss tt" }; public List DateFormatList { get; } = new() From b65a32a5254b51204c9d5c116647c1e462e22d89 Mon Sep 17 00:00:00 2001 From: Vic <10308169+VictoriousRaptor@users.noreply.github.com> Date: Sun, 25 Dec 2022 14:05:38 +0800 Subject: [PATCH 3/3] Remove redundant tt --- Flow.Launcher/ViewModel/SettingWindowViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs index d41f455ba..cb528f354 100644 --- a/Flow.Launcher/ViewModel/SettingWindowViewModel.cs +++ b/Flow.Launcher/ViewModel/SettingWindowViewModel.cs @@ -479,7 +479,7 @@ namespace Flow.Launcher.ViewModel "h:mm tt", "hh:mm tt", "hh:mm:ss tt", - "HH:mm:ss tt" + "HH:mm:ss" }; public List DateFormatList { get; } = new()