feat: Add hsd version to settings and bump footer year
All checks were successful
Build Docker / Build Image (push) Successful in 48s

This commit is contained in:
2025-01-30 12:42:46 +11:00
parent 42e8f642b4
commit 86c93da5a2
21 changed files with 27 additions and 22 deletions

View File

@@ -1078,6 +1078,7 @@ def settings():
if not os.path.exists(".git"):
return render_template("settings.html", account=account,sync=account_module.getNodeSync(),
wallet_status=account_module.getWalletStatus(),
hsd_version=account_module.hsdVersion(False),
error=error,success=success,version="Error")
info = gitinfo.get_git_info()
branch = info['refs']
@@ -1092,6 +1093,7 @@ def settings():
return render_template("settings.html", account=account,sync=account_module.getNodeSync(),
wallet_status=account_module.getWalletStatus(),
hsd_version=account_module.hsdVersion(False),
error=error,success=success,version=version)
@app.route('/settings/<action>')