]> Git Repo - cpuminer-multi.git/commitdiff
New version 1.0.4, update README, NEWS
authorTanguy Pruvot <[email protected]>
Sat, 2 Aug 2014 05:40:42 +0000 (07:40 +0200)
committerTanguy Pruvot <[email protected]>
Sat, 2 Aug 2014 09:45:50 +0000 (11:45 +0200)
Add .dirstamp files to gitignore

Signed-off-by: Tanguy Pruvot <[email protected]>
.gitignore
NEWS
README.md
configure.ac
sph_fugue.h [deleted file]

index 536bc72dad3611e2347e013761f501ed7ee5c4ed..ce627b1f6370532645e9005088b9587d5fdc18ab 100644 (file)
@@ -26,5 +26,6 @@ config.sub
 
 mingw32-config.cache
 
+*/.dirstamp
 
-*.iml
\ No newline at end of file
+*.iml
diff --git a/NEWS b/NEWS
index a4ca024d400d3ad44f3e402c563bd76f6405dbb2..f565bb311d0f8fcde3801e19c00ff43ca9f9df4a 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,24 @@
+Version multi 1.0.4 (Tanguy Pruvot)
+
+- Add x13 x14 and x15 algos (Sherlockcoin, X14Coin, Webcoin..)
+- Add scrypt:N variants (Vertcoin)
+- Fix thread khashes/s value output
+- Add a configure option --disable-assembly
+
+Version multi 1.0.3 (Lucas Jones)
+
+- Add new algos :
+  x11 (Darkcoin [DRK], Hirocoin, Limecoin)
+  cryptonight (Bytecoin [BCN], Monero)
+  keccak (Maxcoin  HelixCoin, CryptoMeth, Galleon, 365coin, Slothcoin, BitcointalkCoin)
+  hefty1 (Heavycoin)
+  quark (Quarkcoin)
+  skein (Skeincoin, Myriadcoin)
+  shavite3 (INKcoin)
+  blake (Blakecoin)
+
+- See README.md
+
 Version 2.3.3 - Feb 27, 2014
 
 - The --url option is now mandatory
index d1ce703aebf2c1bdf2854d4165006c4c60dccc66..cd5adf59abde674094350cf1e8bc37b30384bb9d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -24,6 +24,9 @@ Algorithms
  * ✓ __scrypt:N__ (Vertcoin [VTC])
  * ✓ __sha256d__ (Bitcoin, Freicoin, Peercoin/PPCoin, Terracoin, etc..)
  * ✓ __x11__ (Darkcoin [DRK], Hirocoin, Limecoin)
+ * ✓ __x13__ (Sherlockcoin, [ACE], [B2B], [GRC], [XHC], etc..)
+ * ✓ __x14__ (X14, Webcoin [WEB])
+ * ✓ __x14__ (RadianceCoin [RCE])
  * ✓ __cryptonight__ (Bytecoin [BCN], Monero)
 
 #### Implemented, but untested
index d991ce0624766c1ff332f01f0068dfb21071d032..ae81b2e302c6ceec5c46fc2b87c1311d6d7f3725 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([cpuminer], [1.0.3])
+AC_INIT([cpuminer], [1.0.4])
 
 AC_PREREQ([2.59c])
 AC_CANONICAL_SYSTEM
diff --git a/sph_fugue.h b/sph_fugue.h
deleted file mode 100644 (file)
index c8ff395..0000000
+++ /dev/null
@@ -1,81 +0,0 @@
-#ifndef SPH_FUGUE_H__
-#define SPH_FUGUE_H__
-
-#include <stddef.h>
-#include "sph_types.h"
-
-#ifdef __cplusplus
-extern "C"{
-#endif
-
-#define SPH_SIZE_fugue224   224
-
-#define SPH_SIZE_fugue256   256
-
-#define SPH_SIZE_fugue384   384
-
-#define SPH_SIZE_fugue512   512
-
-typedef struct {
-#ifndef DOXYGEN_IGNORE
-       sph_u32 partial;
-       unsigned partial_len;
-       unsigned round_shift;
-       sph_u32 S[36];
-#if SPH_64
-       sph_u64 bit_count;
-#else
-       sph_u32 bit_count_high, bit_count_low;
-#endif
-#endif
-} sph_fugue_context;
-
-typedef sph_fugue_context sph_fugue224_context;
-
-typedef sph_fugue_context sph_fugue256_context;
-
-typedef sph_fugue_context sph_fugue384_context;
-
-typedef sph_fugue_context sph_fugue512_context;
-
-void sph_fugue224_init(void *cc);
-
-void sph_fugue224(void *cc, const void *data, size_t len);
-
-void sph_fugue224_close(void *cc, void *dst);
-
-void sph_fugue224_addbits_and_close(
-       void *cc, unsigned ub, unsigned n, void *dst);
-
-void sph_fugue256_init(void *cc);
-
-void sph_fugue256(void *cc, const void *data, size_t len);
-
-void sph_fugue256_close(void *cc, void *dst);
-
-void sph_fugue256_addbits_and_close(
-       void *cc, unsigned ub, unsigned n, void *dst);
-
-void sph_fugue384_init(void *cc);
-
-void sph_fugue384(void *cc, const void *data, size_t len);
-
-void sph_fugue384_close(void *cc, void *dst);
-
-void sph_fugue384_addbits_and_close(
-       void *cc, unsigned ub, unsigned n, void *dst);
-
-void sph_fugue512_init(void *cc);
-
-void sph_fugue512(void *cc, const void *data, size_t len);
-
-void sph_fugue512_close(void *cc, void *dst);
-
-void sph_fugue512_addbits_and_close(
-       void *cc, unsigned ub, unsigned n, void *dst);
-
-#ifdef __cplusplus
-}
-#endif 
-       
-#endif
This page took 0.032113 seconds and 4 git commands to generate.