Improve Nitter version string on about page

This commit is contained in:
Zed 2022-01-03 08:54:22 +01:00
parent 0ef90270b7
commit 9a578b3cbb
1 changed files with 7 additions and 5 deletions

View File

@ -1,10 +1,12 @@
# SPDX-License-Identifier: AGPL-3.0-only
import karax/[karaxdsl, vdom]
import markdown
import strformat
import karax/[karaxdsl, vdom], markdown
const
hash = staticExec("git log -1 --format=\"%h\"")
date = staticExec("git show -s --format=\"%cd\" --date=format:\"%Y.%m.%d\"")
hash = staticExec("git show -s --format=\"%h\"")
link = "https://github.com/zedeus/nitter/commit/" & hash
version = &"{date}-{hash}"
let
about = markdown(readFile("public/md/about.md"))
@ -15,8 +17,8 @@ proc renderAbout*(): VNode =
verbatim about
h2: text "Instance info"
p:
text "Commit "
a(href=link): text hash
text "Version "
a(href=link): text version
proc renderFeature*(): VNode =
buildHtml(tdiv(class="overlay-panel")):