NEWS 6.3 KB

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