1.6.0-final Preparation

This commit is contained in:
BenDroid 2018-04-16 21:24:33 +02:00
parent 0d003c9a51
commit b7702cf15e
3 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
# 1.6.0
- Complete rewrite of the stratum TCP/TLS network communication using boost::asio to fix connection issues and crashs
- Force of PoW via "variant" parameter in xmrg-proxy 2.5.2+, it now overrules local settings
- Implementation of CN-Heavy algo used by Sumokoin / Haven / ...
- XMRigDaemon now keeps the miner running event when the miner crashs
# 1.5.5
- Fixed Bad/Invalid shares and high share transmit latency
- Fixed hugepages for some older linux versions

View file

@ -112,7 +112,8 @@ add_definitions(/D__STDC_FORMAT_MACROS)
add_definitions(/DUNICODE)
add_definitions(/DMINER_EXECUTABLE_NAME=${MINER_EXECUTABLE_NAME})
#add_definitions(/DAPP_DEBUG)
add_definitions(-fexceptions)
add_compile_options(-fexceptions)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
@ -122,7 +123,7 @@ if (WIN32)
add_definitions(-DBOOST_ALL_NO_LIB)
endif()
find_package(Boost 1.62.0 COMPONENTS system REQUIRED)
find_package(Boost 1.63.0 COMPONENTS system REQUIRED)
include(cmake/flags.cmake)
@ -212,7 +213,6 @@ include_directories(src)
include_directories(src/3rdparty)
include_directories(${UV_INCLUDE_DIR})
include_directories(${Boost_INCLUDE_DIRS})
include_directories(${Boost_INCLUDE_DIRS})
add_library(xmrig_common STATIC ${SOURCES_COMMON})
add_library(xmrig_os_dependencies STATIC ${SOURCES_OS} ${SOURCES_SYSLOG})

View file

@ -36,7 +36,7 @@
#define APP_DESC "XMRigCC CPU miner"
#define APP_COPYRIGHT "Copyright (C) 2017- BenDr0id"
#endif
#define APP_VERSION "1.6.0_beta2 (based on XMRig 2.5.2)"
#define APP_VERSION "1.6.0 (based on XMRig 2.5.2)"
#define APP_DOMAIN ""
#define APP_SITE "https://github.com/Bendr0id/xmrigCC"
#define APP_KIND "cpu"