Mine-when-idle: - Auto-start/stop mining based on system idle time detection - Platform::getSystemIdleSeconds() via XScreenSaver (Linux) / GetLastInputInfo (Win) - Settings: mine_when_idle toggle + configurable delay (30s–10m) - Settings page UI with checkbox and delay combo Console tab: - Shell-like argument parsing with quote and JSON bracket support - Pass JSON objects/arrays directly as RPC params - Fix selection indices when lines are evicted from buffer Connection & status bar: - Reduce RPC connect timeout to 1s for localhost fast-fail - Fast retry timer on daemon startup and external daemon detection - Show pool mining hashrate in status bar; sidebar badge reflects pool state UI polish: - Add logo to About card in settings; expose logo dimensions on App - Header title offset-y support; adjust content-area margins - Fix banned peers row cursor position (rawRowPosB.x) Branding: - Update copyright to "DragonX Developers" in RC and About section - Replace logo/icon assets with updated versions Misc: - setup.sh: checkout dragonx branch before pulling - Remove stale prebuilt-binaries/xmrig/.gitkeep
49 lines
2.1 KiB
Plaintext
49 lines
2.1 KiB
Plaintext
// ObsidianDragon Windows Resource File
|
|
// Application icon — shown in Explorer, taskbar, and Alt-Tab
|
|
// Path configured by CMake (absolute path for cross-compilation)
|
|
// Use numeric ordinal 1 so LoadIcon(hInst, MAKEINTRESOURCE(1)) finds it.
|
|
1 ICON "@OBSIDIAN_ICO_PATH@"
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// Application Manifest — declares DPI awareness, common controls v6,
|
|
// UTF-8 code page, and application identity. Without this, Windows may
|
|
// fall back to legacy process grouping in Task Manager.
|
|
// ---------------------------------------------------------------------------
|
|
1 24 "@OBSIDIAN_MANIFEST_PATH@"
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// VERSIONINFO — sets the description shown in Task Manager, Explorer
|
|
// "Details" tab, and other Windows tools. Without this, MinGW-w64
|
|
// fills in its own runtime description ("POSIX WinThreads for Windows").
|
|
// ---------------------------------------------------------------------------
|
|
#include <winver.h>
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION @DRAGONX_VER_MAJOR@,@DRAGONX_VER_MINOR@,@DRAGONX_VER_PATCH@,0
|
|
PRODUCTVERSION @DRAGONX_VER_MAJOR@,@DRAGONX_VER_MINOR@,@DRAGONX_VER_PATCH@,0
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
FILEFLAGS 0x0L
|
|
FILEOS VOS_NT_WINDOWS32
|
|
FILETYPE VFT_APP
|
|
FILESUBTYPE VFT2_UNKNOWN
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904B0" // US-English, Unicode
|
|
BEGIN
|
|
VALUE "CompanyName", "DragonX Developers\0"
|
|
VALUE "FileDescription", "ObsidianDragon Wallet\0"
|
|
VALUE "FileVersion", "@DRAGONX_VERSION@\0"
|
|
VALUE "InternalName", "ObsidianDragon\0"
|
|
VALUE "LegalCopyright", "Copyright 2024-2026 DragonX Developers. GPLv3.\0"
|
|
VALUE "OriginalFilename", "ObsidianDragon.exe\0"
|
|
VALUE "ProductName", "ObsidianDragon\0"
|
|
VALUE "ProductVersion", "@DRAGONX_VERSION@\0"
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x409, 1200 // US-English, Unicode
|
|
END
|
|
END
|