From 7d03683b995fd4c41e02a79e659bb7183d837f3d Mon Sep 17 00:00:00 2001 From: akwizgran <michael@briarproject.org> Date: Tue, 3 Nov 2020 15:59:29 +0000 Subject: [PATCH] Don't use git timestamps for RSS items. --- build.py | 2 +- content/news/2017-beta-released-security-audit.md | 2 +- content/news/2018-1.0-released-new-funding.md | 2 +- content/news/2018-briar-1.1-released.md | 2 +- content/news/2019-briar-1.2-released-remote-contacts.md | 2 +- test.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/build.py b/build.py index 1e7a4b4..a89eab7 100755 --- a/build.py +++ b/build.py @@ -32,7 +32,7 @@ def checkHtml(file): return "checkHtml: " + file + " is NOT valid" if __name__ == "__main__": - os.system('hugo --enableGitInfo --cleanDestinationDir') + os.system('hugo --cleanDestinationDir') atom = checkAtom('public/index.xml') print atom html = checkHtml('public/index.html') diff --git a/content/news/2017-beta-released-security-audit.md b/content/news/2017-beta-released-security-audit.md index 0a76bac..939d1b9 100644 --- a/content/news/2017-beta-released-security-audit.md +++ b/content/news/2017-beta-released-security-audit.md @@ -1,7 +1,7 @@ --- aliases: - /news/2017-beta-released-security-audit.html -date: 2017-07-21T00:00:00+01:00 +date: 2017-07-21T00:00:00+00:00 title: 'Briar - Darknet Messenger Releases Beta, Passes Security Audit' --- diff --git a/content/news/2018-1.0-released-new-funding.md b/content/news/2018-1.0-released-new-funding.md index b43b8f4..313b2ff 100644 --- a/content/news/2018-1.0-released-new-funding.md +++ b/content/news/2018-1.0-released-new-funding.md @@ -1,7 +1,7 @@ --- aliases: - /news/2018-1.0-released-new-funding.html -date: 2018-05-09T00:00:00+02:00 +date: 2018-05-09T00:00:00+00:00 title: 'Briar - Secure P2P Messenger Releases First Version, Receives New Funding' --- diff --git a/content/news/2018-briar-1.1-released.md b/content/news/2018-briar-1.1-released.md index 73baf86..ad65c9e 100644 --- a/content/news/2018-briar-1.1-released.md +++ b/content/news/2018-briar-1.1-released.md @@ -1,7 +1,7 @@ --- aliases: - /news/2018-briar-1.1-released.html -date: 2018-09-14T00:00:00+02:00 +date: 2018-09-14T00:00:00+00:00 title: 'Briar 1.1 released with dark theme, new emoji and more' --- diff --git a/content/news/2019-briar-1.2-released-remote-contacts.md b/content/news/2019-briar-1.2-released-remote-contacts.md index e2eaede..d8fbe67 100644 --- a/content/news/2019-briar-1.2-released-remote-contacts.md +++ b/content/news/2019-briar-1.2-released-remote-contacts.md @@ -1,7 +1,7 @@ --- aliases: - /news/2019-briar-1.2-released-remote-contacts.html -date: 2019-10-01T00:00:00+02:00 +date: 2019-11-06T00:00:00+00:00 title: 'Briar 1.2 released, contacts can now be added by exchanging links' --- diff --git a/test.py b/test.py index bff04a1..b05ae48 100755 --- a/test.py +++ b/test.py @@ -1,4 +1,4 @@ #!/usr/bin/python import os -os.system('hugo server -D --enableGitInfo') +os.system('hugo server -D') -- GitLab