Skip to content

Commit 6ff4e50

Browse files
committed
v2.3.1 release
1 parent 9a1f20d commit 6ff4e50

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

Diff for: README.txt

+7-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ SonoA (Sono)
5252
Tribus (JH, keccak, simd)
5353
Woodcoin (Double Skein)
5454
Vanilla (Blake256 8-rounds - double sha256)
55-
Vertcoin Lyra2RE
56-
Ziftrcoin (ZR5)
55+
Vertcoin Lyra2REv3
5756
Boolberry (Wild Keccak)
5857
Monero (Cryptonight v7 with -a monero)
5958
Aeon (Cryptonight-lite)
@@ -291,6 +290,12 @@ so we can more efficiently implement new algorithms using the latest hardware
291290
features.
292291

293292
>>> RELEASE HISTORY <<<
293+
Jan. 30th 2019 v2.3.1
294+
Handle Lyra2v3 algo
295+
Handle sha256q algo
296+
Handle exosis algo
297+
Handle blake2b standard algo
298+
294299
June 23th 2018 v2.3
295300
Handle phi2 header variation for smart contracts
296301
Handle monero, stellite, graft and cryptolight variants

Diff for: configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([ccminer], [2.3], [], [ccminer], [http://github.com/tpruvot/ccminer])
1+
AC_INIT([ccminer], [2.3.1], [], [ccminer], [http://github.com/tpruvot/ccminer])
22

33
AC_PREREQ([2.59c])
44
AC_CANONICAL_SYSTEM

Diff for: lyra2/lyra2REv3.cu

+2-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ extern "C" int scanhash_lyra2v3(int thr_id, struct work* work, uint32_t max_nonc
6666
const uint32_t first_nonce = pdata[19];
6767
int dev_id = device_map[thr_id];
6868
int intensity = (device_sm[dev_id] < 500) ? 18 : is_windows() ? 19 : 20;
69-
if (strstr(device_name[dev_id], "GTX 10")) intensity = 20;
69+
if (strstr(device_name[dev_id], "GTX 1")) intensity = 20;
70+
if (strstr(device_name[dev_id], "RTX 20")) intensity = 20;
7071
uint32_t throughput = cuda_default_throughput(dev_id, 1UL << intensity);
7172
if (init[thr_id]) throughput = min(throughput, max_nonce - first_nonce);
7273

Diff for: res/ccminer.rc

+5-5
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ IDI_ICON1 ICON "ccminer.ico"
6060
//
6161

6262
VS_VERSION_INFO VERSIONINFO
63-
FILEVERSION 2,3,0,0
64-
PRODUCTVERSION 2,3,0,0
63+
FILEVERSION 2,3,1,0
64+
PRODUCTVERSION 2,3,1,0
6565
FILEFLAGSMASK 0x3fL
6666
#ifdef _DEBUG
6767
FILEFLAGS 0x21L
@@ -76,10 +76,10 @@ BEGIN
7676
BEGIN
7777
BLOCK "040904e4"
7878
BEGIN
79-
VALUE "FileVersion", "2.3"
80-
VALUE "LegalCopyright", "Copyright (C) 2018"
79+
VALUE "FileVersion", "2.3.1"
80+
VALUE "LegalCopyright", "Copyright (C) 2019"
8181
VALUE "ProductName", "ccminer"
82-
VALUE "ProductVersion", "2.3"
82+
VALUE "ProductVersion", "2.3.1"
8383
END
8484
END
8585
BLOCK "VarFileInfo"

0 commit comments

Comments
 (0)