Skip to content

Commit 756db9e

Browse files
unknownunknown
authored andcommitted
update README for v1.0.5
1 parent ccccf3b commit 756db9e

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

NEWS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Version multi 1.0.5 (Tanguy Pruvot)
22

33
- Merge remaining v2.4 cpu-miner changes
4-
- Add colored output option (--color)
5-
- Add --cputest parameter (debug)
4+
- Add colored output (diable with --no-color)
65
- Test and fix blake on NEOS, needs 14 rounds (was 8)
76
- Add pentablake (5x blake256) (from bitbandi)
87
- Add neoscrypt
9-
- Windows (VC++ 2013 build support)
8+
- Windows (VC++ 2013 and MinGW64 build support)
9+
- Enhance --version informations (compiler + lib versions)
1010

1111
Version multi 1.0.4 (Tanguy Pruvot)
1212

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Algorithms
2929
*__x15__ (RadianceCoin [RCE])
3030
*__cryptonight__ (Bytecoin [BCN], Monero)
3131
*__fresh__ (FreshCoin)
32-
*__blake__ (Neos blake256)
32+
*__blake__ (Neos/Saffron Blake-256)
3333
*__neoscrypt__ (Feathercoin)
3434
*__pentablake__ (Joincoin)
3535

@@ -47,13 +47,16 @@ Algorithms
4747

4848
Dependencies
4949
============
50-
* libcurl http://curl.haxx.se/libcurl/
51-
* jansson http://www.digip.org/jansson/ (jansson is included in-tree)
52-
* openssl https://www.openssl.org/
50+
* libcurl http://curl.haxx.se/libcurl/
51+
* jansson http://www.digip.org/jansson/ (jansson is included in-tree)
52+
* openssl https://www.openssl.org/
53+
* pthreads
54+
* zlib (for curl/ssl)
5355

5456
Download
5557
========
56-
* Binary releases: https://github.com/LucasJones/cpuminer-multi/releases
58+
* Binary releases: https://github.com/LucasJones/cpuminer-multi/releases
59+
* Windows releases: https://github.com/tpruvot/cpuminer-multi/releases
5760
* Git tree: https://github.com/LucasJones/cpuminer-multi
5861
* Clone with `git clone https://github.com/LucasJones/cpuminer-multi`
5962

@@ -73,7 +76,7 @@ Build
7376

7477
#### Basic Windows build with Visual Studio 2013
7578
* All the required .lib files are now included in tree (windows only)
76-
* AVX enabled by default, but not AVX2 (edit cpu-miner-config.h if required)
79+
* AVX enabled by default for x64 platform (AVX2 and XOP could also be used)
7780

7881
#### Basic Windows build instructions, using MinGW:
7982
* Install MinGW and the MSYS Developer Tool Kit (http://www.mingw.org/)
@@ -84,7 +87,8 @@ Build
8487
* Make sure you have curl-config in MinGW\bin
8588
* Install openssl devel (https://www.openssl.org/related/binaries.html)
8689
* In the MSYS shell, run:
87-
* ./autogen.sh # only needed if building from git repo
90+
* for 64bit, you can use ./mingw64.sh else :
91+
./autogen.sh # only needed if building from git repo
8892
* LIBCURL="-lcurldll" ./configure CFLAGS="*-march=native*"
8993
* # Use -march=native if building for a single machine
9094
* make

cpu-miner.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@ static void share_result(int result, struct work *work, const char *reason)
928928
accepted_count, accepted_count + rejected_count,
929929
100. * accepted_count / (accepted_count + rejected_count), s,
930930
use_colors ?
931-
(result ? CL_GRN "(yay!!!)" : CL_RED "(booooo)")
931+
(result ? CL_GRN "yay!!!" : CL_RED "booooo")
932932
: (result ? "(yay!!!)" : "(booooo)"));
933933
break;
934934
}

0 commit comments

Comments
 (0)