forked from xmrig/xmrig
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
111 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
* Copyright 2014 Lucas Jones <https://github.com/lucasjones> | ||
* Copyright 2014-2016 Wolf9466 <https://github.com/OhGodAPet> | ||
* Copyright 2016 Jay D Dee <[email protected]> | ||
* Copyright 2016-2017 XMRig <[email protected]> | ||
* Copyright 2016-2018 XMRig <[email protected]> | ||
* | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
|
@@ -27,19 +27,19 @@ | |
#define APP_ID "xmrig" | ||
#define APP_NAME "XMRig" | ||
#define APP_DESC "XMRig CPU miner" | ||
#define APP_VERSION "2.4.3.2" | ||
#define APP_VERSION "2.4.4.1" | ||
#define APP_DOMAIN "xmrig.com" | ||
#define APP_SITE "www.xmrig.com" | ||
#define APP_COPYRIGHT "Copyright (C) 2016-2017 xmrig.com" | ||
#define APP_COPYRIGHT "Copyright (C) 2016-2018 xmrig.com" | ||
#define APP_KIND "cpu" | ||
|
||
#define APP_VER_MAJOR 2 | ||
#define APP_VER_MINOR 4 | ||
#define APP_VER_BUILD 3 | ||
#define APP_VER_REV 2 | ||
#define APP_VER_BUILD 4 | ||
#define APP_VER_REV 1 | ||
|
||
#ifdef _MSC_VER | ||
# if (_MSC_VER == 1910 || _MSC_VER == 1911) | ||
# if (_MSC_VER >= 1910) | ||
# define MSVC_VERSION 2017 | ||
# elif _MSC_VER == 1900 | ||
# define MSVC_VERSION 2015 | ||
|