NEWS 51 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100
  1. Version 2.2.0 - January 29, 2012
  2. NOTE: GPU Device order will change with this release with ATI GPUs as cgminer
  3. now can enumerate them according to their Bus ID which means the values should
  4. now correlate with their physical position on the motherboard.
  5. - Default to poclbm kernel on Tahiti (7970) since phatk does not work, even
  6. though performance is sub-standard so that at least it will mine successfully by
  7. defau
  8. - Retain cl program after every possible place we might build the program.
  9. - Update ADL SDK URL.
  10. - Fix potential overflow.
  11. - Map GPU devices to virtual devices in their true physical order based on
  12. BusNumber.
  13. - Change the warning that comes with failure to init cl on a device to be more
  14. generic and accurate.
  15. - Advertise longpoll support in X-Mining-Extensions
  16. - Detect dual GPU cards by iterating through all GPUs, finding ones without
  17. fanspeed and matching twins with fanspeed one bus ID apart.
  18. - Do not attempt to build the program that becomes the kernel twice. This could
  19. have been leading to failures on initialising cl.
  20. - Some opencl compilers have issues with no spaces after -D in the compiler
  21. options.
  22. - Allow intensity up to 14.
  23. - Use calloced stack memory for CompilerOptions to ensure sprintf writes to the
  24. beginning of the char.
  25. - Whitelist 79x0 cards to prefer no vectors as they perform better without.
  26. - Adjust fan speed gently while in the optimal range when temperature is
  27. drifting to minimise overshoot in either direction.
  28. - Detect dual GPU cards via the indirect information of - 1st card has a fan
  29. controller. 2nd card does not have a fan controller, cards share the same device
  30. name
  31. - Instead of using the BFI_INT patching hack on any device reporting
  32. cl_amd_media_ops, create a whitelist of devices that need it. This should enable
  33. GCN architec
  34. - Fixed API compiling issue on OS X
  35. - Add more explanation of JSON format and the 'save' command
  36. - Return an error if using ADL API commands when it's not available
  37. - Read off lpThermalControllerInfo from each ADL device.
  38. - Add ADL_Overdrive5_ThermalDevices_Enum interface.
  39. - Add API commands: config, switchpool, gpu settings, save
  40. - Implement socks4 proxy support.
  41. - Fix send() for JSON strings
  42. - Introduce a --net-delay option which guarantees at least 250ms between any
  43. networking requests to not overload slow routers.
  44. - Generalise locking init code.
  45. - Allow invalid values to be in the configuration file, just skipping over them
  46. provided the rest of the file is valid JSON. This will allow older configurat
  47. - Allow CPU mining explicitly enable only if other mining support is built in.
  48. - BitForce FPGA support
  49. - Configure out building and support of all CPU mining code unless
  50. --enable-cpumining is enabled.
  51. - Allow parsed values to be zero which will allow 0 values in the config file to
  52. work.
  53. - Advertise that we can make our own midstate, so the pool can skip generating
  54. it for us
  55. - Refactor the CPU scanhash_* functions to use a common API. Fixes bugs.
  56. - Don't consider a pool lagging if a request has only just been filed. This
  57. should decrease the false positives for "pool not providing work fast enough".
  58. - Invalidating work after longpoll made hash_pop return no work giving a false
  59. positive for dead pool. Rework hash_pop to retry while finds no staged work u
  60. - Remove TCP_NODELAY from curl options as many small packets may be contributing
  61. to network overload, when --net-delay is enabled.
  62. - Refactor miner_thread to be common code for any kind of device
  63. - Simplify submit_nonce loop and avoid potentially missing FOUND - 1 entry.
  64. Reported by Luke-Jr.
  65. - Micro-optimisation in sha256_sse2 code courtesy of Guido Ascioti
  66. guido.ascioti@gmail.com
  67. - Refactor to abstract device-specific code
  68. Version 2.1.2 - January 6, 2012
  69. - If api-description is specified, save it when writing the config file
  70. - Adjust utility width to be constant maximum as well.
  71. - Add percent signs to reject ratio outputs
  72. - Should the donation pool fail, don't make the fallover pool behave as though
  73. the primary pool is lagging.
  74. - Use an alternative pool should the donation getwork fail.
  75. Version 2.1.1 - January 1, 2012
  76. - Include API examples in distribution tarball.
  77. - Don't attempt to pthread_join when cancelling threads as they're already
  78. detached and doing so can lead to a segfault.
  79. - Give more generic message if slow pool at startup is the donation pool.
  80. - Continue to attempt restarting GPU threads if they're flagged dead at 1 min.
  81. intervals.
  82. - Don't attempt to restart sick flagged GPUs while they're still registering
  83. activity.
  84. - Make curl use fresh connections whenever there is any communication issue
  85. in case there are dead persistent connections preventing further comms from
  86. working.
  87. - Display pool in summary if only 1 pool.
  88. - Adjust column width of A/R/HW to be the maximum of any device and align them.
  89. Version 2.1.0 - December 27, 2011
  90. - Major infrastructure upgrade with RPC interface for controlling via sockets
  91. encoded with/without JSON courtesy of Andrew Smith. Added documentation for
  92. use of the API and sample code to use with it.
  93. - Updated linux-usb-cgminer document.
  94. - Rewrite of longpoll mechanism to choose the current pool wherever possible to
  95. use for the longpoll, or any pool that supports longpoll if the current one
  96. does not.
  97. - Display information about longpoll when the chosen server has changed.
  98. - Fix the bug where longpoll generated work may have been sent back to the
  99. wrong pool, causing rejects.
  100. - Fix a few race conditions on closing cgminer which caused some of the crashes
  101. on exit.
  102. - Only adjust gpu engine speed in autotune mode if the gpu is currently at the
  103. performance level of that being adjusted.
  104. - Various fixes for parsing/writing of configuration files.
  105. - Do not add blank lines for threads of unused CPUs.
  106. - Show which pool is unresponsive on startup.
  107. - Only show GPU management menu item if GPUs are in use.
  108. - Align most device columns in the curses display.
  109. Version 2.0.8 - November 11, 2011
  110. - Make longpoll do a mandatory flushing of all work even if the block hasn't
  111. changed, thus supporting longpoll initiated work change of any sort and merged
  112. mining.
  113. - Byteswap computed hash in hashtest so it can be correctly checked. This fixes
  114. the very rare possibility that a block solve on solo mining was missed.
  115. - Add x86_64 w64 mingw32 target
  116. - Allow a fixed speed difference between memory and GPU clock speed with
  117. --gpu-memdiff that will change memory speed when GPU speed is changed in
  118. autotune mode.
  119. - Don't load the default config if a config file is specified on the command
  120. line.
  121. - Don't build VIA on apple since -a auto bombs instead of gracefully ignoring
  122. VIA failing.
  123. - Build fix for dlopen/dlclose errors in glibc.
  124. Version 2.0.7 - October 17, 2011
  125. - Support work without midstate or hash1, which are deprecated in bitcoind 0.5+
  126. - Go to kernel build should we fail to clCreateProgramWithBinary instead of
  127. failing on that device. This should fix the windows problems with devices not
  128. initialising.
  129. - Support new configuration file format courtesy of Chris Savery which can write
  130. the config file from the menu and will load it on startup.
  131. - Write unix configuration to .cgminer/cgminer.conf by default and prompt to
  132. overwrite if given a filename from the menu that exists.
  133. Version 2.0.6 - October 9, 2011
  134. - Must initialise the donorpool mutex or it fails on windows.
  135. - Don't make donation work interfere with block change detection allowing
  136. donation to work regardless of the block chain we're mining on.
  137. - Expire shares as stale with a separate timeout from the scantime, defaulting
  138. to 120 seconds.
  139. - Retry pools after a delay of 15 seconds if none can be contacted on startup
  140. unless a key is pressed.
  141. - Don't try to build adl features without having adl.
  142. - Properly check shares against target difficulty - This will no longer show
  143. shares when solo mining at all unless they're considered to be a block solve.
  144. - Add altivec 4 way (cpu mining) support courtesy of Gilles Risch.
  145. - Try to use SSL if the server supports it.
  146. - Display the total solved blocks on exit (LOL if you're lucky).
  147. - Use ADL activity report to tell us if a sick GPU is still busy suggesting it
  148. is hard hung and do not attempt to restart it.
  149. Version 2.0.5 - September 27, 2011
  150. - Intensity can now be set to dynamic or static values per-device.
  151. - New donation feature --donation sends a proportion of shares to author's
  152. account of choice, but is disabled by default!
  153. - The hash being displayed and block detection has been fixed.
  154. - Devices not being mined on will not attempt to be ADL managed.
  155. - Intensity is now displayed per GPU device.
  156. - Make longpoll attempt to restart as often as opt_retries specifies.
  157. - We weren't rolling work as often as we could.
  158. - Correct some memory management issues.
  159. - Build fixes.
  160. - Don't mess with GPUs if we don't have them.
  161. Version 2.0.4 - September 23, 2011
  162. - Confused Longpoll messages should be finally fixed with cgminer knowing for
  163. sure who found the new block and possibly avoiding a rare crash.
  164. - Display now shows the actual hash and will say BLOCK! if a block is deemed
  165. solved.
  166. - Extra spaces, which would double space lines on small terminals, have been
  167. removed.
  168. - Fan speed change is now damped if it is already heading in the correct
  169. direction to minimise overshoot.
  170. - Building without opencl libraries is fixed.
  171. - GPUs are autoselected if there is only one when in the GPU management menu.
  172. - GPU menu is refreshed instead of returning to status after a GPU change.
  173. Version 2.0.3 - September 17, 2011
  174. - Various modes of failure to set fanspeeds and adl values have been addressed
  175. and auto-fan should work now on most hardware, and possibly other values
  176. which previously would not have worked.
  177. - Fixed a crash that can occur on switching pools due to longpoll thread races.
  178. - Use ATISTREAMSDKROOT if available at build time.
  179. - Fanspeed management is returned to the driver default on exit instead of
  180. whatever it was when cgminer was started.
  181. - Logging of events deemed WARNING or ERR now will display even during
  182. periods where menu input is being awaited on.
  183. Version 2.0.2 - September 11, 2011
  184. - Exit cleanly if we abort before various threads are set up or if they no
  185. longer exist.
  186. - Fix a rare crash in HASH_DEL due to using different mutexes to protect the
  187. data.
  188. - Flag devices that have never started and don't allow enabling of devices
  189. without restarting them.
  190. - Only force the adapter speed to high if we've flagged this device as being
  191. managed.
  192. - Flag any devices with autofan or autogpu as being managed.
  193. - Use a re-entrant value to store what fanspeed we're trying to set in case the
  194. card doesn't support small changes. Force it to a multiple of 10% if it
  195. fails on trying to speed up the fan.
  196. - Do not bother resetting values to old ones if changes to GPU parameters report
  197. failure, instead returning a failure code only if the return value from get()
  198. differs.
  199. - Remove redundant check.
  200. - Only display supported values from fanspeed on change settings.
  201. - Missing bracket from output.
  202. - Display fan percentage on devices that only support reporting percent and not
  203. RPM.
  204. - Properly substitute DLOPEN flags to build with ADL support when -ldl is needed
  205. and not when opencl is not found.
  206. Version 2.0.1 - September 9, 2011
  207. - Fix building on 32bit glibc with dlopen with -lpthread and -ldl
  208. - ByteReverse is not used and the bswap opcode breaks big endian builds. Remove
  209. it.
  210. - Ignore whether the display is active or not since only display enabled devices
  211. work this way, and we skip over repeat entries anwyay.
  212. - Only reset values on exiting if we've ever modified them.
  213. - Flag adl as active if any card is successfully activated.
  214. - Add a thermal cutoff option as well and set it to 95 degrees by default.
  215. - Change the fan speed by only 5% if it's over the target temperature but less
  216. than the hysteresis value to minimise overshoot down in temperature.
  217. - Add a --no-adl option to disable ADL monitoring and GPU settings.
  218. - Only show longpoll received delayed message at verbose level.
  219. - Allow temperatures greater than 100 degrees.
  220. - We should be passing a float for the remainder of the vddc values.
  221. - Implement accepting a range of engine speeds as well to allow a lower limit to
  222. be specified on the command line.
  223. - Allow per-device fan ranges to be set and use them in auto-fan mode.
  224. - Display which GPU has overheated in warning message.
  225. - Allow temperature targets to be set on a per-card basis on the command line.
  226. - Display fan range in autofan status.
  227. - Setting the hysteresis is unlikely to be useful on the fly and doesn't belong
  228. in the per-gpu submenu.
  229. - With many cards, the GPU summaries can be quite long so use a terse output
  230. line when showing them all.
  231. - Use a terser device status line to show fan RPM as well when available.
  232. - Define max gpudevices in one macro.
  233. - Allow adapterid 0 cards to enumerate as a device as they will be non-AMD
  234. cards, and enable ADL on any AMD card.
  235. - Do away with the increasingly confusing and irrelevant total queued and
  236. efficiency measures per device.
  237. - Only display values in the log if they're supported and standardise device log
  238. line printing.
  239. Version 2.0.0 - September 6, 2011
  240. Major feature upgrade - GPU monitoring, (over)clocking and fan control for ATI
  241. GPUs.
  242. New command line switches:
  243. --auto-fan- Automatically adjust all GPU fan speeds to maintain a target
  244. temperature
  245. --auto-gpu- Automatically adjust all GPU engine clock speeds to maintain
  246. a target temperature
  247. --gpu-engine <arg> Set the GPU engine (over)clock in Mhz - one value for all or
  248. separate by commas for per card.
  249. --gpu-fan <arg> Set the GPU fan percentage - one value for all or separate
  250. by commas for per card.
  251. --gpu-memclock <arg> Set the GPU memory (over)clock in Mhz - one value for all
  252. or separate by commas for per card.
  253. --gpu-powertune <arg> Set the GPU powertune percentage - one value for all or
  254. separate by commas for per card.
  255. --gpu-vddc <arg> Set the GPU voltage in Volts - one value for all or separate
  256. by commas for per card.
  257. --temp-hysteresis <arg> Set how much the temperature can fluctuate outside
  258. limits when automanaging speeds (default: 3)
  259. --temp-overheat <arg> Set the overheat temperature when automatically managing
  260. fan and GPU speeds (default: 85)
  261. --temp-target <arg> Set the target temperature when automatically managing fan
  262. and GPU speeds (default: 75)
  263. - Implement ATI ADL support for GPU parameter monitoring now and setting later
  264. (temp, fan, clocks etc.).
  265. - Check for the presence of the ADL header files in ADL_SDK.
  266. - Import adl_functions.h from amd overdrive ctrl.
  267. - Implement a setup function that tries to detect GPUs that support the ADL and
  268. link in the parameters into the gpus struct.
  269. - Put a summary of monitoring information from the GPU menu.
  270. - Implement changing memory speed and voltage on the fly.
  271. - Implement fan speed setting.
  272. - Minor corrections to set fan speed by percentage.
  273. - Make sure to read off the value in RPM only.
  274. - Implement auto fanspeed adjustment to maintain a target temperature and
  275. fanspeed below 85%, with an overheat check that will speed the fan up to 100%.
  276. - Add an --auto-fan command line option to allow all GPUs to have autofan
  277. enabled from startup.
  278. - Add a gpu autotune option which adjusts GPU speed to maintain a target
  279. temperature within the bounds of the default GPU speed and any overclocking set.
  280. - Avoid a dereference if the longpoll thread doesn't exist.
  281. - Clean up by setting performance profiles and fan settings to startup levels on
  282. exit.
  283. - Add a small amount of hysteresis before lowering clock speed.
  284. - Allow target, overheat and hysteresis temperatures to be set from command
  285. line.
  286. - Combine all stats collating into one function to avoid repeating function
  287. calls on each variable.
  288. - Add gpu statistics to debugging output via the watchdog thread.
  289. - Implement menus to change temperature limits.
  290. - Implement setting the GPU engine clock speed of all devices or each device as
  291. a comma separated value.
  292. - Implement setting the GPU memory clock speed of all devices or each device as
  293. a comma separated value.
  294. - Implement setting the GPU voltage of all devices or each device as a comma
  295. separated value.
  296. - Implement setting the GPU fan speed of all devices or each device as a comma
  297. separated value.
  298. - Add support for monitoring powertune setting.
  299. - Implement changing of powertune value from the GPU change settings menu.
  300. - Get the value of powertune in get_stats.
  301. - Implement setting the GPU powertune value of all devices or each device as a
  302. comma separated value.
  303. - Remove the safety checks in speed setting since confirmation is done first in
  304. the menu, then show the new current values after a short pause.
  305. - Force the speed to high on startup and restore it to whatever the setting was
  306. on exit.
  307. - Add temperature to standard output where possible and use more compact output.
  308. - Move and print at the same time in curses to avoid random trampling display
  309. errors.
  310. - Update the status window only from the watchdog thread, do not rewrite the top
  311. status messages and only refresh once all the status window is complete,
  312. clearing the window each time to avoid corruption.
  313. - Set a safe starting fan speed if we're automanaging the speeds.
  314. - Provide locking around all adl calls to prevent races.
  315. - Lower profile settings cannot be higher than higher profile ones so link any
  316. drops in settings.
  317. - Add new needed text files to distribution.
  318. - Queue requests ignoring the number of staged clones since they get discarded
  319. very easily leading to false positives for pool not providing work fast enough.
  320. - Include libgen.h in opt.c to fix win32 compilation warnings.
  321. - Fix compilation warning on win32.
  322. - Add the directory name from the arguments cgminer was called from as well to
  323. allow it running from a relative pathname.
  324. - Add a --disable-adl option to configure and only enable it if opencl support
  325. exists.
  326. - Retry before returning a failure to get upstream work as a failure to avoid
  327. false positives for pool dead.
  328. - Retry also if the decoding of work fails.
  329. - Use the presence of X-Roll-Ntime in the header as a bool for exists unless N
  330. is found in the response.
  331. Version 1.6.2 - September 2, 2011
  332. - Add --failover-only option to not leak work to backup pools when the primary
  333. pool is lagging.
  334. - Change recommendation to intensity 9 for dedicated miners.
  335. - Fix the bouncing short term value by allowing it to change dynamically when
  336. the latest value is very different from the rolling value, but damp the change
  337. when it gets close.
  338. - Use the curses_lock to protect the curses_active variable and test it under
  339. lock.
  340. - Go back to requesting work 2/3 of the way through the current scantime with
  341. CPU mining as reports of mining threads running out of work have occurred with
  342. only 5 seconds to retrieve work.
  343. - Add start and stop time scheduling for regular time of day running or once off
  344. start/stop options.
  345. - Print summary on quit modes.
  346. - Put some sanity checks on the times that can be input.
  347. - Give a verbose message when no active pools are found and pause before
  348. exiting.
  349. - Add verbose message when a GPU fails to initialise, and disable the correct
  350. GPU.
  351. - Cryptopp asm32 was not correctly updated to the incremental nonce code so the
  352. hash counter was bogus.
  353. - Get rid of poorly executed curl check.
  354. - If curl does not have sockopts, do not try to compile the
  355. json_rpc_call_sockopt_cb function, making it possible to build against older
  356. curl libraries.
  357. - Most people expect /usr/local when an unspecified prefix is used so change to
  358. that.
  359. - Rename localgen occasions to getwork fail occasions since localgen is
  360. unrelated now.
  361. Version 1.6.1 - August 29, 2011
  362. - Copy cgminer path, not cat it.
  363. - Switching between redrawing windows does not fix the crash with old
  364. libncurses, so redraw both windows, but only when the window size hasn't
  365. changed.
  366. - Reinstate minimum 1 extra in queue to make it extremely unlikely to ever have
  367. 0 staged work items and any idle time.
  368. - Return -1 if no input is detected from the menu to prevent it being
  369. interpreted as a 0.
  370. - Make pthread, libcurl and libcurses library checks mandatory or fail.
  371. - Add a --disable-opencl configure option to make it possible to override
  372. detection of opencl and build without GPU mining support.
  373. - Confusion over the variable name for number of devices was passing a bogus
  374. value which likely was causing the zero sized binary issue.
  375. - cgminer no longer supports default url user and pass so remove them.
  376. - Don't show value of intensity since it's dynamic by default.
  377. - Add options to explicitly enable CPU mining or disable GPU mining.
  378. - Convert the opt queue into a minimum number of work items to have queued
  379. instead of an extra number to decrease risk of getting idle devices without
  380. increasing risk of higher rejects.
  381. - Statify tv_sort.
  382. - Check for SSE2 before trying to build 32 bit SSE2 assembly version. Prevents
  383. build failure when yasm is installed but -msse2 is not specified.
  384. - Add some defines to configure.ac to enable exporting of values and packaging,
  385. and clean up output.
  386. - Give convenient summary at end of ./configure.
  387. - Display version information and add --version command line option, and make
  388. sure we flush stdout.
  389. - Enable curses after the mining threads are set up so that failure messages
  390. won't be lost in the curses interface.
  391. - Disable curses after inputting a pool if we requested no curses interface.
  392. - Add an option to break out after successfully mining a number of accepted
  393. shares.
  394. - Exit with a failed return code if we did not reach opt_shares.
  395. - The cpu mining work data can get modified before we copy it if we submit it
  396. async, and the sync submission is not truly sync anyway, so just submit it sync.
  397. Version 1.6.0 - August 26, 2011
  398. - Make restarting of GPUs optional for systems that hang on any attempt to
  399. restart them. Fix DEAD status by comparing it to last live time rather than
  400. last attempted restart time since that happens every minute.
  401. - Move staged threads to hashes so we can sort them by time.
  402. - Create a hash list of all the blocks created and search them to detect when a
  403. new block has definitely appeared, using that information to detect stale work
  404. and discard it.
  405. - Update configure.ac for newer autoconf tools.
  406. - Use the new hashes directly for counts instead of the fragile counters
  407. currently in use.
  408. - Update to latest sse2 code from cpuminer-ng.
  409. - Allow LP to reset block detect and block detect lp flags to know who really
  410. came first.
  411. - Get start times just before mining begins to not have very slow rise in
  412. average.
  413. - Add message about needing one server.
  414. - We can queue all the necessary work without hitting frequent stales now with
  415. the time and string stale protection active all the time. This prevents a
  416. pool being falsely labelled as not providing work fast enough.
  417. - Include uthash.h in distro.
  418. - Implement SSE2 32 bit assembly algorithm as well.
  419. - Fail gracefully if unable to open the opencl files.
  420. - Make cgminer look in the install directory for the .cl files making make
  421. install work correctly.
  422. - Allow a custom kernel path to be entered on the command line.
  423. - Bump threshhold for lag up to maximum queued but no staged work.
  424. - Remove fragile source patching for bitalign, vectors et. al and simply pass it
  425. with the compiler options.
  426. - Actually check the value returned for the x-roll-ntime extension to make sure
  427. it isn't saying N.
  428. - Prevent segfault on exit for when accessory threads don't exist.
  429. - Disable curl debugging with opt protocol since it spews to stderr.
  430. Version 1.5.8 - August 23, 2011
  431. - Minimise how much more work can be given in cpu mining threads each interval.
  432. - Make the fail-pause progressively longer each time it fails until the network
  433. recovers.
  434. - Only display the lagging message if we've requested the work earlier.
  435. - Clean up the pool switching to not be dependent on whether the work can roll
  436. or not by setting a lagging flag and then the idle flag.
  437. - Only use one thread to determine if a GPU is sick or well, and make sure to
  438. reset the sick restart attempt time.
  439. - The worksize was unintentionally changed back to 4k by mistake, this caused a
  440. slowdown.
  441. Version 1.5.7 - August 22, 2011
  442. - Fix a crash with --algo auto
  443. - Test at appropriate target difficulty now.
  444. - Add per-device statics log output with --per-device-stats
  445. - Fix breakage that occurs when 1 or 4 vectors are chosen on new phatk.
  446. - Make rolltime report debug level only now since we check it every work
  447. item.
  448. - Add the ability to enable/disable per-device stats on the fly and match
  449. logging on/off.
  450. - Explicitly tell the compiler to retain the program to minimise the chance of
  451. the zero sized binary errors.
  452. - Add one more instruction to avoid one branch point in the common path in the
  453. cl return code. Although this adds more ALUs overall and more branch points, the
  454. common path code has the same number of ALUs and one less jmp, jmps being more
  455. expensive.
  456. - Explicitly link in ws2_32 on the windows build and update README file on how
  457. to compile successfully on windows.
  458. - Release cl resources should the gpu mining thread abort.
  459. - Attempt to restart a GPU once every minute while it's sick.
  460. - Don't kill off the reinit thread if it fails to init a GPU but returns safely.
  461. - Only declare a GPU dead if there's been no sign of activity from the reinit
  462. thread for 10 mins.
  463. - Never automatically disable any pools but just specify them as idle if they're
  464. unresponsive at startup.
  465. - Use any longpoll available, and don't disable it if switching to a server that
  466. doesn't have it. This allows you to mine solo, yet use the longpoll from a pool
  467. even if the pool is the backup server.
  468. - Display which longpoll failed and don't free the ram for lp_url since it
  469. belongs to the pool hdr path.
  470. - Make the tcp setsockopts unique to linux in the hope it allows freebsd et. al
  471. to compile.
  472. Version 1.5.6 - August 17, 2011
  473. - New phatk and poclbm kernels. Updated phatk to be in sync with latest 2.2
  474. courtesy of phateus. Custom modified to work best with cgminer.
  475. - Updated output buffer code to use a smaller buffer with the kernels.
  476. - Clean up the longpoll management to ensure the right paths go to the right
  477. pool and display whether we're connected to LP or not in the status line.
  478. Version 1.5.5 - August 16, 2011
  479. - Rework entirely the GPU restart code. Strike a balance between code that
  480. re-initialises the GPU entirely so that soft hangs in the code are properly
  481. managed, but if a GPU is completely hung, the thread restart code fails
  482. gracefully, so that it does not take out any other code or devices. This will
  483. allow cgminer to keep restarting GPUs that can be restarted, but continue
  484. mining even if one or more GPUs hangs which would normally require a reboot.
  485. - Add --submit-stale option which submits all shares, regardless of whether they
  486. would normally be considered stale.
  487. - Keep options in alphabetical order.
  488. - Probe for slightly longer for when network conditions are lagging.
  489. - Only display the CPU algo when we're CPU mining.
  490. - As we have keepalives now, blaming network flakiness on timeouts appears to
  491. have been wrong. Set a timeout for longpoll to 1 hour, and most other
  492. network connectivity to 1 minute.
  493. - Simplify output code and remove HW errors from CPU stats.
  494. - Simplify code and tidy output.
  495. - Only show cpu algo in summary if cpu mining.
  496. - Log summary at the end as per any other output.
  497. - Flush output.
  498. - Add a linux-usb-cgminer guide courtesy of Kano.
  499. Version 1.5.4 - August 14, 2011
  500. - Add new option: --monitor <cmd> Option lets user specify a command <cmd> that
  501. will get forked by cgminer on startup. cgminer's stderr output subsequently gets
  502. piped directly to this command.
  503. - Allocate work from one function to be able to initialise variables added
  504. later.
  505. - Add missing fflush(stdout) for --ndevs and conclusion summary.
  506. - Preinitialise the devices only once on startup.
  507. - Move the non cl_ variables into the cgpu info struct to allow creating a new
  508. cl state on reinit, preserving known GPU variables.
  509. - Create a new context from scratch in initCQ in case something was corrupted to
  510. maximise our chance of succesfully creating a new worker thread. Hopefully this
  511. makes thread restart on GPU failure more reliable, without hanging everything
  512. in the case of a completely wedged GPU.
  513. - Display last initialised time in gpu management info, to know if a GPU has
  514. been re-initialised.
  515. - When pinging a sick cpu, flush finish and then ping it in a separate thread in
  516. the hope it recovers without needing a restart, but without blocking code
  517. elsewhere.
  518. - Only consider a pool lagging if we actually need the work and we have none
  519. staged despite queue requests stacking up. This decreases significantly the
  520. amount of work that leaks to the backup pools.
  521. - The can_roll function fails inappropriately in stale_work.
  522. - Only put the message that a pool is down if not pinging it every minute. This
  523. prevents cgminer from saying pool down at 1 minute intervals unless in debug
  524. mode.
  525. - Free all work in one place allowing us to perform actions on it in the future.
  526. - Remove the extra shift in the output code which was of dubious benefit. In
  527. fact in cgminer's implementation, removing this caused a miniscule speedup.
  528. - Test each work item to see if it can be rolled instead of per-pool and roll
  529. whenever possible, adhering to the 60 second timeout. This makes the period
  530. after a longpoll have smaller dips in throughput, as well as requiring less
  531. getworks overall thus increasing efficiency.
  532. - Stick to rolling only work from the current pool unless we're in load balance
  533. mode or lagging to avoid aggressive rolling imitating load balancing.
  534. - If a work item has had any mining done on it, don't consider it discarded
  535. work.
  536. Version 1.5.3 - July 30, 2011
  537. - Significant work went into attempting to make the thread restart code robust
  538. to identify sick threads, tag them SICK after 1 minute, then DEAD after 5
  539. minutes of inactivity and try to restart them. Instead of re-initialising the
  540. GPU completely, only a new cl context is created to avoid hanging the rest of
  541. the GPUs should the dead GPU be hung irrevocably.
  542. - Use correct application name in syslog.
  543. - Get rid of extra line feeds.
  544. - Use pkg-config to check for libcurl version
  545. - Implement per-thread getwork count with proper accounting to not over-account
  546. queued items when local work replaces it.
  547. - Create a command queue from the program created from source which allows us
  548. to flush the command queue in the hope it will not generate a zero sized binary
  549. any more.
  550. - Be more willing to get work from the backup pools if the work is simply being
  551. queued faster than it is being retrieved.
  552. Version 1.5.2 - July 28, 2011
  553. - Restarting a hung GPU can hang the rest of the GPUs so just declare it dead
  554. and provide the information in the status.
  555. - The work length in the miner thread gets smaller but doesn't get bigger if
  556. it's under 1 second. This could end up leading to CPU under-utilisation and
  557. lower and lower hash rates. Fix it by increasing work length if it drops
  558. under 1 second.
  559. - Make the "quiet" mode still update the status and display errors, and add a
  560. new --real-quiet option which disables all output and can be set once while
  561. running.
  562. - Update utility and efficiency figures when displaying them.
  563. - Some Intel HD graphics support the opencl commands but return errors since
  564. they don't support opencl. Don't fail with them, just provide a warning and
  565. disable GPU mining.
  566. - Add http:// if it's not explicitly set for URL entries.
  567. - Log to the output file at any time with warnings and errors, instead of just
  568. when verbose mode is on.
  569. - Display the correct current hash as per blockexplorer, truncated to 16
  570. characters, with just the time.
  571. Version 1.5.1 - July 27, 2011
  572. - Two redraws in a row cause a crash in old libncurses so just do one redraw
  573. using the main window.
  574. - Don't adjust hash_div only up for GPUs. Disable hash_div adjustment for GPUs.
  575. - Only free the thread structures if the thread still exists.
  576. - Update both windows separately, but not at the same time to prevent the double
  577. refresh crash that old libncurses has. Do the window resize check only when
  578. about to redraw the log window to minimise ncurses cpu usage.
  579. - Abstract out the decay time function and use it to make hash_div a rolling
  580. average so it doesn't change too abruptly and divide work in chunks large enough
  581. to guarantee they won't overlap.
  582. - Sanity check to prove locking.
  583. - Don't take more than one lock at a time.
  584. - Make threads report out when they're queueing a request and report if they've
  585. failed.
  586. - Make cpu mining work submission asynchronous as well.
  587. - Properly detect stale work based on time from staging and discard instead of
  588. handing on, but be more lax about how long work can be divided for up to the
  589. scantime.
  590. - Do away with queueing work separately at the start and let each thread grab
  591. its own work as soon as it's ready.
  592. - Don't put an extra work item in the queue as each new device thread will do so
  593. itself.
  594. - Make sure to decrease queued count if we discard the work.
  595. - Attribute split work as local work generation.
  596. - If work has been cloned it is already at the head of the list and when being
  597. reinserted into the queue it should be placed back at the head of the list.
  598. - Dividing work is like the work is never removed at all so treat it as such.
  599. However the queued bool needs to be reset to ensure we *can* request more work
  600. even if we didn't initially.
  601. - Make the display options clearer.
  602. - Add debugging output to tq_push calls.
  603. - Add debugging output to all tq_pop calls.
  604. Version 1.5.0 - July 26, 2011
  605. - Increase efficiency of slow mining threads such as CPU miners dramatically. Do
  606. this by detecting which threads cannot complete searching a work item within the
  607. scantime and then divide up a work item into multiple smaller work items.
  608. Detect the age of the work items and if they've been cloned before to prevent
  609. doing the same work over. If the work is too old to be divided, then see if it
  610. can be time rolled and do that to generate work. This dramatically decreases the
  611. number of queued work items from a pool leading to higher overall efficiency
  612. (but the same hashrate and share submission rate).
  613. - Don't request work too early for CPUs as CPUs will scan for the full
  614. opt_scantime anyway.
  615. - Simplify gpu management enable/disable/restart code.
  616. - Implement much more accurate rolling statistics per thread and per gpu and
  617. improve accuracy of rolling displayed values.
  618. - Make the rolling log-second average more accurate.
  619. - Add a menu to manage GPUs on the fly allowing you to enable/disable GPUs or
  620. try restarting them.
  621. - Keep track of which GPUs are alive versus enabled.
  622. - Start threads for devices that are even disabled, but don't allow them to
  623. start working.
  624. - The last pool is when we are low in total_pools, not active_pools.
  625. - Make the thread restart do a pthread_join after disabling the device, only
  626. re-enabling it if we succeed in restarting the thread. Do this from a separate
  627. thread so as to not block any other code.This will allow cgminer to continue
  628. even if one GPU hangs.
  629. - Try to do every curses manipulation under the curses lock.
  630. - Only use the sockoptfunction if the version of curl is recent enough.
  631. Version 1.4.1 - July 24, 2011
  632. - Do away with GET for dealing with longpoll forever. POST is the one that works
  633. everywhere, not the other way around.
  634. - Detect when the primary pool is lagging and start queueing requests on backup
  635. pools if possible before needing to roll work.
  636. - Load balancing puts more into the current pool if there are disabled pools.
  637. Fix.
  638. - Disable a GPU device should the thread fail to init.
  639. - Out of order command queue may fail on osx. Try without if it fails.
  640. - Fix possible dereference on blank inputs during input_pool.
  641. - Defines missing would segfault on --help when no sse mining is built in.
  642. - Revert "Free up resources/stale compilers." - didn't help.
  643. - Only try to print the status of active devices or it would crash.
  644. - Some hardware might benefit from the less OPS so there's no harm in leaving
  645. kernel changes that do that apart from readability of the code.
  646. Version 1.4.0 - July 23, 2011
  647. - Feature upgrade: Add keyboard input during runtime to allow modification of
  648. and viewing of numerous settings such as adding/removing pools, changing
  649. multipool management strategy, switching pools, changing intensiy, verbosity,
  650. etc. with a simple keypress menu system.
  651. - Free up resources/stale compilers.
  652. - Kernels are safely flushed in a way that allows out of order execution to
  653. work.
  654. - Sometimes the cl compiler generates zero sized binaries and only a reboot
  655. seems to fix it.
  656. - Don't try to stop/cancel threads that don't exist.
  657. - Only set option to show devices and exit if built with opencl support.
  658. - Enable curses earlier and exit with message in main for messages to not be
  659. lost in curses windows.
  660. - Make it possible to enter server credentials with curses input if none are
  661. specified on the command line.
  662. - Abstract out a curses input function and separate input pool function to allow
  663. for live adding of pools later.
  664. - Remove the nil arguments check to allow starting without parameters.
  665. - Disable/enable echo & cbreak modes.
  666. - Add a thread that takes keyboard input and allow for quit, silent, debug,
  667. verbose, normal, rpc protocol debugging and clear screen options.
  668. - Add pool option to input and display current pool status, pending code to
  669. allow live changes.
  670. - Add a bool for explicit enabling/disabling of pools.
  671. - Make input pool capable of bringing up pools while running.
  672. - Do one last check of the work before submitting it.
  673. - Implement the ability to live add, enable, disable, and switch to pools.
  674. - Only internally test for block changes when the work matches the current pool
  675. to prevent interleaved block change timing on multipools.
  676. - Display current pool management strategy to enable changing it on the fly.
  677. - The longpoll blanking of the current_block data may not be happening before
  678. the work is converted and appears to be a detected block change. Blank the
  679. current block be
  680. - Make --no-longpoll work again.
  681. - Abstract out active pools count.
  682. - Allow the pool strategy to be modified on the fly.
  683. - Display pool information on the fly as well.
  684. - Add a menu and separate out display options.
  685. - Clean up the messy way the staging thread communicates with the longpoll
  686. thread to determine who found the block first.
  687. - Make the input windows update immediately instead of needing a refresh.
  688. - Allow log interval to be set in the menu.
  689. - Allow scan settings to be modified at runtime.
  690. - Abstract out the longpoll start and explicitly restart it on pool change.
  691. - Make it possible to enable/disable longpoll.
  692. - Set priority correctly on multipools. Display priority and alive/dead
  693. information in display_pools.
  694. - Implement pool removal.
  695. - Limit rolltime work generation to 10 iterations only.
  696. - Decrease testing log to info level.
  697. - Extra refresh not required.
  698. - With huge variation in GPU performance, allow intensity to go from -10 to +10.
  699. - Tell getwork how much of a work item we're likely to complete for future
  700. splitting up of work.
  701. - Remove the mandatory work requirement at startup by testing for invalid work
  702. being passed which allows for work to be queued immediately. This also
  703. removes the requirem
  704. - Make sure intensity is carried over to thread count and is at least the
  705. minimum necessary to work.
  706. - Unlocking error on retry. Locking unnecessary anyway so remove it.
  707. - Clear log window from consistent place. No need for locking since logging is
  708. disabled during input.
  709. - Cannot print the status of threads that don't exist so just queue enough work
  710. for the number of mining threads to prevent crash with -Q N.
  711. - Update phatk kernel to one with new parameters for slightly less overhead
  712. again. Make the queue kernel parameters call a function pointer to select
  713. phatk or poclbm.
  714. - Make it possible to select the choice of kernel on the command line.
  715. - Simplify the output part of the kernel. There's no demonstrable advantage from
  716. more complexity.
  717. - Merge pull request #18 from ycros/cgminer
  718. - No need to make leaveok changes win32 only.
  719. - Build support in for all SSE if possible and only set the default according to
  720. machine capabilities.
  721. - Win32 threading and longpoll keepalive fixes.
  722. - Win32: Fix for mangled output on the terminal on exit.
  723. Version 1.3.1 - July 20, 2011
  724. - Feature upgrade; Multiple strategies for failover. Choose from default which
  725. now falls back to a priority order from 1st to last, round robin which only
  726. changes pools when one is idle, rotate which changes pools at user-defined
  727. intervals, and load-balance which spreads the work evenly amongst all pools.
  728. - Implement pool rotation strategy.
  729. - Implement load balancing algorithm by rotating requests to each pool.
  730. - Timeout on failed discarding of staged requests.
  731. - Implement proper flagging of idle pools, test them with the watchdog thread,
  732. and failover correctly.
  733. - Move pool active test to own function.
  734. - Allow multiple strategies to be set for multipool management.
  735. - Track pool number.
  736. - Don't waste the work items queued on testing the pools at startup.
  737. - Reinstate the mining thread watchdog restart.
  738. - Add a getpoll bool into the thread information and don't restart threads stuck
  739. waiting on work.
  740. - Rename the idlenet bool for the pool for later use.
  741. - Allow the user/pass userpass urls to be input in any order.
  742. - When json rpc errors occur they occur in spits and starts, so trying to limit
  743. them with the comms error bool doesn't stop a flood of them appearing.
  744. - Reset the queued count to allow more work to be queued for the new pool on
  745. pool switch.
  746. Version 1.3.0 - July 19, 2011
  747. - Massive infrastructure update to support pool failover.
  748. - Accept multiple parameters for url, user and pass and set up structures of
  749. pool data accordingly.
  750. - Probe each pool for what it supports.
  751. - Implement per pool feature support according to rolltime support as
  752. advertised by server.
  753. - Do switching automatically based on a 300 second timeout of locally generated
  754. work or 60 seconds of no response from a server that doesn't support rolltime.
  755. - Implement longpoll server switching.
  756. - Keep per-pool data and display accordingly.
  757. - Make sure cgminer knows how long the pool has actually been out for before
  758. deeming it a prolonged outage.
  759. - Fix bug with ever increasing staged work in 1.2.8 that eventually caused
  760. infinite rejects.
  761. - Make warning about empty http requests not show by default since many
  762. servers do this regularly.
  763. Version 1.2.8 - July 18, 2011
  764. - More OSX build fixes.
  765. - Add an sse4 algorithm to CPU mining.
  766. - Fix CPU mining with other algorithms not working.
  767. - Rename the poclbm file to ensure a new binary is built since.
  768. - We now are guaranteed to have one fresh work item after a block change and we
  769. should only discard staged requests.
  770. - Don't waste the work we retrieve from a longpoll.
  771. - Provide a control lock around global bools to avoid racing on them.
  772. - Iterating over 1026 nonces when confirming data from the GPU is old code
  773. and unnecessary and can lead to repeats/stales.
  774. - The poclbm kernel needs to be updated to work with the change to 4k sized
  775. output buffers.
  776. - longpoll seems to work either way with post or get but some servers prefer
  777. get so change to httpget.
  778. Version 1.2.7 - July 16, 2011
  779. - Show last 8 characters of share submitted in log.
  780. - Display URL connected to and user logged in as in status.
  781. - Display current block and when it was started in the status line.
  782. - Only pthread_join the mining threads if they exist as determined by
  783. pthread_cancel and don't fail on pthread_cancel.
  784. - Create a unique work queue for all getworks instead of binding it to thread 0
  785. to avoid any conflict over thread 0's queue.
  786. - Clean up the code to make it clear it's watchdog thread being messaged to
  787. restart the threads.
  788. - Check the current block description hasn't been blanked pending the real
  789. new current block data.
  790. - Re-enable signal handlers once the signal has been received to make it
  791. possible to kill cgminer if it fails to shut down.
  792. - Disable restarting of CPU mining threads pending further investigation.
  793. - Update longpoll messages.
  794. - Add new block data to status line.
  795. - Fix opencl tests for osx.
  796. - Only do local generation of work if the work item is not stale itself.
  797. - Check for stale work within the mining threads and grab new work if
  798. positive.
  799. - Test for idle network conditions and prevent threads from being restarted
  800. by the watchdog thread under those circumstances.
  801. - Make sure that local work generation does not continue indefinitely by
  802. stopping it after 10 minutes.
  803. - Tweak the kernel to have a shorter path using a 4k buffer and a mask on the
  804. nonce value instead of a compare and loop for a shorter code path.
  805. - Allow queue of zero and make that default again now that we can track how
  806. work is being queued versus staged. This can decrease reject rates.
  807. - Queue precisely the number of mining threads as longpoll_staged after a
  808. new block to not generate local work.
  809. Version 1.2.6 - July 15, 2011
  810. - Put a current system status line beneath the total work status line
  811. - Fix a counting error that would prevent cgminer from correctly detecting
  812. situations where getwork was failing - this would cause stalls sometimes
  813. unrecoverably.
  814. - Limit the maximum number of requests that can be put into the queue which
  815. otherwise could get arbitrarily long during a network outage.
  816. - Only count getworks that are real queue requests.
  817. Version 1.2.5 - July 15, 2011
  818. - Conflicting -n options corrected
  819. - Setting an intensity with -I disables dynamic intensity setting
  820. - Removed option to manually disable dynamic intensity
  821. - Improve display output
  822. - Implement signal handler and attempt to clean up properly on exit
  823. - Only restart threads that are not stuck waiting on mandatory getworks
  824. - Compatibility changes courtesy of Ycros to build on mingw32 and osx
  825. - Explicitly grab first work item to prevent false positive hardware errors
  826. due to working on uninitialised work structs
  827. - Add option for non curses --text-only output
  828. - Ensure we connect at least once successfully before continuing to retry to
  829. connect in case url/login parameters were wrong
  830. - Print an executive summary when cgminer is terminated
  831. - Make sure to refresh the status window
  832. Versions -> 1.2.4
  833. - Con Kolivas - July 2011. New maintainership of code under cgminer name.
  834. - Massive rewrite to incorporate GPU mining.
  835. - Incorporate original oclminer c code.
  836. - Rewrite gpu mining code to efficient work loops.
  837. - Implement per-card detection and settings.
  838. - Implement vector code.
  839. - Implement bfi int patching.
  840. - Import poclbm and phatk ocl kernels and use according to hardware type.
  841. - Implement customised optimised versions of opencl kernels.
  842. - Implement binary kernel generation and loading.
  843. - Implement preemptive asynchronous threaded work gathering and pushing.
  844. - Implement variable length extra work queues.
  845. - Optimise workloads to be efficient miners instead of getting lots of extra
  846. work.
  847. - Implement total hash throughput counters, per-card accepted, rejected and
  848. hw error count.
  849. - Staging and watchdog threads to prevent fallover.
  850. - Stale and reject share guarding.
  851. - Autodetection of new blocks without longpoll.
  852. - Dynamic setting of intensity to maintain desktop interactivity.
  853. - Curses interface with generous statistics and information.
  854. - Local generation of work (xroll ntime) when detecting poor network
  855. connectivity.
  856. Version 1.0.2
  857. - Linux x86_64 optimisations - Con Kolivas
  858. - Optimise for x86_64 by default by using sse2_64 algo
  859. - Detects CPUs and sets number of threads accordingly
  860. - Uses CPU affinity for each thread where appropriate
  861. - Sets scheduling policy to lowest possible
  862. - Minor performance tweaks
  863. Version 1.0.1 - May 14, 2011
  864. - OSX support
  865. Version 1.0 - May 9, 2011
  866. - jansson 2.0 compatibility
  867. - correct off-by-one in date (month) display output
  868. - fix platform detection
  869. - improve yasm configure bits
  870. - support full URL, in X-Long-Polling header
  871. Version 0.8.1 - March 22, 2011
  872. - Make --user, --pass actually work
  873. - Add User-Agent HTTP header to requests, so that server operators may
  874. more easily identify the miner client.
  875. - Fix minor bug in example JSON config file
  876. Version 0.8 - March 21, 2011
  877. - Support long polling: http://deepbit.net/longpolling.php
  878. - Adjust max workload based on scantime (default 5 seconds,
  879. or 60 seconds for longpoll)
  880. - Standardize program output, and support syslog on Unix platforms
  881. - Suport --user/--pass options (and "user" and "pass" in config file),
  882. as an alternative to the current --userpass
  883. Version 0.7.2 - March 14, 2011
  884. - Add port of ufasoft's sse2 assembly implementation (Linux only)
  885. This is a substantial speed improvement on Intel CPUs.
  886. - Move all JSON-RPC I/O to separate thread. This reduces the
  887. number of HTTP connections from one-per-thread to one, reducing resource
  888. usage on upstream bitcoind / pool server.
  889. Version 0.7.1 - March 2, 2011
  890. - Add support for JSON-format configuration file. See example
  891. file example-cfg.json. Any long argument on the command line
  892. may be stored in the config file.
  893. - Timestamp each solution found
  894. - Improve sha256_4way performance. NOTE: This optimization makes
  895. the 'hash' debug-print output for sha256_way incorrect.
  896. - Use __builtin_expect() intrinsic as compiler micro-optimization
  897. - Build on Intel compiler
  898. - HTTP library now follows HTTP redirects
  899. Version 0.7 - February 12, 2011
  900. - Re-use CURL object, thereby reuseing DNS cache and HTTP connections
  901. - Use bswap_32, if compiler intrinsic is not available
  902. - Disable full target validation (as opposed to simply H==0) for now
  903. Version 0.6.1 - February 4, 2011
  904. - Fully validate "hash < target", rather than simply stopping our scan
  905. if the high 32 bits are 00000000.
  906. - Add --retry-pause, to set length of pause time between failure retries
  907. - Display proof-of-work hash and target, if -D (debug mode) enabled
  908. - Fix max-nonce auto-adjustment to actually work. This means if your
  909. scan takes longer than 5 seconds (--scantime), the miner will slowly
  910. reduce the number of hashes you work on, before fetching a new work unit.
  911. Version 0.6 - January 29, 2011
  912. - Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
  913. - BeeCee1's sha256 4way optimizations
  914. - lfm's byte swap optimization (improves via, cryptopp)
  915. - Fix non-working short options -q, -r
  916. Version 0.5 - December 28, 2010
  917. - Exit program, when all threads have exited
  918. - Improve JSON-RPC failure diagnostics and resilience
  919. - Add --quiet option, to disable hashmeter output.
  920. Version 0.3.3 - December 27, 2010
  921. - Critical fix for sha256_cryptopp 'cryptopp_asm' algo
  922. Version 0.3.2 - December 23, 2010
  923. - Critical fix for sha256_via
  924. Version 0.3.1 - December 19, 2010
  925. - Critical fix for sha256_via
  926. - Retry JSON-RPC failures (see --retry, under "minerd --help" output)
  927. Version 0.3 - December 18, 2010
  928. - Add crypto++ 32bit assembly implementation
  929. - show version upon 'minerd --help'
  930. - work around gcc 4.5.x bug that killed 4way performance
  931. Version 0.2.2 - December 6, 2010
  932. - VIA padlock implementation works now
  933. - Minor build and runtime fixes
  934. Version 0.2.1 - November 29, 2010
  935. - avoid buffer overflow when submitting solutions
  936. - add Crypto++ sha256 implementation (C only, ASM elided for now)
  937. - minor internal optimizations and cleanups
  938. Version 0.2 - November 27, 2010
  939. - Add script for building a Windows installer
  940. - improve hash performance (hashmeter) statistics
  941. - add tcatm 4way sha256 implementation
  942. - Add experimental VIA Padlock sha256 implementation
  943. Version 0.1.2 - November 26, 2010
  944. - many small cleanups and micro-optimizations
  945. - build win32 exe using mingw
  946. - RPC URL, username/password become command line arguments
  947. - remove unused OpenSSL dependency
  948. Version 0.1.1 - November 24, 2010
  949. - Do not build sha256_generic module separately from cpuminer.
  950. Version 0.1 - November 24, 2010
  951. - Initial release.