NEWS 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606
  1. Version 1.5.7 - August 22, 2011
  2. - Fix a crash with --algo auto
  3. - Test at appropriate target difficulty now.
  4. - Add per-device statics log output with --per-device-stats
  5. - Fix breakage that occurs when 1 or 4 vectors are chosen on new phatk.
  6. - Make rolltime report debug level only now since we check it every work
  7. item.
  8. - Add the ability to enable/disable per-device stats on the fly and match
  9. logging on/off.
  10. - Explicitly tell the compiler to retain the program to minimise the chance of
  11. the zero sized binary errors.
  12. - Add one more instruction to avoid one branch point in the common path in the
  13. cl return code. Although this adds more ALUs overall and more branch points, the
  14. common path code has the same number of ALUs and one less jmp, jmps being more
  15. expensive.
  16. - Explicitly link in ws2_32 on the windows build and update README file on how
  17. to compile successfully on windows.
  18. - Release cl resources should the gpu mining thread abort.
  19. - Attempt to restart a GPU once every minute while it's sick.
  20. - Don't kill off the reinit thread if it fails to init a GPU but returns safely.
  21. - Only declare a GPU dead if there's been no sign of activity from the reinit
  22. thread for 10 mins.
  23. - Never automatically disable any pools but just specify them as idle if they're
  24. unresponsive at startup.
  25. - Use any longpoll available, and don't disable it if switching to a server that
  26. doesn't have it. This allows you to mine solo, yet use the longpoll from a pool
  27. even if the pool is the backup server.
  28. - Display which longpoll failed and don't free the ram for lp_url since it
  29. belongs to the pool hdr path.
  30. - Make the tcp setsockopts unique to linux in the hope it allows freebsd et. al
  31. to compile.
  32. Version 1.5.6 - August 17, 2011
  33. - New phatk and poclbm kernels. Updated phatk to be in sync with latest 2.2
  34. courtesy of phateus. Custom modified to work best with cgminer.
  35. - Updated output buffer code to use a smaller buffer with the kernels.
  36. - Clean up the longpoll management to ensure the right paths go to the right
  37. pool and display whether we're connected to LP or not in the status line.
  38. Version 1.5.5 - August 16, 2011
  39. - Rework entirely the GPU restart code. Strike a balance between code that
  40. re-initialises the GPU entirely so that soft hangs in the code are properly
  41. managed, but if a GPU is completely hung, the thread restart code fails
  42. gracefully, so that it does not take out any other code or devices. This will
  43. allow cgminer to keep restarting GPUs that can be restarted, but continue
  44. mining even if one or more GPUs hangs which would normally require a reboot.
  45. - Add --submit-stale option which submits all shares, regardless of whether they
  46. would normally be considered stale.
  47. - Keep options in alphabetical order.
  48. - Probe for slightly longer for when network conditions are lagging.
  49. - Only display the CPU algo when we're CPU mining.
  50. - As we have keepalives now, blaming network flakiness on timeouts appears to
  51. have been wrong. Set a timeout for longpoll to 1 hour, and most other
  52. network connectivity to 1 minute.
  53. - Simplify output code and remove HW errors from CPU stats.
  54. - Simplify code and tidy output.
  55. - Only show cpu algo in summary if cpu mining.
  56. - Log summary at the end as per any other output.
  57. - Flush output.
  58. - Add a linux-usb-cgminer guide courtesy of Kano.
  59. Version 1.5.4 - August 14, 2011
  60. - Add new option: --monitor <cmd> Option lets user specify a command <cmd> that
  61. will get forked by cgminer on startup. cgminer's stderr output subsequently gets
  62. piped directly to this command.
  63. - Allocate work from one function to be able to initialise variables added
  64. later.
  65. - Add missing fflush(stdout) for --ndevs and conclusion summary.
  66. - Preinitialise the devices only once on startup.
  67. - Move the non cl_ variables into the cgpu info struct to allow creating a new
  68. cl state on reinit, preserving known GPU variables.
  69. - Create a new context from scratch in initCQ in case something was corrupted to
  70. maximise our chance of succesfully creating a new worker thread. Hopefully this
  71. makes thread restart on GPU failure more reliable, without hanging everything
  72. in the case of a completely wedged GPU.
  73. - Display last initialised time in gpu management info, to know if a GPU has
  74. been re-initialised.
  75. - When pinging a sick cpu, flush finish and then ping it in a separate thread in
  76. the hope it recovers without needing a restart, but without blocking code
  77. elsewhere.
  78. - Only consider a pool lagging if we actually need the work and we have none
  79. staged despite queue requests stacking up. This decreases significantly the
  80. amount of work that leaks to the backup pools.
  81. - The can_roll function fails inappropriately in stale_work.
  82. - Only put the message that a pool is down if not pinging it every minute. This
  83. prevents cgminer from saying pool down at 1 minute intervals unless in debug
  84. mode.
  85. - Free all work in one place allowing us to perform actions on it in the future.
  86. - Remove the extra shift in the output code which was of dubious benefit. In
  87. fact in cgminer's implementation, removing this caused a miniscule speedup.
  88. - Test each work item to see if it can be rolled instead of per-pool and roll
  89. whenever possible, adhering to the 60 second timeout. This makes the period
  90. after a longpoll have smaller dips in throughput, as well as requiring less
  91. getworks overall thus increasing efficiency.
  92. - Stick to rolling only work from the current pool unless we're in load balance
  93. mode or lagging to avoid aggressive rolling imitating load balancing.
  94. - If a work item has had any mining done on it, don't consider it discarded
  95. work.
  96. Version 1.5.3 - July 30, 2011
  97. - Significant work went into attempting to make the thread restart code robust
  98. to identify sick threads, tag them SICK after 1 minute, then DEAD after 5
  99. minutes of inactivity and try to restart them. Instead of re-initialising the
  100. GPU completely, only a new cl context is created to avoid hanging the rest of
  101. the GPUs should the dead GPU be hung irrevocably.
  102. - Use correct application name in syslog.
  103. - Get rid of extra line feeds.
  104. - Use pkg-config to check for libcurl version
  105. - Implement per-thread getwork count with proper accounting to not over-account
  106. queued items when local work replaces it.
  107. - Create a command queue from the program created from source which allows us
  108. to flush the command queue in the hope it will not generate a zero sized binary
  109. any more.
  110. - Be more willing to get work from the backup pools if the work is simply being
  111. queued faster than it is being retrieved.
  112. Version 1.5.2 - July 28, 2011
  113. - Restarting a hung GPU can hang the rest of the GPUs so just declare it dead
  114. and provide the information in the status.
  115. - The work length in the miner thread gets smaller but doesn't get bigger if
  116. it's under 1 second. This could end up leading to CPU under-utilisation and
  117. lower and lower hash rates. Fix it by increasing work length if it drops
  118. under 1 second.
  119. - Make the "quiet" mode still update the status and display errors, and add a
  120. new --real-quiet option which disables all output and can be set once while
  121. running.
  122. - Update utility and efficiency figures when displaying them.
  123. - Some Intel HD graphics support the opencl commands but return errors since
  124. they don't support opencl. Don't fail with them, just provide a warning and
  125. disable GPU mining.
  126. - Add http:// if it's not explicitly set for URL entries.
  127. - Log to the output file at any time with warnings and errors, instead of just
  128. when verbose mode is on.
  129. - Display the correct current hash as per blockexplorer, truncated to 16
  130. characters, with just the time.
  131. Version 1.5.1 - July 27, 2011
  132. - Two redraws in a row cause a crash in old libncurses so just do one redraw
  133. using the main window.
  134. - Don't adjust hash_div only up for GPUs. Disable hash_div adjustment for GPUs.
  135. - Only free the thread structures if the thread still exists.
  136. - Update both windows separately, but not at the same time to prevent the double
  137. refresh crash that old libncurses has. Do the window resize check only when
  138. about to redraw the log window to minimise ncurses cpu usage.
  139. - Abstract out the decay time function and use it to make hash_div a rolling
  140. average so it doesn't change too abruptly and divide work in chunks large enough
  141. to guarantee they won't overlap.
  142. - Sanity check to prove locking.
  143. - Don't take more than one lock at a time.
  144. - Make threads report out when they're queueing a request and report if they've
  145. failed.
  146. - Make cpu mining work submission asynchronous as well.
  147. - Properly detect stale work based on time from staging and discard instead of
  148. handing on, but be more lax about how long work can be divided for up to the
  149. scantime.
  150. - Do away with queueing work separately at the start and let each thread grab
  151. its own work as soon as it's ready.
  152. - Don't put an extra work item in the queue as each new device thread will do so
  153. itself.
  154. - Make sure to decrease queued count if we discard the work.
  155. - Attribute split work as local work generation.
  156. - If work has been cloned it is already at the head of the list and when being
  157. reinserted into the queue it should be placed back at the head of the list.
  158. - Dividing work is like the work is never removed at all so treat it as such.
  159. However the queued bool needs to be reset to ensure we *can* request more work
  160. even if we didn't initially.
  161. - Make the display options clearer.
  162. - Add debugging output to tq_push calls.
  163. - Add debugging output to all tq_pop calls.
  164. Version 1.5.0 - July 26, 2011
  165. - Increase efficiency of slow mining threads such as CPU miners dramatically. Do
  166. this by detecting which threads cannot complete searching a work item within the
  167. scantime and then divide up a work item into multiple smaller work items.
  168. Detect the age of the work items and if they've been cloned before to prevent
  169. doing the same work over. If the work is too old to be divided, then see if it
  170. can be time rolled and do that to generate work. This dramatically decreases the
  171. number of queued work items from a pool leading to higher overall efficiency
  172. (but the same hashrate and share submission rate).
  173. - Don't request work too early for CPUs as CPUs will scan for the full
  174. opt_scantime anyway.
  175. - Simplify gpu management enable/disable/restart code.
  176. - Implement much more accurate rolling statistics per thread and per gpu and
  177. improve accuracy of rolling displayed values.
  178. - Make the rolling log-second average more accurate.
  179. - Add a menu to manage GPUs on the fly allowing you to enable/disable GPUs or
  180. try restarting them.
  181. - Keep track of which GPUs are alive versus enabled.
  182. - Start threads for devices that are even disabled, but don't allow them to
  183. start working.
  184. - The last pool is when we are low in total_pools, not active_pools.
  185. - Make the thread restart do a pthread_join after disabling the device, only
  186. re-enabling it if we succeed in restarting the thread. Do this from a separate
  187. thread so as to not block any other code.This will allow cgminer to continue
  188. even if one GPU hangs.
  189. - Try to do every curses manipulation under the curses lock.
  190. - Only use the sockoptfunction if the version of curl is recent enough.
  191. Version 1.4.1 - July 24, 2011
  192. - Do away with GET for dealing with longpoll forever. POST is the one that works
  193. everywhere, not the other way around.
  194. - Detect when the primary pool is lagging and start queueing requests on backup
  195. pools if possible before needing to roll work.
  196. - Load balancing puts more into the current pool if there are disabled pools.
  197. Fix.
  198. - Disable a GPU device should the thread fail to init.
  199. - Out of order command queue may fail on osx. Try without if it fails.
  200. - Fix possible dereference on blank inputs during input_pool.
  201. - Defines missing would segfault on --help when no sse mining is built in.
  202. - Revert "Free up resources/stale compilers." - didn't help.
  203. - Only try to print the status of active devices or it would crash.
  204. - Some hardware might benefit from the less OPS so there's no harm in leaving
  205. kernel changes that do that apart from readability of the code.
  206. Version 1.4.0 - July 23, 2011
  207. - Feature upgrade: Add keyboard input during runtime to allow modification of
  208. and viewing of numerous settings such as adding/removing pools, changing
  209. multipool management strategy, switching pools, changing intensiy, verbosity,
  210. etc. with a simple keypress menu system.
  211. - Free up resources/stale compilers.
  212. - Kernels are safely flushed in a way that allows out of order execution to
  213. work.
  214. - Sometimes the cl compiler generates zero sized binaries and only a reboot
  215. seems to fix it.
  216. - Don't try to stop/cancel threads that don't exist.
  217. - Only set option to show devices and exit if built with opencl support.
  218. - Enable curses earlier and exit with message in main for messages to not be
  219. lost in curses windows.
  220. - Make it possible to enter server credentials with curses input if none are
  221. specified on the command line.
  222. - Abstract out a curses input function and separate input pool function to allow
  223. for live adding of pools later.
  224. - Remove the nil arguments check to allow starting without parameters.
  225. - Disable/enable echo & cbreak modes.
  226. - Add a thread that takes keyboard input and allow for quit, silent, debug,
  227. verbose, normal, rpc protocol debugging and clear screen options.
  228. - Add pool option to input and display current pool status, pending code to
  229. allow live changes.
  230. - Add a bool for explicit enabling/disabling of pools.
  231. - Make input pool capable of bringing up pools while running.
  232. - Do one last check of the work before submitting it.
  233. - Implement the ability to live add, enable, disable, and switch to pools.
  234. - Only internally test for block changes when the work matches the current pool
  235. to prevent interleaved block change timing on multipools.
  236. - Display current pool management strategy to enable changing it on the fly.
  237. - The longpoll blanking of the current_block data may not be happening before
  238. the work is converted and appears to be a detected block change. Blank the
  239. current block be
  240. - Make --no-longpoll work again.
  241. - Abstract out active pools count.
  242. - Allow the pool strategy to be modified on the fly.
  243. - Display pool information on the fly as well.
  244. - Add a menu and separate out display options.
  245. - Clean up the messy way the staging thread communicates with the longpoll
  246. thread to determine who found the block first.
  247. - Make the input windows update immediately instead of needing a refresh.
  248. - Allow log interval to be set in the menu.
  249. - Allow scan settings to be modified at runtime.
  250. - Abstract out the longpoll start and explicitly restart it on pool change.
  251. - Make it possible to enable/disable longpoll.
  252. - Set priority correctly on multipools. Display priority and alive/dead
  253. information in display_pools.
  254. - Implement pool removal.
  255. - Limit rolltime work generation to 10 iterations only.
  256. - Decrease testing log to info level.
  257. - Extra refresh not required.
  258. - With huge variation in GPU performance, allow intensity to go from -10 to +10.
  259. - Tell getwork how much of a work item we're likely to complete for future
  260. splitting up of work.
  261. - Remove the mandatory work requirement at startup by testing for invalid work
  262. being passed which allows for work to be queued immediately. This also
  263. removes the requirem
  264. - Make sure intensity is carried over to thread count and is at least the
  265. minimum necessary to work.
  266. - Unlocking error on retry. Locking unnecessary anyway so remove it.
  267. - Clear log window from consistent place. No need for locking since logging is
  268. disabled during input.
  269. - Cannot print the status of threads that don't exist so just queue enough work
  270. for the number of mining threads to prevent crash with -Q N.
  271. - Update phatk kernel to one with new parameters for slightly less overhead
  272. again. Make the queue kernel parameters call a function pointer to select
  273. phatk or poclbm.
  274. - Make it possible to select the choice of kernel on the command line.
  275. - Simplify the output part of the kernel. There's no demonstrable advantage from
  276. more complexity.
  277. - Merge pull request #18 from ycros/cgminer
  278. - No need to make leaveok changes win32 only.
  279. - Build support in for all SSE if possible and only set the default according to
  280. machine capabilities.
  281. - Win32 threading and longpoll keepalive fixes.
  282. - Win32: Fix for mangled output on the terminal on exit.
  283. Version 1.3.1 - July 20, 2011
  284. - Feature upgrade; Multiple strategies for failover. Choose from default which
  285. now falls back to a priority order from 1st to last, round robin which only
  286. changes pools when one is idle, rotate which changes pools at user-defined
  287. intervals, and load-balance which spreads the work evenly amongst all pools.
  288. - Implement pool rotation strategy.
  289. - Implement load balancing algorithm by rotating requests to each pool.
  290. - Timeout on failed discarding of staged requests.
  291. - Implement proper flagging of idle pools, test them with the watchdog thread,
  292. and failover correctly.
  293. - Move pool active test to own function.
  294. - Allow multiple strategies to be set for multipool management.
  295. - Track pool number.
  296. - Don't waste the work items queued on testing the pools at startup.
  297. - Reinstate the mining thread watchdog restart.
  298. - Add a getpoll bool into the thread information and don't restart threads stuck
  299. waiting on work.
  300. - Rename the idlenet bool for the pool for later use.
  301. - Allow the user/pass userpass urls to be input in any order.
  302. - When json rpc errors occur they occur in spits and starts, so trying to limit
  303. them with the comms error bool doesn't stop a flood of them appearing.
  304. - Reset the queued count to allow more work to be queued for the new pool on
  305. pool switch.
  306. Version 1.3.0 - July 19, 2011
  307. - Massive infrastructure update to support pool failover.
  308. - Accept multiple parameters for url, user and pass and set up structures of
  309. pool data accordingly.
  310. - Probe each pool for what it supports.
  311. - Implement per pool feature support according to rolltime support as
  312. advertised by server.
  313. - Do switching automatically based on a 300 second timeout of locally generated
  314. work or 60 seconds of no response from a server that doesn't support rolltime.
  315. - Implement longpoll server switching.
  316. - Keep per-pool data and display accordingly.
  317. - Make sure cgminer knows how long the pool has actually been out for before
  318. deeming it a prolonged outage.
  319. - Fix bug with ever increasing staged work in 1.2.8 that eventually caused
  320. infinite rejects.
  321. - Make warning about empty http requests not show by default since many
  322. servers do this regularly.
  323. Version 1.2.8 - July 18, 2011
  324. - More OSX build fixes.
  325. - Add an sse4 algorithm to CPU mining.
  326. - Fix CPU mining with other algorithms not working.
  327. - Rename the poclbm file to ensure a new binary is built since.
  328. - We now are guaranteed to have one fresh work item after a block change and we
  329. should only discard staged requests.
  330. - Don't waste the work we retrieve from a longpoll.
  331. - Provide a control lock around global bools to avoid racing on them.
  332. - Iterating over 1026 nonces when confirming data from the GPU is old code
  333. and unnecessary and can lead to repeats/stales.
  334. - The poclbm kernel needs to be updated to work with the change to 4k sized
  335. output buffers.
  336. - longpoll seems to work either way with post or get but some servers prefer
  337. get so change to httpget.
  338. Version 1.2.7 - July 16, 2011
  339. - Show last 8 characters of share submitted in log.
  340. - Display URL connected to and user logged in as in status.
  341. - Display current block and when it was started in the status line.
  342. - Only pthread_join the mining threads if they exist as determined by
  343. pthread_cancel and don't fail on pthread_cancel.
  344. - Create a unique work queue for all getworks instead of binding it to thread 0
  345. to avoid any conflict over thread 0's queue.
  346. - Clean up the code to make it clear it's watchdog thread being messaged to
  347. restart the threads.
  348. - Check the current block description hasn't been blanked pending the real
  349. new current block data.
  350. - Re-enable signal handlers once the signal has been received to make it
  351. possible to kill cgminer if it fails to shut down.
  352. - Disable restarting of CPU mining threads pending further investigation.
  353. - Update longpoll messages.
  354. - Add new block data to status line.
  355. - Fix opencl tests for osx.
  356. - Only do local generation of work if the work item is not stale itself.
  357. - Check for stale work within the mining threads and grab new work if
  358. positive.
  359. - Test for idle network conditions and prevent threads from being restarted
  360. by the watchdog thread under those circumstances.
  361. - Make sure that local work generation does not continue indefinitely by
  362. stopping it after 10 minutes.
  363. - Tweak the kernel to have a shorter path using a 4k buffer and a mask on the
  364. nonce value instead of a compare and loop for a shorter code path.
  365. - Allow queue of zero and make that default again now that we can track how
  366. work is being queued versus staged. This can decrease reject rates.
  367. - Queue precisely the number of mining threads as longpoll_staged after a
  368. new block to not generate local work.
  369. Version 1.2.6 - July 15, 2011
  370. - Put a current system status line beneath the total work status line
  371. - Fix a counting error that would prevent cgminer from correctly detecting
  372. situations where getwork was failing - this would cause stalls sometimes
  373. unrecoverably.
  374. - Limit the maximum number of requests that can be put into the queue which
  375. otherwise could get arbitrarily long during a network outage.
  376. - Only count getworks that are real queue requests.
  377. Version 1.2.5 - July 15, 2011
  378. - Conflicting -n options corrected
  379. - Setting an intensity with -I disables dynamic intensity setting
  380. - Removed option to manually disable dynamic intensity
  381. - Improve display output
  382. - Implement signal handler and attempt to clean up properly on exit
  383. - Only restart threads that are not stuck waiting on mandatory getworks
  384. - Compatibility changes courtesy of Ycros to build on mingw32 and osx
  385. - Explicitly grab first work item to prevent false positive hardware errors
  386. due to working on uninitialised work structs
  387. - Add option for non curses --text-only output
  388. - Ensure we connect at least once successfully before continuing to retry to
  389. connect in case url/login parameters were wrong
  390. - Print an executive summary when cgminer is terminated
  391. - Make sure to refresh the status window
  392. Versions -> 1.2.4
  393. - Con Kolivas - July 2011. New maintainership of code under cgminer name.
  394. - Massive rewrite to incorporate GPU mining.
  395. - Incorporate original oclminer c code.
  396. - Rewrite gpu mining code to efficient work loops.
  397. - Implement per-card detection and settings.
  398. - Implement vector code.
  399. - Implement bfi int patching.
  400. - Import poclbm and phatk ocl kernels and use according to hardware type.
  401. - Implement customised optimised versions of opencl kernels.
  402. - Implement binary kernel generation and loading.
  403. - Implement preemptive asynchronous threaded work gathering and pushing.
  404. - Implement variable length extra work queues.
  405. - Optimise workloads to be efficient miners instead of getting lots of extra
  406. work.
  407. - Implement total hash throughput counters, per-card accepted, rejected and
  408. hw error count.
  409. - Staging and watchdog threads to prevent fallover.
  410. - Stale and reject share guarding.
  411. - Autodetection of new blocks without longpoll.
  412. - Dynamic setting of intensity to maintain desktop interactivity.
  413. - Curses interface with generous statistics and information.
  414. - Local generation of work (xroll ntime) when detecting poor network
  415. connectivity.
  416. Version 1.0.2
  417. - Linux x86_64 optimisations - Con Kolivas
  418. - Optimise for x86_64 by default by using sse2_64 algo
  419. - Detects CPUs and sets number of threads accordingly
  420. - Uses CPU affinity for each thread where appropriate
  421. - Sets scheduling policy to lowest possible
  422. - Minor performance tweaks
  423. Version 1.0.1 - May 14, 2011
  424. - OSX support
  425. Version 1.0 - May 9, 2011
  426. - jansson 2.0 compatibility
  427. - correct off-by-one in date (month) display output
  428. - fix platform detection
  429. - improve yasm configure bits
  430. - support full URL, in X-Long-Polling header
  431. Version 0.8.1 - March 22, 2011
  432. - Make --user, --pass actually work
  433. - Add User-Agent HTTP header to requests, so that server operators may
  434. more easily identify the miner client.
  435. - Fix minor bug in example JSON config file
  436. Version 0.8 - March 21, 2011
  437. - Support long polling: http://deepbit.net/longpolling.php
  438. - Adjust max workload based on scantime (default 5 seconds,
  439. or 60 seconds for longpoll)
  440. - Standardize program output, and support syslog on Unix platforms
  441. - Suport --user/--pass options (and "user" and "pass" in config file),
  442. as an alternative to the current --userpass
  443. Version 0.7.2 - March 14, 2011
  444. - Add port of ufasoft's sse2 assembly implementation (Linux only)
  445. This is a substantial speed improvement on Intel CPUs.
  446. - Move all JSON-RPC I/O to separate thread. This reduces the
  447. number of HTTP connections from one-per-thread to one, reducing resource
  448. usage on upstream bitcoind / pool server.
  449. Version 0.7.1 - March 2, 2011
  450. - Add support for JSON-format configuration file. See example
  451. file example-cfg.json. Any long argument on the command line
  452. may be stored in the config file.
  453. - Timestamp each solution found
  454. - Improve sha256_4way performance. NOTE: This optimization makes
  455. the 'hash' debug-print output for sha256_way incorrect.
  456. - Use __builtin_expect() intrinsic as compiler micro-optimization
  457. - Build on Intel compiler
  458. - HTTP library now follows HTTP redirects
  459. Version 0.7 - February 12, 2011
  460. - Re-use CURL object, thereby reuseing DNS cache and HTTP connections
  461. - Use bswap_32, if compiler intrinsic is not available
  462. - Disable full target validation (as opposed to simply H==0) for now
  463. Version 0.6.1 - February 4, 2011
  464. - Fully validate "hash < target", rather than simply stopping our scan
  465. if the high 32 bits are 00000000.
  466. - Add --retry-pause, to set length of pause time between failure retries
  467. - Display proof-of-work hash and target, if -D (debug mode) enabled
  468. - Fix max-nonce auto-adjustment to actually work. This means if your
  469. scan takes longer than 5 seconds (--scantime), the miner will slowly
  470. reduce the number of hashes you work on, before fetching a new work unit.
  471. Version 0.6 - January 29, 2011
  472. - Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
  473. - BeeCee1's sha256 4way optimizations
  474. - lfm's byte swap optimization (improves via, cryptopp)
  475. - Fix non-working short options -q, -r
  476. Version 0.5 - December 28, 2010
  477. - Exit program, when all threads have exited
  478. - Improve JSON-RPC failure diagnostics and resilience
  479. - Add --quiet option, to disable hashmeter output.
  480. Version 0.3.3 - December 27, 2010
  481. - Critical fix for sha256_cryptopp 'cryptopp_asm' algo
  482. Version 0.3.2 - December 23, 2010
  483. - Critical fix for sha256_via
  484. Version 0.3.1 - December 19, 2010
  485. - Critical fix for sha256_via
  486. - Retry JSON-RPC failures (see --retry, under "minerd --help" output)
  487. Version 0.3 - December 18, 2010
  488. - Add crypto++ 32bit assembly implementation
  489. - show version upon 'minerd --help'
  490. - work around gcc 4.5.x bug that killed 4way performance
  491. Version 0.2.2 - December 6, 2010
  492. - VIA padlock implementation works now
  493. - Minor build and runtime fixes
  494. Version 0.2.1 - November 29, 2010
  495. - avoid buffer overflow when submitting solutions
  496. - add Crypto++ sha256 implementation (C only, ASM elided for now)
  497. - minor internal optimizations and cleanups
  498. Version 0.2 - November 27, 2010
  499. - Add script for building a Windows installer
  500. - improve hash performance (hashmeter) statistics
  501. - add tcatm 4way sha256 implementation
  502. - Add experimental VIA Padlock sha256 implementation
  503. Version 0.1.2 - November 26, 2010
  504. - many small cleanups and micro-optimizations
  505. - build win32 exe using mingw
  506. - RPC URL, username/password become command line arguments
  507. - remove unused OpenSSL dependency
  508. Version 0.1.1 - November 24, 2010
  509. - Do not build sha256_generic module separately from cpuminer.
  510. Version 0.1 - November 24, 2010
  511. - Initial release.