Explorer tab:
- New block explorer tab with search, chain stats, mempool info,
recent blocks table, block detail modal with tx expansion
- Sidebar nav entry, i18n strings, ui.toml layout values
Bootstrap fixes:
- Move wizard Done handler into render() — was dead code, preventing
startEmbeddedDaemon() and tryConnect() from firing post-wizard
- Stop deleting BDB database/ dir during cleanup — caused LSN mismatch
that salvaged wallet.dat into wallet.{timestamp}.bak
- Add banlist.dat, db.log, .lock to cleanup file list
- Fatal extraction failure for blocks/ and chainstate/ files
- Verification progress: split SHA-256 (0-50%) and MD5 (50-100%)
Theme system:
- Expand overlay merge to apply ALL sections (tabs, dialogs, components,
screens, flat sections), not just theme+backdrop+effects
- Add screens and security section parsing to UISchema
- Build-time theme expansion via expand_themes.py (CMake + build.sh)
Other:
- Version bump to 1.1.0
- WalletState::clear() resets all fields (sync, daemon info, etc.)
- Sidebar item-height 42 → 36
32 lines
896 B
C
32 lines
896 B
C
// DragonX Wallet - ImGui Edition
|
|
// Copyright 2024-2026 The Hush Developers
|
|
// Released under the GPLv3
|
|
|
|
#pragma once
|
|
|
|
// !! DO NOT EDIT version.h — it is generated from version.h.in by CMake.
|
|
// !! Change the version in CMakeLists.txt: project(... VERSION x.y.z ...)
|
|
|
|
#define DRAGONX_VERSION "1.1.0"
|
|
#define DRAGONX_VERSION_MAJOR 1
|
|
#define DRAGONX_VERSION_MINOR 1
|
|
#define DRAGONX_VERSION_PATCH 0
|
|
|
|
#define DRAGONX_APP_NAME "ObsidianDragon"
|
|
#define DRAGONX_ORG_NAME "Hush"
|
|
|
|
// Default RPC settings
|
|
#define DRAGONX_DEFAULT_RPC_HOST "127.0.0.1"
|
|
#define DRAGONX_DEFAULT_RPC_PORT "21769"
|
|
|
|
// Coin parameters
|
|
#define DRAGONX_TICKER "DRGX"
|
|
#define DRAGONX_COIN_NAME "DragonX"
|
|
#define DRAGONX_URI_SCHEME "drgx"
|
|
#define DRAGONX_ZATOSHI_PER_COIN 100000000
|
|
#define DRAGONX_DEFAULT_FEE 0.0001
|
|
|
|
// Config file names
|
|
#define DRAGONX_CONF_FILENAME "DRAGONX.conf"
|
|
#define DRAGONX_WALLET_FILENAME "wallet.dat"
|