From 8cb17f5adc248c09b7fa7743a275308309dbc972 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 13 Jan 2020 20:30:21 +1300 Subject: Remove milliseconds from HTML timestamps --- vim/autoload/html/timestamp.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/autoload/html/timestamp.vim b/vim/autoload/html/timestamp.vim index ad79ad23..ce814c94 100644 --- a/vim/autoload/html/timestamp.vim +++ b/vim/autoload/html/timestamp.vim @@ -1,7 +1,7 @@ " Keys and date formats for return value of s:Timestamp() let s:formats = { \ 'human': '%a, %d %b %Y %T %Z', - \ 'machine': '%Y-%m-%dT%H:%M:%S.000Z', + \ 'machine': '%Y-%m-%dT%H:%M:%SZ', \} " Get UTC timestamp string dictionary with layout in s:formats -- cgit v1.2.3 From 6b0ef53854f77dbebc8542bb0198095be710bb1b Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 13 Feb 2020 10:05:46 +1300 Subject: Update pattern to match for HTML timestamps --- vim/autoload/html/timestamp.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/autoload/html/timestamp.vim b/vim/autoload/html/timestamp.vim index ce814c94..9de19aa0 100644 --- a/vim/autoload/html/timestamp.vim +++ b/vim/autoload/html/timestamp.vim @@ -34,7 +34,7 @@ function! s:Timestamp(time) abort endfunction " Define timestamp prefix string -let s:prefix = 'Last updated: ' +let s:prefix = 'Last updated: ' " Define pattern to match date timestamps; no ZALGO, please let s:pattern = '\m\C' -- cgit v1.2.3 From dc1f169027be6cf81b318a6ab2d99258e9de350d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 13 Feb 2020 10:06:01 +1300 Subject: Bump VERSION --- VERSION | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index f6914680..bc8d395d 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -tejr dotfiles v8.11.0 -Mon, 13 Jan 2020 00:00:06 +0000 +tejr dotfiles v8.12.0 +Wed, 12 Feb 2020 21:06:01 +0000 -- cgit v1.2.3