sematic
sematic copied to clipboard
Show the server version on the UI
When people upgrade regularly, it can be helpful to know what version of the server is running. We should display this information discreetly on the UI
is this issue available to work on?
Hi @Nike682631 – you are welcome to work on this.
The idea is to show the current version in the UI. The version can be found in the versions.py
module, name the CURRENT_VERSION_STR
constant. You can simply display this version string in small characters below the fox logo in the side bar, or all the way at the bottom, as you wish.
I just remembered it's already available via API call as well, at /api/v1/meta/versions
. The response is a json object. You want to display the version under the server
field. It comes as three digits, so you'll want to join them with periods [0, 14, 0] -> "0.14.0"