mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
monero version added into the footer
This commit is contained in:
parent
7a806de1ec
commit
a287cb7ef0
4 changed files with 8 additions and 3 deletions
|
@ -36,6 +36,7 @@ set(MONERO_HEADERS_DIR
|
|||
include_directories(
|
||||
${MONERO_HEADERS_DIR}/src
|
||||
${MONERO_HEADERS_DIR}/external
|
||||
${MONERO_HEADERS_DIR}/build
|
||||
${MONERO_HEADERS_DIR}/contrib/epee/include
|
||||
${MONERO_HEADERS_DIR}/external/easylogging++
|
||||
${MONERO_HEADERS_DIR}/external/db_drivers/liblmdb)
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
#define KEY_IMAGE_EXPORT_FILE_MAGIC "Monero key image export\002"
|
||||
#define OUTPUT_EXPORT_FILE_MAGIC "Monero output export\003"
|
||||
|
||||
#include "release/version/version.h"
|
||||
|
||||
#include "net/http_client.h"
|
||||
#include "storages/http_abstract_invoke.h"
|
||||
|
|
|
@ -4736,7 +4736,8 @@ private:
|
|||
// autogenrated version.h during compilation
|
||||
static const mstch::map footer_context {
|
||||
{"last_git_commit_hash", string {GIT_COMMIT_HASH}},
|
||||
{"last_git_commit_date", string {GIT_COMMIT_DATETIME}}
|
||||
{"last_git_commit_date", string {GIT_COMMIT_DATETIME}},
|
||||
{"monero_version_full" , string {MONERO_VERSION_FULL}},
|
||||
};
|
||||
|
||||
string footer_html = mstch::render(xmreg::read(TMPL_FOOTER), footer_context);
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
<div class="center">
|
||||
<h6 style="margin-top:10px">
|
||||
<a href="https://github.com/moneroexamples/onion-monero-blockchain-explorer">source code</a> | version: {{last_git_commit_date}} | last commit hash: {{last_git_commit_hash}}
|
||||
<a href="https://github.com/moneroexamples/onion-monero-blockchain-explorer">source code</a>
|
||||
| explorer version: {{last_git_commit_date}}-{{last_git_commit_hash}}
|
||||
| monero version: {{monero_version_full}}
|
||||
</h6>
|
||||
</h6>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in a new issue