NEWS 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. Version 1.2.7 - July 16, 2011
  2. - Show last 8 characters of share submitted in log.
  3. - Display URL connected to and user logged in as in status.
  4. - Display current block and when it was started in the status line.
  5. - Only pthread_join the mining threads if they exist as determined by
  6. pthread_cancel and don't fail on pthread_cancel.
  7. - Create a unique work queue for all getworks instead of binding it to thread 0
  8. to avoid any conflict over thread 0's queue.
  9. - Clean up the code to make it clear it's watchdog thread being messaged to
  10. restart the threads.
  11. - Check the current block description hasn't been blanked pending the real
  12. new current block data.
  13. - Re-enable signal handlers once the signal has been received to make it
  14. possible to kill cgminer if it fails to shut down.
  15. - Disable restarting of CPU mining threads pending further investigation.
  16. - Update longpoll messages.
  17. - Add new block data to status line.
  18. - Fix opencl tests for osx.
  19. - Only do local generation of work if the work item is not stale itself.
  20. - Check for stale work within the mining threads and grab new work if
  21. positive.
  22. - Test for idle network conditions and prevent threads from being restarted
  23. by the watchdog thread under those circumstances.
  24. - Make sure that local work generation does not continue indefinitely by
  25. stopping it after 10 minutes.
  26. - Tweak the kernel to have a shorter path using a 4k buffer and a mask on the
  27. nonce value instead of a compare and loop for a shorter code path.
  28. - Allow queue of zero and make that default again now that we can track how
  29. work is being queued versus staged. This can decrease reject rates.
  30. - Queue precisely the number of mining threads as longpoll_staged after a
  31. new block to not generate local work.
  32. Version 1.2.6 - July 15, 2011
  33. - Put a current system status line beneath the total work status line
  34. - Fix a counting error that would prevent cgminer from correctly detecting
  35. situations where getwork was failing - this would cause stalls sometimes
  36. unrecoverably.
  37. - Limit the maximum number of requests that can be put into the queue which
  38. otherwise could get arbitrarily long during a network outage.
  39. - Only count getworks that are real queue requests.
  40. Version 1.2.5 - July 15, 2011
  41. - Conflicting -n options corrected
  42. - Setting an intensity with -I disables dynamic intensity setting
  43. - Removed option to manually disable dynamic intensity
  44. - Improve display output
  45. - Implement signal handler and attempt to clean up properly on exit
  46. - Only restart threads that are not stuck waiting on mandatory getworks
  47. - Compatibility changes courtesy of Ycros to build on mingw32 and osx
  48. - Explicitly grab first work item to prevent false positive hardware errors
  49. due to working on uninitialised work structs
  50. - Add option for non curses --text-only output
  51. - Ensure we connect at least once successfully before continuing to retry to
  52. connect in case url/login parameters were wrong
  53. - Print an executive summary when cgminer is terminated
  54. - Make sure to refresh the status window
  55. Versions -> 1.2.4
  56. - Con Kolivas - July 2011. New maintainership of code under cgminer name.
  57. - Massive rewrite to incorporate GPU mining.
  58. - Incorporate original oclminer c code.
  59. - Rewrite gpu mining code to efficient work loops.
  60. - Implement per-card detection and settings.
  61. - Implement vector code.
  62. - Implement bfi int patching.
  63. - Import poclbm and phatk ocl kernels and use according to hardware type.
  64. - Implement customised optimised versions of opencl kernels.
  65. - Implement binary kernel generation and loading.
  66. - Implement preemptive asynchronous threaded work gathering and pushing.
  67. - Implement variable length extra work queues.
  68. - Optimise workloads to be efficient miners instead of getting lots of extra
  69. work.
  70. - Implement total hash throughput counters, per-card accepted, rejected and
  71. hw error count.
  72. - Staging and watchdog threads to prevent fallover.
  73. - Stale and reject share guarding.
  74. - Autodetection of new blocks without longpoll.
  75. - Dynamic setting of intensity to maintain desktop interactivity.
  76. - Curses interface with generous statistics and information.
  77. - Local generation of work (xroll ntime) when detecting poor network
  78. connectivity.
  79. Version 1.0.2
  80. - Linux x86_64 optimisations - Con Kolivas
  81. - Optimise for x86_64 by default by using sse2_64 algo
  82. - Detects CPUs and sets number of threads accordingly
  83. - Uses CPU affinity for each thread where appropriate
  84. - Sets scheduling policy to lowest possible
  85. - Minor performance tweaks
  86. Version 1.0.1 - May 14, 2011
  87. - OSX support
  88. Version 1.0 - May 9, 2011
  89. - jansson 2.0 compatibility
  90. - correct off-by-one in date (month) display output
  91. - fix platform detection
  92. - improve yasm configure bits
  93. - support full URL, in X-Long-Polling header
  94. Version 0.8.1 - March 22, 2011
  95. - Make --user, --pass actually work
  96. - Add User-Agent HTTP header to requests, so that server operators may
  97. more easily identify the miner client.
  98. - Fix minor bug in example JSON config file
  99. Version 0.8 - March 21, 2011
  100. - Support long polling: http://deepbit.net/longpolling.php
  101. - Adjust max workload based on scantime (default 5 seconds,
  102. or 60 seconds for longpoll)
  103. - Standardize program output, and support syslog on Unix platforms
  104. - Suport --user/--pass options (and "user" and "pass" in config file),
  105. as an alternative to the current --userpass
  106. Version 0.7.2 - March 14, 2011
  107. - Add port of ufasoft's sse2 assembly implementation (Linux only)
  108. This is a substantial speed improvement on Intel CPUs.
  109. - Move all JSON-RPC I/O to separate thread. This reduces the
  110. number of HTTP connections from one-per-thread to one, reducing resource
  111. usage on upstream bitcoind / pool server.
  112. Version 0.7.1 - March 2, 2011
  113. - Add support for JSON-format configuration file. See example
  114. file example-cfg.json. Any long argument on the command line
  115. may be stored in the config file.
  116. - Timestamp each solution found
  117. - Improve sha256_4way performance. NOTE: This optimization makes
  118. the 'hash' debug-print output for sha256_way incorrect.
  119. - Use __builtin_expect() intrinsic as compiler micro-optimization
  120. - Build on Intel compiler
  121. - HTTP library now follows HTTP redirects
  122. Version 0.7 - February 12, 2011
  123. - Re-use CURL object, thereby reuseing DNS cache and HTTP connections
  124. - Use bswap_32, if compiler intrinsic is not available
  125. - Disable full target validation (as opposed to simply H==0) for now
  126. Version 0.6.1 - February 4, 2011
  127. - Fully validate "hash < target", rather than simply stopping our scan
  128. if the high 32 bits are 00000000.
  129. - Add --retry-pause, to set length of pause time between failure retries
  130. - Display proof-of-work hash and target, if -D (debug mode) enabled
  131. - Fix max-nonce auto-adjustment to actually work. This means if your
  132. scan takes longer than 5 seconds (--scantime), the miner will slowly
  133. reduce the number of hashes you work on, before fetching a new work unit.
  134. Version 0.6 - January 29, 2011
  135. - Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
  136. - BeeCee1's sha256 4way optimizations
  137. - lfm's byte swap optimization (improves via, cryptopp)
  138. - Fix non-working short options -q, -r
  139. Version 0.5 - December 28, 2010
  140. - Exit program, when all threads have exited
  141. - Improve JSON-RPC failure diagnostics and resilience
  142. - Add --quiet option, to disable hashmeter output.
  143. Version 0.3.3 - December 27, 2010
  144. - Critical fix for sha256_cryptopp 'cryptopp_asm' algo
  145. Version 0.3.2 - December 23, 2010
  146. - Critical fix for sha256_via
  147. Version 0.3.1 - December 19, 2010
  148. - Critical fix for sha256_via
  149. - Retry JSON-RPC failures (see --retry, under "minerd --help" output)
  150. Version 0.3 - December 18, 2010
  151. - Add crypto++ 32bit assembly implementation
  152. - show version upon 'minerd --help'
  153. - work around gcc 4.5.x bug that killed 4way performance
  154. Version 0.2.2 - December 6, 2010
  155. - VIA padlock implementation works now
  156. - Minor build and runtime fixes
  157. Version 0.2.1 - November 29, 2010
  158. - avoid buffer overflow when submitting solutions
  159. - add Crypto++ sha256 implementation (C only, ASM elided for now)
  160. - minor internal optimizations and cleanups
  161. Version 0.2 - November 27, 2010
  162. - Add script for building a Windows installer
  163. - improve hash performance (hashmeter) statistics
  164. - add tcatm 4way sha256 implementation
  165. - Add experimental VIA Padlock sha256 implementation
  166. Version 0.1.2 - November 26, 2010
  167. - many small cleanups and micro-optimizations
  168. - build win32 exe using mingw
  169. - RPC URL, username/password become command line arguments
  170. - remove unused OpenSSL dependency
  171. Version 0.1.1 - November 24, 2010
  172. - Do not build sha256_generic module separately from cpuminer.
  173. Version 0.1 - November 24, 2010
  174. - Initial release.