-
Notifications
You must be signed in to change notification settings - Fork 341
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
15 changed files
with
97 additions
and
26 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* XMRig | ||
* Copyright (c) 2018-2022 SChernykh <https://github.com/SChernykh> | ||
* Copyright (c) 2016-2022 XMRig <https://github.com/xmrig>, <[email protected]> | ||
* Copyright (c) 2018-2023 SChernykh <https://github.com/SChernykh> | ||
* Copyright (c) 2016-2023 XMRig <https://github.com/xmrig>, <[email protected]> | ||
* | ||
* 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 | ||
|
@@ -22,18 +22,20 @@ | |
#define APP_ID "xmrig-proxy" | ||
#define APP_NAME "xmrig-proxy" | ||
#define APP_DESC "XMRig Stratum proxy" | ||
#define APP_VERSION "6.18.0" | ||
#define APP_VERSION "6.19.0-dev" | ||
#define APP_DOMAIN "xmrig.com" | ||
#define APP_SITE "www.xmrig.com" | ||
#define APP_COPYRIGHT "Copyright (C) 2016-2022 xmrig.com" | ||
#define APP_COPYRIGHT "Copyright (C) 2016-2023 xmrig.com" | ||
#define APP_KIND "proxy" | ||
|
||
#define APP_VER_MAJOR 6 | ||
#define APP_VER_MINOR 18 | ||
#define APP_VER_MINOR 19 | ||
#define APP_VER_PATCH 0 | ||
|
||
#ifdef _MSC_VER | ||
# if (_MSC_VER >= 1920) | ||
# if (_MSC_VER >= 1930) | ||
# define MSVC_VERSION 2022 | ||
# elif (_MSC_VER >= 1920 && _MSC_VER < 1930) | ||
# define MSVC_VERSION 2019 | ||
# elif (_MSC_VER >= 1910 && _MSC_VER < 1920) | ||
# define MSVC_VERSION 2017 | ||
|
@@ -50,4 +52,4 @@ | |
# endif | ||
#endif | ||
|
||
#endif /* XMRIG_VERSION_H */ | ||
#endif // XMRIG_VERSION_H |