Complete rebranding of all components: - Core miner: xmrig -> miner (binary, version.h, CMakeLists.txt) - Proxy: xmrig-proxy -> miner-proxy - CUDA plugin: xmrig-cuda -> miner-cuda - Heatmap: xmrig-nonces-heatmap -> miner-nonces-heatmap - Go CLI wrapper: miner-cli -> miner-ctrl Vendored XMRig ecosystem into miner/ directory: - miner/core - XMRig CPU/GPU miner - miner/proxy - Stratum proxy - miner/cuda - NVIDIA CUDA plugin - miner/heatmap - Nonce visualization tool - miner/config - Configuration UI - miner/deps - Pre-built dependencies Updated dev fee to use project wallet with opt-out (kMinimumDonateLevel=0) Updated branding to Lethean (domain, copyright, version 0.1.0) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
36 lines
1.3 KiB
C
36 lines
1.3 KiB
C
/* XMRig
|
|
* Copyright 2018-2020 SChernykh <https://github.com/SChernykh>
|
|
* Copyright 2016-2020 XMRig <https://github.com/xmrig>, <support@xmrig.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef XMRIG_VERSION_H
|
|
#define XMRIG_VERSION_H
|
|
|
|
#define APP_ID "miner-nonces-heatmap"
|
|
#define APP_NAME "Miner Nonces Heatmap"
|
|
#define APP_DESC "Miner nonces heatmap visualizer"
|
|
#define APP_DOMAIN "lethean.io"
|
|
#define APP_SITE "www.lethean.io"
|
|
#define APP_COPYRIGHT "Copyright (C) 2025 Lethean"
|
|
#define APP_KIND "nonces-heatmap"
|
|
|
|
#define APP_VER_MAJOR 0
|
|
#define APP_VER_MINOR 1
|
|
#define APP_VER_PATCH 0
|
|
|
|
#include "base/kernel/version-common.h"
|
|
|
|
#endif /* XMRIG_VERSION_H */
|