mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-10 14:58:01 +00:00
Bump version to 2.0.6 and update docs.
This commit is contained in:
parent
f9308f8fca
commit
a41db9d436
19
NEWS
19
NEWS
@ -1,3 +1,22 @@
|
||||
Version 2.0.6 - October 9, 2011
|
||||
|
||||
- Must initialise the donorpool mutex or it fails on windows.
|
||||
- Don't make donation work interfere with block change detection allowing
|
||||
donation to work regardless of the block chain we're mining on.
|
||||
- Expire shares as stale with a separate timeout from the scantime, defaulting
|
||||
to 120 seconds.
|
||||
- Retry pools after a delay of 15 seconds if none can be contacted on startup
|
||||
unless a key is pressed.
|
||||
- Don't try to build adl features without having adl.
|
||||
- Properly check shares against target difficulty - This will no longer show
|
||||
shares when solo mining at all unless they're considered to be a block solve.
|
||||
- Add altivec 4 way (cpu mining) support courtesy of Gilles Risch.
|
||||
- Try to use SSL if the server supports it.
|
||||
- Display the total solved blocks on exit (LOL if you're lucky).
|
||||
- Use ADL activity report to tell us if a sick GPU is still busy suggesting it
|
||||
is hard hung and do not attempt to restart it.
|
||||
|
||||
|
||||
Version 2.0.5 - September 27, 2011
|
||||
|
||||
- Intensity can now be set to dynamic or static values per-device.
|
||||
|
3
README
3
README
@ -1,6 +1,7 @@
|
||||
|
||||
This is a multi-threaded multi-pool CPU and GPU miner with ATI GPU monitoring,
|
||||
(over)clocking and fanspeed support for bitcoin and derivative coins.
|
||||
(over)clocking and fanspeed support for bitcoin and derivative coins. Do not
|
||||
use on multiple block chains at the same time!
|
||||
|
||||
This code is provided entirely free of charge by the programmer in his spare
|
||||
time so donations would be greatly appreciated. Please consider using the
|
||||
|
@ -2,7 +2,7 @@
|
||||
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
|
||||
m4_define([v_maj], [2])
|
||||
m4_define([v_min], [0])
|
||||
m4_define([v_mic], [5])
|
||||
m4_define([v_mic], [6])
|
||||
##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##
|
||||
m4_define([v_ver], [v_maj.v_min.v_mic])
|
||||
m4_define([lt_rev], m4_eval(v_maj + v_min))
|
||||
|
Loading…
Reference in New Issue
Block a user