NEWS 148 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060
  1. BFGMiner Version 2.8.8 - December 10, 2012
  2. - Bugfix: Copy share hash to work->hash before doing 4-byte flip required by
  3. fulltest
  4. - driver-ztex: libztex_setFreq() must be called before ztex_releaseFpga()
  5. - libztex: Make log messages say bitstream when refering to bitstreams
  6. - Bugfix: Use AC_PROG_CPP in libusb include subdirectory detection for improved
  7. portability
  8. - Bugfix: Free filename entry for writing config file when done with it
  9. BFGMiner Version 2.8.7 - December 4, 2012
  10. - Update libblkmaker to 0.2.1
  11. - Bugfix: bitforce: Always increment global hw error counter when incrementing
  12. device hwe
  13. - Bugfix: Capitalize "MHz" correctly
  14. - ztex: Correctly release mutex and reset FPGA if configuration fails
  15. - ztex: Harmonize low-speed FPGA configuration code with high-speed code
  16. - libztex: Silence warning: comparison between signed and unsigned
  17. - Count longpoll decodes as queued work since the count otherwise remains
  18. static.
  19. - Look for libusb_init in -lusb, since FreeBSD has it there
  20. - Bugfix: Use pkgconfig for libusb when available, and try to guess the include
  21. path if not
  22. - Bugfix: Assign header-based rolltime before decoding work, so GBT expires
  23. overrides it properly
  24. - fixes target calc for mips openwrt
  25. - Bugfix: clear_work: Whether the template is in fact being freed or not, the
  26. work reference to it needs to be
  27. - libztex: Work around ZTEX USB firmware bug exposed by the FreeBSD libusb
  28. - README: Update dependencies
  29. - Bugfix: We should never roll stale work
  30. - Removing erroneous libssl dep again. GITHUB#94
  31. BFGMiner Version 2.8.6 - November 16, 2012
  32. - Bugfix: Never consider shares to be accepted if the submission response is an
  33. error
  34. - Bugfix: Always honour libblkmaker time limits
  35. BFGMiner Version 2.8.5 - November 7, 2012
  36. - Bugfix: modminer: Use json_object_set_new to correctly count references to
  37. per-FPGA RPC data
  38. - Changes to build prototypes to support building on FreeBSD 9.1-RC2 amd64
  39. - ztex: Silence false "unexpected" hardware errors, and don't count them as hw
  40. errors
  41. - README: Update build instructions to reflect current reality
  42. - Bugfix: ztex: Include --scan-serial option even for ztex-only builds, so it
  43. - Bugfix: dynclock: Use standard C struct initializer to handle initialization,
  44. instead of memsetting memory to nulls
  45. BFGMiner Version 2.8.4 - October 30, 2012
  46. - Bugfix: regeneratehash needs to compare hash segments in Little Endian, not
  47. Big Endian
  48. - Bugfix: Wait to release JSON result in case of JSON-RPC error until we've
  49. logged the error
  50. - Bugfix: RPC: Defer release of JSON until after cmd is used
  51. - Bugfix: Release JSON result in case of JSON-RPC error
  52. - Bugfix: Release job JSON result as soon as we are done using it
  53. - Bugfix: Release JSON received from RPC socket after we're done using it
  54. - Bugfix: Use clear_work and workdup everywhere work is copied around
  55. - modminer: Remove dead code
  56. - Bugfix: Save pool pointer to avoid dereferencing work after it might
  57. potentially be freed
  58. - Bugfix: Cleanup some harmless warnings
  59. - Bugfix: Clear work before replacing it with new, to free any pointers
  60. - Bugfix: Release job JSON result as soon as we are done using it
  61. - Bugfix: Release GBT submission JSON objects after dumping them
  62. - Bugfix: Clear work template when preparing a new request
  63. - Replace now-redundant accepted_weighed with equivalent diff_accepted
  64. - Bugfix: modminer: Check that we have a valid fd before trying to start work
  65. - Minor debian packaging fixes.
  66. BFGMiner Version 2.8.3 - October 18, 2012
  67. - Update to libblkmaker 0.1.3
  68. - Use explicit host to BE functions in scrypt code instead of hard coding
  69. byteswap everywhere.
  70. - Ease the checking on allocation of padbuffer8 in the hope it works partially
  71. anyway on an apparently failed call.
  72. - Round target difficulties down to be in keeping with the rounding of detected
  73. share difficulties.
  74. - String alignment to 4 byte boundaries and optimisations for bin<->hex
  75. conversions.
  76. - Fix GPU memory allocation size for scrypt
  77. - Fix access violation with scrypt mining
  78. - Bugfix: Only free rpc_req after using it, not before
  79. - Bugfix: Increment work->pool->staged inside of mutex to avoid work being
  80. freed (and staged decremented) before we dereference it
  81. - Revert "No need for extra variable in hash_push.": The extra variable is
  82. needed to avoid a rare dereference-after-free error.
  83. - In opencl_free_work, make sure to still flush results in dynamic mode.
  84. - Workaround: Debug log only after dec_queued, to make a free/use race more
  85. rare
  86. - Bugfix: Remove redundant \n in debug messages
  87. - Bugfix: Free rpc_req in pool_active and longpolls
  88. - README: Explicitly provide Ubuntu package name for libjansson-dev
  89. - Bugfix: Include flash_led bool in cgpu_info for Icarus-but-not-BitForce
  90. builds, since Cairnsmore uses it
  91. - Only check work block id against pool's if the pool has a known block id
  92. - Avoid clearing pool->block_id unless we really are changing pools
  93. BFGMiner Version 2.8.2 - October 8, 2012
  94. - Update to libblkmaker 0.1.2
  95. - Bugfix: --temp-target no longer has a simple default (fixes build without
  96. OpenCL support)
  97. - Bugfix: icarus: Silence false epoll error
  98. - Bugfix: icarus: Set firstrun for errors starting next job, so the current
  99. one finishes properly
  100. - Bugfix: icarus: Restore generic failure management for write errors
  101. - Use strtod not strtol for bitforce temp backup.
  102. - Cope with broken drivers returning nonsense values for bitforce temperatures.
  103. - Minor warning fixes.
  104. - Fix unused warnings on ming build.
  105. - Fix sign warning in ocl.c
  106. - fds need to be zeroed before set in modminer.
  107. - Put scrypt warning on separate line to avoid 0 being shown on windows as
  108. bufsize.
  109. - Prevent corrupt values returned from the opencl code from trying to read
  110. beyond the end of the buffer by masking the value to a max of 15.
  111. - Icarus USB write failure is also a comms error
  112. - api.c DEBUG message has no paramter
  113. - Icarus catch more USB errors and close/reopen the port
  114. - API-README update cgminer verison number
  115. - hashmeter fix stats kh/s on 32bit windows
  116. - cairnsmore: Increase maximum clock frequency to 210 Mhz
  117. - icarus: Hashrate estimates really don't need the attention of a warning,
  118. demote them to debug
  119. - cairnsmore: Automatically "downgrade" default FPGA-per-device to 1 for
  120. dynclock devices
  121. - Bugfix: cairnsmore: Get autodetection of dynclock to work consistently
  122. - cairnsmore: Adjust dynclock usage to react in proper time
  123. - dynclock: Document function usage
  124. - cairnsmore: Fix race on dynclock detection
  125. - icarus: Detect attempts to send commands via work and neuter them
  126. - cairnsmore: Glasswalker has a minimum multiplier of 20 :(
  127. - cairnsmore: Detect frequency changing support despite hashing of commands
  128. - modminer: Allow clocks down to 2 Mhz just in case
  129. - Allow device drivers and users to properly change target temperatures for
  130. non-GPUs
  131. - Check that ncurses*-config installs actually work before deciding to use
  132. them
  133. - Bugfix: Fix multiple bugs in autogen.sh
  134. - - Don't use readlink -f unneccesarily (it's not portable)
  135. - - Always run autoreconf within the real source directory
  136. - - Run configure from PWD, *not* the real source directory
  137. - Bugfix: Include nonce in data buffer for debugging
  138. - Bugfix: swap32* wants count of 32-bit blocks, not bytes
  139. - Initial Cygwin port
  140. - Revert "Remove needless roundl define.", since it is needed for Cygwin and
  141. OpenWRT
  142. - Bugfix: Deal with various compiler warnings
  143. - modminer: Implement --temp-hysteresis logic
  144. - Support for maximum frequency being below the default, eg when the maximum
  145. is temporarily reduced to deal with temperature
  146. - Bugfix: modminer: Reduce dynclock max frequency as needed to keep
  147. temperature below cutoff
  148. - Bugfix: Restore disabled label, needed to skip over hashrate calculations
  149. (which mess up otherwise)
  150. - Bugfix: bitforce: Count actual throttling as hardware errors
  151. - icarus: Allow failure in case of reopen failure, now that the miner core
  152. will retry on its own
  153. - If a device dies, attempt to reinitialize it occasionally
  154. - Bugfix: The REST flag is now preferred over WAIT, since the former might
  155. trigger the latter
  156. - Bugfix: modminer: Update temperature readings when disabled (fixes thermal
  157. cutoff recovery)
  158. - Bugfix: Move thermal cutoff to general watchdog code (fixes bitforce
  159. recovery)
  160. - Rename enable_device to register_device, since it only works for setting it
  161. up at startup
  162. - Move targettemp from ADL to cgpu_info, so all devices can readily use it
  163. - Bugfix: "REST" flag had too much padding
  164. - Bugfix: adl: Only warn and disable GPU due to thermal cutoff, if it's
  165. actually enabled
  166. - Bugfix: bitforce: Only warn and disable bitforce due to thermal cutoff, if
  167. it's actually enabled
  168. BFGMiner Version 2.8.1 - September 27, 2012
  169. - Avoid strndup for Windows compatibility
  170. - Bugfix: cairnsmore: Add missing compat.h include (for sleep)
  171. - cairnsmore: Implement "identify" for supported firmware
  172. - Adjust identify_device API to return a bool whether supported or not, for
  173. runtime capability detection
  174. - Bugfix: cairnsmore: Fix invalid share detection on LE
  175. - Bugfix: icarus: Fix logging message to not assume "Icarus" always, and use
  176. device driver name
  177. - Bugfix: cairnsmore: Correct frequency scaling detection logic
  178. - cairnsmore: When changing frequency, adjust Hs expectations accordingly
  179. - cairnsmore: Detect availability of frequency scaling, and only enable it
  180. when supported
  181. - cairnsmore: Implement dynamic clocking support for Glasswalker's bitstream
  182. - Update libblkmaker to 0.1.1
  183. - Advertise BFGMiner in blocks found by default (without --coinbase-sig)
  184. - RPC: Add "Coinbase-Sig" to config/setconfig
  185. - New --coinbase-sig option to add arbitrary data to blocks you generate (GBT
  186. only)
  187. - opencl: Defer nonce validity checking to submit_nonce
  188. - scrypt: Implement test_nonce2 and submit_nonce hw error check
  189. - Bugfix: modminer: Convert nonce to native endian
  190. - Interpret any attempts to submit a H-not-zero nonce as a hardware error
  191. - make-release: Strip DLLs and EXE in Windows binary
  192. - dynclock: Use consistent messages for frequency changes
  193. - modminer: Port to dynclock
  194. - dynclock: Split dynamic clocking algorithm out of Ztex driver
  195. - Bugfix: When changing GPU memclock, adjust internal variable so it is
  196. correctly saved to config file
  197. - Bugfix: Re-probe longpoll header for each pool alive check, including
  198. retries when a preferred protocol fails
  199. - Bugfix: modminer: Bitstream binary filenames are *.bit
  200. - modminer: Start frequency off at 200 Mhz
  201. - Reorder libztex header include order to fix missing struct definition.
  202. - Display share difficulty on log with a shortened hash display on submission.
  203. - API stats add some pool getwork difficulty stats
  204. - Ignore any pings pushed to the worker threads if the thread is still paused to
  205. prevent it being enabled and disabled repeatedly.
  206. - Test for sequential getwork failures on a pool that might actually be up but
  207. failing to deliver work as we may end up hammering it repeatedly by mistake.
  208. - reduce windows compile warnings
  209. - util.c - bug - proxy - no data end condition
  210. - API don't change 'Diff1 Shares' - backward compatability FTW
  211. - miner.php highlighting correctly handling difficulty
  212. - API - Add last share difficulty for devices and pool
  213. - Store and report Accepted,Rejected,Stale difficulty in the summary and API
  214. - WorkTime - display prevblock for scrypt
  215. - api.c remove compile warnings
  216. - Calculate work difficulty for each getwork and display with WorkTime debug
  217. - FPGA - allow long or short device names in detect code + style police
  218. - WorkTime - multiple nonce per work and identify the work source
  219. - Optional WorkTime details with each Accepted/Rejected work item
  220. - Icarus - ignore hardware errors in timing mode
  221. - miner.php oops - mistype
  222. - API pgaidentify - unsupported message should be a warning
  223. - API/BFL identify a device - currently only BFL to flash the led
  224. - BFL add throttle count to internal stats + API
  225. - BFL: missing device id in log message
  226. - Bugfix: ztex: Clear device_ztex before freeing it
  227. - Bugfix: ztex: statline existence depends on whether the libztex structure
  228. exists, not whether the cgpu is enabled
  229. - Bugfix: README: Make usermod commands consistent, including important -a
  230. option
  231. - Bugfix: Address a couple of rare TQ leaks, and improve logging a bit
  232. - Bugfix: Properly quote configure options
  233. BFGMiner Version 2.8.0 - September 15, 2012
  234. - Be specific about jansson version requirement
  235. - Replace "Alive" in pool status with protocol in use (GBT or GWork)
  236. - Remove copy of old jansson from source repository
  237. - Honour block template expiry (BIP 23 Basic Pool Extensions "expires")
  238. - Add --no-gbt option so getblocktemplate can be disabled if it causes
  239. problems
  240. - BIP 22 long polling
  241. - Properly detect pool protocol
  242. - Bugfix: Sort out work template refcounting by properly using work_free and
  243. new workcpy
  244. - Support for rolling extranonce in templates
  245. - Initial libblkmaker integration, using a git submodule
  246. - cairnsmore: There's no set hashrate like Icarus, so always use short timing
  247. mode by default
  248. - Bugfix: Include unistd.h needed for ssize_t type
  249. - fpgautils: Don't try to scan serial at all anymore, if a device is claimed
  250. - fpgautils: serial_claim function to politely ask other drivers not to try to
  251. use device
  252. - RPC: Update to work with Cairnsmore
  253. - cairnsmore: Windows autodetect using FTDI library
  254. - cairnsmore: Beginnings of new driver, with automatic upgrade from Icarus
  255. detection
  256. - icarus: Support disabling reopen quirk via --icarus-options
  257. - proxy: Replace mess of encoding proxy into pool URI with a --pool-proxy
  258. option, and use cURL's builtin proxy URI support
  259. - save individual pool proxy settings to config
  260. - API-README update for pools proxy info
  261. - CURL support for individual proxy per pool and all proxy types
  262. - Bugfix: Update current_block_id for fixed set_curblock
  263. - miner.php by default don't display IP/Port numbers in error messages
  264. - api.c all STATUS messages automatically escaped
  265. - API add display of and setting queue,scantime,expiry
  266. - README - FPGA device FAQ
  267. - API add device diff1 work
  268. - count device diff1 shares
  269. - API-README update
  270. - api.c Correct diff1 field name
  271. - Bugfix: Sanitize block hash handling (including fixing on big endian)
  272. - Bugfix: Print the (full) correct block hash when warning about work issued
  273. against old blocks
  274. - Bugfix: When comparing current block, only pay attention to the prevblock
  275. header
  276. - Allow mixing user+pass and userpass, so long as user+pass are balanced
  277. before userpass options
  278. - ztex: Include device serial number and FPGA number in cgpu name field
  279. - ztex: Abstract common cgpu_info creation code
  280. - ztex: Do thread initialization in thread_init rather than thread_prepare
  281. - Bugfix: Tolerate working on old blocks when there is only one pool enabled
  282. - Bugfix: ztex: Detect through fpgautils so -S noauto correctly inhibits
  283. autodetection
  284. - ztex: Workaround duplicate share submissions by doubling "backlog" size
  285. - ztex: Use consistent device ids for logging
  286. - Bugfix: ztex: Increment global hw_errors too
  287. - Bugfix: free adhoc string elist element when removing it from list
  288. - Bugfix: icarus: Initialize lret variable after work restart reentry
  289. - Bugfix: ztex: Free lastnonce heap memory if backlog allocation fails
  290. - icarus: Initialize epoll event structure in a way Valgrind is happier with
  291. - Bugfix: Use strtok_r for parse_config since some options use strtok
  292. themselves
  293. - Import strtok_r from gnulib for Windows portability
  294. - Bugfix: ztex: Don't try to destroy a mutex that was never created (single
  295. FPGA Ztex devices)
  296. - ztex: Clean up redundant dereferencing in ztex_shutdown
  297. - API-README more debug parameter information
  298. - API allow full debug settings control
  299. - Sort the blocks database in reverse order, allowing us to remove the first
  300. block without iterating over them. Output the block number to debug.
  301. - Adjust opencl intensity when adjusting thread count to prevent it getting
  302. pegged at a value below the minimum threads possible.
  303. - miner.h max_hashes -> int64_t
  304. - Keep the local block number in the blocks structs stored and sort them by
  305. number to guarantee we delete the oldest when ageing the block struct entries.
  306. - Use correct sdk version detection for SDK 2.7
  307. - Bugfix: Align Ztex statline properly by removing redundant frequency
  308. - make-release: Convert text files to DOS format for Windows ZIP
  309. BFGMiner Version 2.7.5 - August 27, 2012
  310. - Revert "Do a complete cgminer restart if the ATI Display Library fails, as
  311. it does on windows after running for some time, when fanspeed reporting
  312. fails."
  313. - Stop special-casing worksize default to 256 for Cypress, since it incurs a 5
  314. MH/s hit with stock config
  315. - New "--scan-serial all" feature to probe all enumerated serial ports
  316. - modminer: Revamp dynamic clocking algorithm per request from cablepair
  317. - Test for lagging once more in queue_request to enable work to leak to backup
  318. pools.
  319. - There is no need to try to switch pools in select_pool since the current pool
  320. is actually not affected by the choice of pool to get work from.
  321. - Only clear the pool lagging flag if we're staging work faster than we're using
  322. it.
  323. - needed flag is currently always false in queue_request. Remove it for now.
  324. - thr is always NULL going into queue_request now.
  325. - Fix for non-ADL OpenCL device formatting issue
  326. BFGMiner Version 2.7.4 - August 23, 2012
  327. - Perform select_pool even when not lagging to allow it to switch back if needed
  328. to the primary.
  329. - Simplify macros in output kernels avoiding apparent loops and local variables.
  330. - Carry the needed bool over the work command queue.
  331. - Move the decision to queue further work upstream before threads are spawned
  332. based on fine grained per-pool stats and increment the queued count immediately.
  333. - Track queued and staged per pool once again for future use.
  334. - OpenCL 1.0 does not have native atomic_add and extremely slow support with
  335. atom_add so detect opencl1.0 and use a non-atomic workaround.
  336. - Pools: add RollTime info to API 'stats' and 'Stats' button in miner.php
  337. BFGMiner Version 2.7.3 - August 23, 2012
  338. - Minimise the number of getwork threads we generate.
  339. - Pick worksize 256 with Cypress if none is specified.
  340. - Give warning with sdk2.7 and phatk as well.
  341. - Whitelist sdk2.7 for diablo kernel as well.
  342. - Only keep the last 6 blocks in the uthash database to keep memory usage
  343. constant. Storing more is unhelpful anyway.
  344. - Increase kernel versions signifying changed APIs.
  345. - BFL flash - more FPGA-README
  346. - Check we haven't staged work while waiting for a curl entry before proceeding.
  347. - Use atomic ops to never miss a nonce on opencl kernels, including nonce==0,
  348. also allowing us to make the output buffer smaller.
  349. - Remove compile errors/warnings and document compile/usage in FPGA-README
  350. - Ignore the submit_fail flag when deciding whether to recruit more curls or not
  351. since we have upper bounds on how many curls can be recruited, this test is
  352. redundant and can lead to problems.
  353. - API-README update cgminer version number
  354. - API-README fix groups P: example mistake
  355. - API-README add COIN and other edits
  356. - miner.php allow 'coin' is custom pages
  357. BFGMiner Version 2.7.1 - August 22, 2012
  358. - Update windows build instructions courtesy of sharky.
  359. - Increase max curls to number of mining threads + queue * 2, accounting for up
  360. and downstream comms.
  361. - Queue enough requests to get started.
  362. - There is no point trying to clone_work in get_work() any more since we clone
  363. on every get_work_thread where possible.
  364. - There is no point subtracting 1 from maxq in get_work_thread.
  365. - miner.php allow page title to be defined in myminer.php
  366. - Only set lagging flag once there are no staged work items.
  367. - select_pool does not switch back to the primary once lagging is disabled.
  368. - Increment total work counter under mutex lock.
  369. - Increment the queued count after the curl is popped in case there's a delay
  370. waiting on curls and we think we've queued work when in fact we're waiting on
  371. curls.
  372. - Do the dynamic timing in opencl code over a single pass through scanhash to
  373. make sure we're only getting opencl times contributing to the measured
  374. intervals.
  375. - Increase curl reaping time to 5 minutes since comms between curl requests can
  376. be 2 mins apart with lots of rolltime.
  377. - No need for extra variable in hash_push.
  378. - Remove short options -r and -R to allow them to be reused and remove readme
  379. entries for deprecated options.
  380. - Deprecate the opt_fail_pause parameter, leaving a null placeholder for
  381. existing configurations.
  382. - Free work before retrying in get_work_thread.
  383. - Don't pause after failed getwork, set lagging flag and reassess.
  384. - We should not be pausing in trying to resubmit shares.
  385. - Get rid of the extending fail pause on failed connects since we discard work
  386. after a period.
  387. - get_work always returns true so turn it into a void function.
  388. - get_work never returns false so get rid of fail pause loop.
  389. - Get rid of pause and retry from get_upstream_work so we only do it from one
  390. place.
  391. - Remove all cases where --retries aborts BFGMiner, making it for submission
  392. retries only, where it makes sense.
  393. BFGMiner Version 2.7.0 - August 21, 2012
  394. - Implement a new pool strategy, BALANCE, which monitors work performed per pool
  395. as a rolling average every 10 minutes to try and distribute work evenly over all
  396. the pools. Do this by monitoring diff1 solutions to allow different difficulty
  397. target pools to be treated equally, along with solo mining. Update the
  398. documentation to describe this strategy and more accurately describe the
  399. load-balance one.
  400. - fpga serial I/O extra debug (disabled by default)
  401. - Getwork fail was not being detected. Remove a vast amount of unused variables
  402. and functions used in the old queue request mechanism and redefine the getfail
  403. testing.
  404. - Consider us lagging only once our queue is almost full and no staged work.
  405. - Simplify the enough work algorithm dramatically.
  406. - Only queue from backup pools once we have nothing staged.
  407. - Don't keep queueing work indefinitely if we're in opt failover mode.
  408. - Make sure we don't opt out of queueing more work if all the queued work is
  409. from one pool.
  410. - Set lagging flag if we're on the last of our staged items.
  411. - Reinstate clone on grabbing work.
  412. - Grab clones from hashlist wherever possible first.
  413. - Cull all the early queue requests since we request every time work is popped
  414. now.
  415. - Keep track of staged rollable work item counts to speed up clone_available.
  416. - Make expiry on should_roll to 2/3 time instead of share duration since some
  417. hardware will have very fast share times.
  418. - Check that we'll get 1 shares' worth of work time by rolling before saying we
  419. should roll the work.
  420. - Simplify all those total_secs usages by initialising it to 1 second.
  421. - Overlap queued decrementing with staged incrementing.
  422. - Artificially set the pool lagging flag on pool switch in failover only mode as
  423. well.
  424. - Artificially set the pool lagging flag on work restart to avoid messages about
  425. slow pools after every longpoll.
  426. - Factor in opt_queue value into enough work queued or staged.
  427. - Roll work whenever we can on getwork.
  428. - Queue requests for getwork regardless and test whether we should send for a
  429. getwork from the getwork thread itself.
  430. - Get rid of age_work().
  431. - Don't try to get bitforce temperature if we're polling for a result to
  432. minimise the chance of interleaved responses.
  433. - Fix harmless unused warnings in scrypt.h.
  434. - Check we are not lagging as well as there is enough work in getwork.
  435. BFGMiner Version 2.6.5 - August 20, 2012
  436. - API new command 'coin' with mining information
  437. - Add message to share if it's a resubmit.
  438. - Add virtual adl mapping for when none is specified on the command line to
  439. not crash without a map specified.
  440. - Fix ADL gpu-map not working when there are more ADL devices than openCL.
  441. Patch supplied and tested by Nite69.
  442. - bitforce: Initial import of Linux-only bitforce-firmware-flash utility
  443. - Revert stale-on-arrival failsafe, since it ends up needing exceptions for
  444. everything
  445. - Bugfix: opencl: Declare opencl_dynamic_cleanup in header
  446. - Even if we want to submit stale shares, give up if we have more submissions
  447. waiting on threads (even before failing)
  448. - Even if we want to submit stale shares, give up if they've failed and we
  449. have more submissions waiting on threads
  450. - opencl: Use timeBeginPeriod on Windows to ensure gettimeofday has sufficient
  451. precision for dynamic intensity
  452. - Bugfix: opencl: Move ADL fanspeed warning messages to a new thread to get
  453. around summary-update deadlocking
  454. - README: Note that user groups don't get updated until re-login
  455. - Initialise cnt in libztex.c
  456. - Don't try to start devices that don't support scrypt when scrypt mining.
  457. - Repeating on timeout in ztex could make the code never return.
  458. - Offset libusb reads/writes by length written as well in ztex.
  459. - Cope with timeouts and partial reads in ztex code.
  460. - If there are more devices than nDevs, don't iterate over them as they may
  461. overwrite devices mapped below that with the mapping option.
  462. - Fix README faq on bfl auto-detect.
  463. - Set memory clock based on memdiff if present from with engine changes,
  464. allowing it to parallel manual changes from the menu as well.
  465. - api.c typo
  466. - API allow display/change failover-only setting
  467. - API-README corrections
  468. - miner.php documentation (in API-README) v0.1
  469. - Bugfix: opencl: Show blank device-info statline area if GPU doesn't have
  470. ADL, to fix column alignment
  471. - README: Document usage of 0 to indicate "leave at default" for comma-
  472. delimited GPU options
  473. - Correct API-README versions to match when BFGMiner included them
  474. - API-README update changelog
  475. - Minimise locking and unlocking when getting counts by reusing shared mutex
  476. lock functions.
  477. - Avoid getting more work if by the time the getwork thread is spawned we find
  478. ourselves with enough work.
  479. - The bitforce buffer is cleared and hw error count incremented on return from a
  480. failed send_work already so no need to do it within the send_work function.
  481. - Don't make mandatory work and its clones last forever.
  482. - modminer: Log debug info for nonces found
  483. BFGMiner Version 2.6.4 - August 11, 2012
  484. - Bugfix: Define my_cancellable_getch in miner.h
  485. - Escape " and \ when writing json config file
  486. - miner.php allow a custom page section to select all fields with '*' - e.g. to
  487. create a STATS section on a custom page
  488. - miner.php optional single rig totals (on by default)
  489. - Bugfix: Initialize submitting mutex
  490. - Bugfix: bitforce: Allocate enough space for FTDI description pointers
  491. - Queue one request for each staged request removed, keeping the staged
  492. request count optimal at all times.
  493. - Bugfix: Avoid cancelling threads while locks are held
  494. - Set recognizable names on threads for debugging
  495. - Bugfix: Don't keep making new get_work threads if all pools are dead
  496. - Enable configuring submission thread limit with --submit-threads option
  497. - Bugfix: Limit active submission threads to 0x40 so we don't overflow
  498. - Bugfix: Properly handle switching to pools that aren't on the latest block,
  499. and warn if a pool actively switches to an old block
  500. - Log more details of reasons in stale_work debug messages
  501. - Failsafe against stale-on-arrival work: disable the pool
  502. - Bugfix: Debug message should show "Work stale due to work restart" when it's
  503. not a share
  504. - windows-build: Remove APP SDK section since it is no longer needed
  505. - modminer: HACK: Let last_work handle the end of the work, and start the next
  506. one immediately
  507. - Bugfix: modminer: Remove erroneous "else" statement, to fix hashrate
  508. reporting
  509. - README: Document user group required for FPGAs on Gentoo and Ubuntu
  510. - BFGMiner-specific README adjustments
  511. - Bugfix: opencl: Ignore error getting device ids from platforms unless they
  512. are explicitly chosen
  513. - New --debuglog option to include debug info in stderr logfile even if not in
  514. the console
  515. - Bumped down debhelper compatibility reqs so that this will build on Lucid.
  516. - Updated to match packaging changes.
  517. - Switched to native packages so we don't have to muck around creating fake
  518. upstream tarballs, and can easily generate minor versions for upload to
  519. Launchpad.
  520. - Removed accidentally included debugging line.
  521. - Minor version bump again because of launchpad. Will sort this out for next
  522. release.
  523. - Updated to patch bitforce module issue on Debian/Ubuntu.
  524. - Added local quilt config dir to ignore.
  525. - modminer: Check nonce against previous work, in case of race
  526. - Bugfix: Enable --kernel-path option if ModMiner or Ztex is enabled (even if
  527. no OpenCL)
  528. - Bugfix: Escape backslashes and double-quotes in strings that rightfully may
  529. have them, when writing JSON config file
  530. - Clean object (.o) and dependency (.d) files out of source tree
  531. - Bugfix: bitforce: Don't count hashes that never happened due to throttling
  532. - Bugfix: Deal with serial_open timeout maximum (25.5s)
  533. - - fpgautils: Linux only supports uint8_t decisecond values for timeouts, so
  534. use uint8_t for timeout value; this gets smart compilers to throw warnings
  535. when overflowed in some cases
  536. - - bitforce: Reduce serial timeout to 25 seconds (was 30) and increase job
  537. long timeout to 25 seconds (was 15) to handle throttling gracefully
  538. - modminer: Add debug info to API extra device stats
  539. - modminer: Raise clock speed when there's only good nonces for a while
  540. - modminer: Only print clock speed adjustments when they actually change
  541. - modminer: Increase tolerance for bad nonces to 2%
  542. - modminer: Reset bad-nonce ratio measurement when the clock speed changes
  543. - Bugfix: bitforce: Include the correct device id in "garbled response" warning
  544. - ADL: Add attribution and disclaimer to interfaces
  545. - Cleaned out refs to AMD SDKs.
  546. - Updated README about debian packaging, changelog with minor version bump to
  547. work around Launchpad reqs.
  548. - Updated changelog with Ubuntu release specific version, needed to build for
  549. multiple releases. Also stripped out ADL SDK stuff in the build rules.
  550. - Initial work to adjust debian packaging from cgminer. Should build correctly
  551. now with pbuilder/pdebuild, and include docs.
  552. - Adapt miner code to free ADL structures
  553. - Import free ADL interfaces
  554. - Include scrypt.h in Makefile.
  555. - Fix windows bitforce build.
  556. - Convert the serial autodetect functions to use int instead of char to
  557. enumerate devices.
  558. - Uglify windows autodetect code for BFL.
  559. - There is no point zeroing temperature in BFL if we fail to get a response, and
  560. we should register it as a HW error, suggesting throttling.
  561. - Update SCRYPT README with information about HW errors.
  562. - Use the scrypt CPU code to confirm results from OCL code, and mark failures as
  563. HW errors, making it easier to tune scrypt parameters.
  564. - We may as well leave one curl still available per pool instead of reaping the
  565. last one.
  566. - Display reaped debug message outside mutex lock to avoid recursive locking.
  567. - api.c update API start message and include port number
  568. - miner.php ignore arg when readonly
  569. - miner.php allow pool inputs: delete, addpool, poolpriority
  570. - bitforce: Reopen on communication error
  571. - Bugfix: Calculate hw err percent for the affected FPGA only
  572. - make-release: Adapt to new autogen by using NOCONFIGURE var
  573. BFGMiner Version 2.6.3 - August 6, 2012
  574. - modminer: Relax no-nonces downclocking condition to be more reasonable
  575. - README: Update scrypt configure option
  576. - README: Update configure options
  577. - Bugfix: Display --disable-modminer in configure --help now that it is
  578. enabled by default
  579. - Add specific information when ADL detects error -10 saying the device is not
  580. enabled.
  581. - modminer: Shorten upload warning message to fit better
  582. - modminer: Sending a "ping" first, to workaround bug in new firmware betas
  583. - modminer: Include Hardware Errors and Valid Nonces in extra device status
  584. - Bugfix: modminer: Calculate bad-nonce percentage based only on the same
  585. FPGA's hardware errors, accurately
  586. - modminer: Show bitstream upload progress in statline, and only report to log
  587. every 10%
  588. - modminer: Be more verbose about why the clock is getting reduced
  589. - Document how Icarus golden nonce is handled by other FPGAs
  590. - Rewrite should_run for sched, to properly handle one-shot schedules spanning
  591. midnight
  592. - Bugfix: Check list_empty in pop_curl_entry after condition wait
  593. - Bugfix: Only add new pools to array after completing basic structure
  594. initialization
  595. - If __BFGMINER_SEGFAULT_ERRQUIT is set in the environment, segfault on
  596. non-zero quit()s
  597. - Check against NULL pointers getting into curlring
  598. - modminer: Finish a process results run with a nonce poll, rather than sleep
  599. - modminer: Workaround Windows driver failures
  600. - Count likely throttling episodes on bitforce devices as hardware errors.
  601. - Bugfix: bitforce: Increase serial read timeout to 30 seconds during actual
  602. mining, to tolerate more throttling
  603. - Style cleanups.
  604. - Make pool_disabled the first in the enums == 0, fixing the pool enabled count
  605. which compares if value is not enabled before enabling it.
  606. - Correct writing of scrypt parameters to config file based on command line
  607. parameters only.
  608. - Add scrypt support while writing conf
  609. - Use different variables for command line specified lookup gap and thread
  610. concurrency to differentiate user defined versus auto chosen values.
  611. - Queue a request on pool switch in case we have no work from the new pool yet.
  612. - API remove unused warning in non-GPU compile
  613. - api.c in linux allow to open a closed socket in TIME_WAIT
  614. - Display failover only mode in pool menu and allow it to be toggled live.
  615. - Reinstate check for system queueing lag when the current pool's queue is maxed
  616. out, there is no staged work, and the work is needed now.
  617. - Fix harmless warnings.
  618. - Check the current staged and global queued as well before queueing requests.
  619. Discard stales before ageing work in the watchdog thread. Queue requests after
  620. discarding and ageing work in watchdog thread. Display accurate global queued in
  621. curses output. Reuse variable in age_work().
  622. - The queueing mechanism has become a complex state machine that is no longer
  623. predictable. Rewrite it from scratch watching only current queues in flight and
  624. staged work available on a pool by pool basis.
  625. - Update debian package configs to v2.6.2
  626. - Queue an extra request whenever staged work drops below mining thread count in
  627. hash_pop.
  628. - Bugfix: Initialize logwin to 1 line high temporarily, to avert PDCurses crash
  629. - Enable FPGA support by default, as long as their dependencies are met
  630. - Bugfix: modminer: Search for *ModMiner* in udev ID_MODEL
  631. - make-release: build with --enable-scrypt
  632. - miner.php support custom report section joins
  633. - ICA default fpga_count to work_division if specified
  634. - FPGA-README document new hidden --icarus-options
  635. - ICA support 57600 baud rate, up to 8 FPGA and partial working FPGA boards
  636. - Scrypt mining does not support block testing yet so don't try to print it.
  637. - Clear the bitforce buffer whenever we get an unexpected result as it has
  638. likely throttled and we are getting cached responses out of order, and use the
  639. temperature monitoring as a kind of watchdog to flush unexpected results.
  640. - It is not critical getting the temperature response in bitforce so don't
  641. mandatorily wait on the mutex lock.
  642. - Check there is a cutoff temp actually set in bitforce before using it as a cut
  643. off value otherwise it may think it's set to zero degrees.
  644. - We dropped the temporary stopping of curl recruiting on submit_fail by
  645. mistake, reinstate it.
  646. - Make threads report in either side of the scanhash function in case we miss
  647. reporting in when restarting work.
  648. - Add debugging output when work is found stale as to why.
  649. - Print the 3 parameters that are passed to applog for a debug line in
  650. bitforce.c
  651. - Clear bitforce buffer on init as previously.
  652. - Add some headroom to the number of curls available per pool to allow for
  653. longpoll and sendwork curls.
  654. - Show the correct base units on GPU summary.
  655. - Bugfix: bitforce: 1 decisecond timeout is unreasonably short, give it a
  656. second
  657. - Bugfix: Don't try to log abandon time, since we aren't keeping track
  658. reasonably
  659. - Import uthash 1.9.6
  660. - Bugfix: bitforce: Pause after send_work failures
  661. - Fix comm error handling to not consider work restarts an error condition
  662. - comm error bug fix
  663. - Bugfix: No endian.h on Windows
  664. - Remove unused mkinstalldirs
  665. - Display scrypt as being built in as well.
  666. - Fix build warning about KL_SCRYPT when built without scrypt support.
  667. - News update.
  668. - More scrypt intensity information.
  669. - Minor readme updates.
  670. - Update README with more build instructions.
  671. - Remove the low hash count determinant of hardware being sick. A low hash rate
  672. can be for poor network connectivity or scrypt mining, neither of which are due
  673. to sick hardware.
  674. - Style
  675. - API-README poolpriority changes
  676. - api.c verify poolpriority parameters before changing pools
  677. - api.c poolpriority changes
  678. - Implement shared swap32(yes|tole|tobe) function to handle endian flipping
  679. 32-bit chunks in blocks
  680. - Use correct macros for endian handling code
  681. BFGMiner Version 2.6.1 - July 29, 2012
  682. - Autoselect --scrypt iff all pools send scrypt work
  683. - Adapt SCRYPT-README to BFGMiner (directing Bitcoin donations the correct
  684. direction to reach Con)
  685. - Remove mentions of Litecoin specifically
  686. - Bugfix: Fix build without OpenCL but with scrypt
  687. - make-release: Add SCRYPT-README
  688. - Bump version 2.6.0, adding SCRYPT README to makefile.
  689. - Smarter autogen.sh script.
  690. - Sleeping on intensity decrease is broken, remove it.
  691. - Sleep only the extra amount of time we overran the dynamic interval in dynamic
  692. mode.
  693. - Add scrypt documentation in the form of a separate readme.
  694. - Fix build error without scrypt enabled.
  695. - Limit thread concurrency for scrypt to 5xshaders if shaders is specified.
  696. - Simplify repeated use of gpus[gpu]. in ocl.c
  697. - Find the nearest power of 2 maximum alloc size for the scrypt buffer that can
  698. successfully be allocated and is large enough to accomodate the thread
  699. concurrency chosen, thus mapping it to an intensity.
  700. - Don't make opt_scrypt mandatory blocking with opencl code.
  701. - Update kernel versions reflecting changes in the API.
  702. - Make the thread concurrency and lookup gap options hidden on the command line
  703. and autotune parameters with a newly parsed --shaders option.
  704. - Fix target testing with scrypt kernel as it would have been missing shares
  705. below target.
  706. - Always create the largest possible padbuffer for scrypt kernels even if not
  707. needed for thread_concurrency, giving us some headroom for intensity levels.
  708. - Use the detected maximum allocable memory on a GPU to determine the optimal
  709. scrypt settings when lookup_gap and thread_concurrency parameters are not given.
  710. - Check the maximum allocable memory size per opencl device.
  711. - Add debugging output if buffer allocation fails for scrypt and round up
  712. bufsize to a multiple of 256.
  713. - Nonce testing for btc got screwed up, leading to no accepted shares. Fix it.
  714. - Display size of scrypt buffer used in debug.
  715. - Allow intensities up to 20 if scrypt is compiled in.
  716. - Add name to scrypt kernel copyright.
  717. - Allow lookup gap and thread concurrency to be passed per device and store
  718. details in kernel binary filename.
  719. - Ignore negative intensities for scrypt.
  720. - Change the scale of intensity for scrypt kernel and fix a build warning.
  721. - Correct target value passed to scrypt kernel.
  722. - Use 256 output slots for kernels to allow 1 for each worksize.
  723. - Test the target in the actual scrypt kernel itself saving further
  724. calculations.
  725. - Reinstate GPU only opencl device detection.
  726. - Decrease lookup gap to 1. Does not seem to help in any way being 2.
  727. - Fix build.
  728. - Make pad0 and pad1 local variable in scrypt kernel.
  729. - Constify input variable in scrypt kernel.
  730. - Send correct values to scrypt kernel to get it finally working.
  731. - Create command queue before compiling program in opencl.
  732. - Fix external scrypt algo missing.
  733. - Limit scrypt to 1 vector.
  734. - Handle KL_SCRYPT in config write.
  735. - Get rid of stuff.
  736. - Don't enqueuewrite buffer at all for pad8 and pass work details around for
  737. scrypt in dev_blk.
  738. - Set the correct data for cldata and prepare for pad8 fixes.
  739. - Get rid of spaces in arrays in scrypt kernel.
  740. - Start with smaller amount of hashes in cpu mining to enable scrypt to return
  741. today sometime.
  742. - Free the scratchbuf memory allocated in scrypt and don't check if CPUs are
  743. sick since they can't be. Prepare for khash hash rates in display.
  744. - Add cpumining capability for scrypt.
  745. - Set scrypt settings and buffer size in ocl.c code to be future modifiable.
  746. - Cope with when we cannot set intensity low enough to meet dynamic interval by
  747. inducing a forced sleep.
  748. - Make dynamic and scrypt opencl calls blocking.
  749. - Fix nonce submission code for scrypt.
  750. - Make sure goffset is set for scrypt and drop padbuffer8 to something
  751. manageable for now.
  752. - Set up buffer8 for scrypt.
  753. - Build fix for opt scrypt.
  754. - Don't check postcalc nonce with sha256 in scrypt.
  755. - Don't test nonce with sha and various fixes for scrypt.
  756. - Make scrypt buffers and midstate compatible.
  757. - Use specific output array entries in scrypt kernel.
  758. - Provide initial support for the scrypt kernel to compile with and mine scrypt
  759. with the --scrypt option.
  760. - Enable completely compiling scrypt out.
  761. - Begin import of scrypt opencl kernel from reaper.
  762. BFGMiner Version 2.5.3 - July 29, 2012
  763. - Bugfix: Add zlib1.dll to Win32 release archive
  764. - Bugfix: SICK low-hashrate is now determined by being under 1/3 the runtime
  765. average hashrate
  766. - Bugfix: cpu_set_t is never #defined, so use CPU_ZERO which is a macro
  767. BFGMiner Version 2.5.2 - July 29, 2012
  768. - Limit total number of curls recruited per pool to the number of mining threads
  769. to prevent blasting the network when we only have one pool to talk to.
  770. - Bugfix: Skip writing configuration of range-limited int options with negative
  771. values
  772. - Bugfix: Correctly attempt to load ~/.bfgminer/bfgminer.conf or
  773. ~/.cgminer/cgminer.conf as defaults
  774. - Send X-Minimum-Wait header on longpolls, to explicitly inform pools we will
  775. handle a response with no delay
  776. - bitforce: Abandon (only) stale searches for work restarts
  777. - Keep a counter of enabled pools and use that instead of iterating over the
  778. pool list. Use that value to ensure we don't set the last remaining active pool
  779. to the rejecting state.
  780. - bitforce: Skip out of sending work if work restart requested
  781. - RPC: Writeup on poolpriority command usage
  782. - Bugfix: API: Report errors from poolpriority command
  783. - RPC: New "poolpriority" command to set the order of pool priorities
  784. - strtok_ts: Thread-safe strtok that work on POSIX or Windows
  785. - Bugfix: Supress "caught up" event when first switching to a pool
  786. - Announce and restart work immediately when current pool has caught up to the
  787. current block
  788. - Bugfix: Don't consider work stale due to other pools' longpolls, if
  789. --failover-only is active
  790. - Refactor stale_work function to only flag actual stale shares
  791. - stale_work: Don't factor getwork delay into expiry for shares (only for work
  792. itself)
  793. - Bugfix: Use pool number rather than numeric pointer to strict pool, in block
  794. found notice
  795. - Accept JSON Numbers in config file parameters
  796. - Improve readability of OPT_HASARG in parse_config
  797. - Allow JSON false as a valid value for strictly boolean options
  798. - Include scan-serial in example configuration file
  799. - fpgautils: add support for 57.6 kBd serial
  800. - miner.php add a socket RCV timeout for if cgminer is hung and the API thread
  801. is still running
  802. - BFL force all code to timeout to avoid hanging
  803. - Detach pthread from within the api thread in case it is terminated due to not
  804. being instantiated before pthread_cancel is called from main, leading to a
  805. segfault.
  806. - Initialise mdplatform.
  807. - Find the gpu platform with the most devices and use that if no platform option
  808. is passed.
  809. - Allow more platforms to be probed if first does not return GPUs.
  810. - Bugfix: It is not a hardware error if nonces returned from modminer don't
  811. meet the pool target
  812. - bitforce & icarus: Log detection failures at debug log level, so we don't
  813. confuse users who have different devices (which is why these drivers are
  814. failing detection!)
  815. - Show "WAIT" (LIFE_WAIT status) if a cgpu is idle waiting for work (pool
  816. slow/dead)
  817. - Instead of quitting on failing N retries, just discard the share
  818. - Bugfix: Don't discard stale shares after submission failure, if user or pool
  819. wants stales submitted
  820. - Bugfix: Record discard-during-retry shares in the sharelog
  821. - Bugfix: Only show Algorithm in RPC summary if CPU mining is actually active
  822. - OpenCL: Remove intensity from statline, since it overflowed
  823. - Move "Q" (requested getworks) to second status line as "GW" to balance out
  824. better
  825. - Bugfix: Use a mutex to control non-curses output
  826. - Simplify code to a single vprintf path for curses-less printing
  827. - Move opt_quiet check to my_log_curses, so it works for curses-less builds
  828. - Use log_generic for vapplog to cut down on code duplication
  829. - Add space to log output now that there is more screen real estate available.
  830. - Bugfix: Copy argv[0] given to dirname()
  831. - Find the gpu platform with the most devices and use that if no platform
  832. option is passed.
  833. - Allow more platforms to be probed if first does not return GPUs.
  834. - Detach pthread from within the api thread in case it is terminated due to not
  835. being instantiated before pthread_cancel is called from main, leading to a
  836. segfault.
  837. - Debug output per thread hashrate is out by a factor of 1000.
  838. - Don't check if CPUs are sick since they can't be.
  839. - Calculate midstate in separate function and remove likely/unlikely macros
  840. since they're dependent on pools, not code design.
  841. - Display in debug mode when we're making the midstate locally.
  842. - Bugfix: Document --no-adl and --gpu-platform
  843. - Bugfix: Remove redundant documentation of --auto-fan and --auto-gpu (they
  844. are in GPU-specific options)
  845. - CPU mining may not be included in binaries, but it's not deprecated for
  846. BFGMiner either
  847. - Bugfix: Restore case-insensitivity to input
  848. - Scroll the device list with up/down arrow keys, if it is overflowed
  849. - Use select statement to handle input
  850. - Bugfix: Actually check that the device fits in the individual summary window
  851. before trying to print it
  852. - Bugfix: Fix build without curses but with OpenCL
  853. - Bugfix: Don't show a Temperature key if it isn't known
  854. - BFGMiner-specific NEWS fix
  855. BFGMiner Version 2.5.1 - July 13, 2012
  856. - Replace CPU Algo in header with runtime
  857. - Bugfix: Calculate diff-1 utility to fix utility-hashrate on pools with
  858. diff!=1
  859. - Add utility hashrate to curses display
  860. - Show units in kh, Gh, Th, etc as needed to use at most 3 integer digits
  861. - Use FTD2XX.DLL on Windows to autodetect BitFORCE SHA256 devices
  862. - bitforce_get_result returns -1 on error now.
  863. - Check return value of read in BFgets
  864. - Bugfix: modminer: Count hashes done before work restart
  865. - Bugfix: modminer: Adapt "get nonce" error condition to new scanhash=>-1
  866. error API
  867. - Bugfix: Make our Windows nanosleep/sleep replacements standards-compliant
  868. (which fixes nmsleep) and include compat.h for bitforce (for sleep)
  869. - miner.php fix rig # when miners fail
  870. - Fix whitespace mangling.
  871. - bitforce: Use "full work" vs "nonce range" for kernel name
  872. - Abbrv. correction
  873. - Remove superfluous ave_wait
  874. - Put kname change for broken nonce-range back in
  875. - Add average wait time to api stats
  876. - Revert "Merge branch 'ave_time' of https://github.com/pshep/cgminer.git"
  877. - Add average return time to api stats
  878. - Missed one nonce-range disabling.
  879. - Remove bitforce_thread_init The delay thing does nothing useful... when long
  880. poll comes around, all threads restart at the same time anyway.
  881. - Change timeouts to time-vals for accuracy.
  882. - More BFL tweaks. Add delay between closing and reopening port. Remove buffer
  883. clear in re-init Add kernel type (mini-rig or single)
  884. - Revert "Change BFL driver thread initialising to a constant 100ms delay
  885. between devices instead of a random arrangement."
  886. - Only try to shut down work cleanly if we've successfully connected and started
  887. mining.
  888. - Fix spelling.
  889. - modminer: Firmware returns 0xffffff00 immediately if we set clockspeed too
  890. high
  891. - Bugfix: modminer: Actually count good shares
  892. - Bugfix: Adapt OpenCL scanhash errors to driver API change (errors are now -1,
  893. not 0)
  894. - Remove bitforce_thread_init The delay thing does nothing useful... when long
  895. poll comes around, all threads restart at the same time anyway.
  896. - fix API support for big endian machines
  897. - Bugfix: Use const struct device_api* for mt_disable
  898. - modminer: Show progress of bitstream upload
  899. - Bugfix: Don't declare devices SICK if they're just busy initializing
  900. - Bugfix: Calculate nsec in nmsleep correctly
  901. - miner.php allow rig names in number buttons
  902. - Change BFL driver thread initialising to a constant 100ms delay between
  903. devices instead of a random arrangement.
  904. - Spelling typo.
  905. - Time opencl work from start of queueing a kernel till it's flushed when
  906. calculating dynamic intensity.
  907. - Modify te scanhash API to use an int64_t and return -1 on error, allowing zero
  908. to be a valid return value.
  909. - Check for work restart after the hashmeter is invoked for we lose the hashes
  910. otherwise contributed in the count.
  911. - Remove disabled: label from mining thread function, using a separate
  912. mt_disable function.
  913. - Style changes.
  914. - Cope with signals interrupting the nanosleep of nmsleep.
  915. - Use standard cfsetispeed/cfsetospeed to set baud rate on *nix
  916. - miner.php split() flagged deprecated in PHP 5.3.0
  917. - Bugfix: Use nmsleep instead of restart_wait, so we always wait the full time
  918. - Make long timeout 10seconds on bitforce for when usleep or nanosleep just
  919. can't be accurate...
  920. BFGMiner Version 2.5.0 - July 7, 2012
  921. - Fix BitFORCE driver to not silenty discard valid shares (bug introduced by
  922. CGMiner merges)
  923. - Fix --benchmark not working since the dynamic addition of pools and pool
  924. stats.
  925. - Make disabling BFL nonce range support a warning since it has to be explicitly
  926. enabled on the command line now.
  927. - miner.php allow renaming table headers
  928. - Make bitforce nonce range support a command line option --bfl-range since
  929. enabling it decrease hashrate by 1%.
  930. - Add sanity checking to make sure we don't make sleep_ms less than 0 in
  931. bitforce.
  932. - The fastest minirig devices need a significantly smaller starting sleep time.
  933. - Use a much shorter initial sleep time to account for faster devices and nonce
  934. range working, and increase it if nonce range fails to work.
  935. - Use nmsleep instead of usleep in bitforce.
  936. - Provide a ms based sleep function that uses nanosleep to avoid the inaccuracy
  937. of usleep on SMP systems.
  938. - delay_time_ms is always set so need not be initialised in bitforce.
  939. - Increase bitforce timeout to 10 seconds.
  940. - Add more hysteresis and poll ~5 times to allow for timer delays in bitforce
  941. devices.
  942. - miner.php allow alternating line colours (off by default)
  943. - Display the actual duration of wait when it is greater than the cutoff.
  944. - Set nonce to maximum once we determine nonce range support is broken.
  945. - Initial wait time is always known so no need to zero it beforehand in
  946. bitforce.
  947. - No point counting wait time until the work is actually sent to bitforce
  948. devices.
  949. - Use string comparison functions instead of explicit comparisons.
  950. - Account for wait_ms time when nonce_range is in use on BFL.
  951. - Split nonces up into 1/5 chunks when nonce range is supported.
  952. - limit clear buffer iterations.
  953. - Ad fd check to clear buffer.
  954. - miner.php remove incorrect 'DATE' error message
  955. - miner.php allow summary header in custom pages
  956. - Disable nonce range support in BFL when broken support is detected.
  957. - Restart_wait is only called with a ms value so incorporate that into the
  958. function.
  959. - Only try to adjust dev width when curses is built in.
  960. - miner.php define custom sum fields as a simple array
  961. - Fix off-by-one error in nonce increment in bfl.
  962. - Use BE when setting nonce in bitforce nonce range work.
  963. - Enable nonce range in the normal init sequence for bfl.
  964. - Queue extra work at 2/3 differently depending on whether we're using nonce
  965. range or not.
  966. - Initially enable support for nonce range support on bfl, splitting nonces up
  967. into 3/4 size and only disable it if it fails on work submit.
  968. - Attempt to detect nonce range support in BFL by sending work requring its
  969. support.
  970. - Limit retrying on busy for up to BITFORCE_TIMEOUT_MS
  971. - Attempt to initialise while bitforce device returns BUSY.
  972. - Extend length of string that can be passed to BFL devices.
  973. - Fix signedness warning.
  974. - Adjust device width column to be consistent.
  975. - Use cgpu-> not gpus[] in watchdog thread.
  976. - Add api stats (sleep time)
  977. - Timing tweaks Added long and short timeouts, short for detecting throttling,
  978. long to give up totally. Reset sleep time when device re-initialised Still check
  979. results after timeout Back up a larger time if result on first poll.
  980. - Add API Notify counter 'Comms Error'
  981. - Style police on api.c
  982. - Do all logging outside of the bitforce mutex locking to avoid deadlocks.
  983. - Remove applog call from bfwrite to prevent grabbing nested mutexes.
  984. - Bitforce style changes.
  985. - Minor style changes.
  986. - Remove needless roundl define.
  987. - Made JSON error message verbose.
  988. - Fine-tune timing adjustment. Also remove old work_restart timing.
  989. - Check for gpu return times of >= 0, not just 0, to fix intensity dropping to
  990. -10.
  991. - Restart is zeroed in the mining thread so no need to do it inside the bitforce
  992. code.
  993. - More improvements to comms. BFL return nothing when throttling, so should not
  994. be considered an error. Instead repeat with a longer delay.
  995. - Polling every 10ms there's not much point checking the pthread_cond_timedwait
  996. as it just adds overhead. Simply check the value of work_restart in the bfl main
  997. polling loop.
  998. - Use a pthread conditional that is broadcast whenever work restarts are
  999. required. Create a generic wait function waiting a specified time on that
  1000. conditional that returns if the condition is met or a specified time passed to
  1001. it has elapsed. Use this to do smarter polling in bitforce to abort work, queue
  1002. more work, and check for results to minimise time spent working needlessly.
  1003. - Add busy time to wait time.
  1004. - api.c put version up to 1.14
  1005. - Add tiny delay after writing to BFL Change BFL errors to something more human
  1006. readable Send work busy re-tries after 10ms delay
  1007. - Fix race condition in thread creation that could under some conditions crash
  1008. BFGMiner at startup
  1009. BFGMiner Version 2.4.4 - July 1, 2012
  1010. - Fix builds on non gnu platforms.
  1011. - api.c ensure old mode is always available when not using --api-groups + quit()
  1012. on param errors
  1013. - Implement rudimentary X-Mining-Hashrate support.
  1014. - Detect large swings in temperature when below the target temperature range and
  1015. change fan by amounts dependant on the value of tdiff.
  1016. - Adjust the fanspeed by the magnitude of the temperature difference when in the
  1017. optimal range.
  1018. - Revert "Restarting cgminer from within after ADL has been corrupted only leads
  1019. to a crash. Display a warning only and disable fanspeed monitoring."
  1020. - api.c fix json already closed
  1021. - implement and document API option --api-groups
  1022. - Put upper bounds to under 2 hours that work can be rolled into the future for
  1023. bitcoind will deem it invalid beyond that.
  1024. - define API option --api-groups
  1025. - api.c allow unwell devices to be enabled so they can be cured
  1026. - miner.php - fix/enable autorefresh for custom pages
  1027. - miner.php allow custom summary pages - new 'Mobile' summary
  1028. - Work around pools that advertise very low expire= time inappropriately as this
  1029. leads to many false positives for stale shares detected.
  1030. - Only show ztex board count if any exist.
  1031. - There is no need for work to be a union in struct workio_cmd
  1032. - fpgautils.c include a debug message for all unknown open errors
  1033. - Don't keep rolling work right up to the expire= cut off. Use 2/3 of the time
  1034. between the scantime and the expiry as cutoff for reusing work.
  1035. - Log a specific error when serial opens fail due to lack of user permissions
  1036. - Increase GPU timing resolution to microsecond and add sanity check to ensure
  1037. times are positive.
  1038. - Opencl code may start executing before the clfinish order is given to it so
  1039. get the start timing used for dynamic intensity from before the kernel is
  1040. queued.
  1041. - fpgautils.c - set BAUD rate according to termio spec
  1042. - fpgautils.c - linux ordering back to the correct way
  1043. - miner.php remove unneeded '.'s
  1044. - miner.php add auto refresh options
  1045. - miner.php add 'restart' next to 'quit'
  1046. - miner.php make fontname/size configurable with myminer.php
  1047. - Make the pools array a dynamically allocated array to allow unlimited pools to
  1048. be added.
  1049. - Make the devices array a dynamically allocated array of pointers to allow
  1050. unlimited devices.
  1051. - Dynamic intensity for GPUs should be calculated on a per device basis. Clean
  1052. up the code to only calculate it if required as well.
  1053. - Bugfix: Provide alternative to JSON_ENCODE_ANY for Jansson 1.x
  1054. - Use a queueing bool set under control_lock to prevent multiple calls to
  1055. queue_request racing.
  1056. - Use the work clone flag to determine if we should subtract it from the total
  1057. queued variable and provide a subtract queued function to prevent looping over
  1058. locked code.
  1059. - Don't decrement staged extras count from longpoll work.
  1060. - Count longpoll's contribution to the queue.
  1061. - Increase queued count before pushing message.
  1062. - Test we have enough work queued for pools with and without rolltime
  1063. capability.
  1064. - As work is sorted by age, we can discard the oldest work at regular intervals
  1065. to keep only 1 of the newest work items per mining thread.
  1066. - Roll work again after duplicating it to prevent duplicates on return to the
  1067. clone function.
  1068. - Abstract out work cloning and clone $mining_threads copies whenever a rollable
  1069. work item is found and return a clone instead.
  1070. - api.c display Pool Av in json
  1071. - Take into account average getwork delay as a marker of pool communications
  1072. when considering work stale.
  1073. - Work out a rolling average getwork delay stored in pool_stats.
  1074. - Getwork delay in stats should include retries for each getwork call.
  1075. - Walk through the thread list instead of searching for them when disabling
  1076. threads for dynamic mode.
  1077. - Extend nrolltime to support the expiry= parameter. Do this by turning the
  1078. rolltime bool into an integer set to the expiry time. If the pool supports
  1079. rolltime but not expiry= then set the expiry time to the standard scantime.
  1080. - When disabling fanspeed monitoring on adl failure, remove any twin GPU
  1081. association. This could have been leading to hangs on machines with dual GPU
  1082. cards when ADL failed.
  1083. - modminer: Don't delay 2nd+ FPGAs during work restart
  1084. - Disable OpenCL code when not available.
  1085. - Fix openwrt crashing on regeneratehash() by making check_solve a noop.
  1086. - FPGA - allow device detect override without an open failure
  1087. - Fix sign warning.
  1088. - Bugfix: icarus: properly store/restore info and work end times across longpoll
  1089. restarts
  1090. - Enable modminer for release builds
  1091. BFGMiner Version 2.4.3 - June 14, 2012
  1092. - Change device API "name" to reflect driver name abbreviation instead of device type name
  1093. - miner.php allow a separate user settings file
  1094. - modminer: Implement extended device stats to expose each Board to the RPC API
  1095. - Bugfix: Use new cgpu->thr for longpoll waking
  1096. - bitforce: Remove 4.5s delay before polling starts, since MiniRig finishes sooner
  1097. - FPGA - allow device detect override without an open failure
  1098. - Bugfix: Missing printf value in merge from cgminer
  1099. - Ensure C compiler is in C99 mode
  1100. - Add CPU core count detection for BSD/Mac
  1101. - Set CPU mining idle priority on Windows
  1102. - can_roll and should_roll should have no bearing on the cycle period within the
  1103. miner_thread so remove it.
  1104. - Check for strategy being changed to load balance when enabling LPs.
  1105. - Check that all threads on the device that called get_work are waiting on
  1106. getwork before considering the pool lagging.
  1107. - Iterate over each thread belonging to each device in the hashmeter instead of
  1108. searching for them now that they're a list.
  1109. - When using rotate pool strategy, ensure we only select from alive enabled
  1110. pools.
  1111. - Start longpoll from every pool when load balance strategy is in use.
  1112. - Add mandatory and block fields to the work struct. Flag any shares that are
  1113. detected as blocks as mandatory to submit, along with longpoll work from a
  1114. previously rejecting pool.
  1115. - Consider the fan optimal if fanspeed is dropping but within the optimal speed
  1116. window.
  1117. - Fix typo in some API messages (succeess/success)
  1118. - api.c MMQ stat bugs
  1119. - Bugfix: Fix warnings when built without libudev support
  1120. - Bugfix: slay a variety of warnings
  1121. - Bugfix: modminer: Fix unsigned/signed comparison and similar warnings
  1122. - API add ModMinerQuad support
  1123. - Bugfix: Honour forceauto parameter in serial_detect functions
  1124. - modminer: Temperature sensor improvements
  1125. - modminer: Make log messages more consistent in format
  1126. - Only adjust GPU speed up if the fanspeed is within the normal fanrange and
  1127. hasn't been turned to maximum speed under overheat conditions.
  1128. - ModMiner use valid .name
  1129. - New driver: BTCFPGA ModMiner
  1130. - Abstract generally useful FPGA code into fpgautils.c
  1131. - API add stats for pool getworks
  1132. - miner.php option to hide specific fields from the display
  1133. - miner.php add version numbers to the summary page
  1134. - Update debian configs to v2.4.2
  1135. - Add API and FPGA READMEs into Makefile to be included in source distribution.
  1136. - Icarus - fix unit64_t printf warnings
  1137. BFGMiner Version 2.4.2 - June 2, 2012
  1138. - Use epoll to immediately interrupt Icarus with new work on longpolls (Linux)
  1139. - API.class compiled with Java SE 6.0_03 - works with Win7x64
  1140. - miner.php highlight devs too slow finding shares (possibly failing)
  1141. - API update version to V1.11 and document changes
  1142. - API save default config file if none specified
  1143. - api.c save success incorrectly returns error
  1144. - api.c replace BUFSIZ (linux/windows have different values)
  1145. - Move RPC API content out of README to API-README
  1146. - Open a longpoll connection if a pool is in the REJECTING state as it's the
  1147. only way to re-enable it automatically.
  1148. - Use only one longpoll as much as possible by using a pthread conditional
  1149. broadcast that each longpoll thread waits on and checks if it's the current pool
  1150. before
  1151. - If shares are known stale, don't use them to decide to disable a pool for
  1152. sequential rejects.
  1153. - Restarting cgminer from within after ADL has been corrupted only leads to a
  1154. crash. Display a warning only and disable fanspeed monitoring.
  1155. - Icarus: fix abort calculation/allow user specified abort
  1156. - Icarus: make --icarus-timing hidden and document it in FPGA-README
  1157. - Icarus: high accuracy timing and other bitstream speed support
  1158. - add-MIPSEB-to-icarus-for-BIG_ENDIAN
  1159. - work_decode only needs swab32 on midstate under BIG ENDIAN
  1160. - add compile command to api-example.c
  1161. - save config bugfix: writing an extra ',' when no gpus
  1162. - Add dpkg-source commits
  1163. BFGMiner Version 2.4.1 - May 6, 2012
  1164. - Icarus: Calibrate hashrate yet even more accurately
  1165. - In the unlikely event of finding a block, display the block solved count with
  1166. the pool it came from for auditing.
  1167. - Display the device summary on exit even if a device has been disabled.
  1168. - Use correct pool enabled enums in api.c.
  1169. - Import Debian packaging configs
  1170. - Ensure we test for a pool recovering from idle so long as it's not set to
  1171. disabled.
  1172. - Fix pool number display.
  1173. - Give BFGMiner -T message only if curses is in use.
  1174. - Reinit_adl is no longer used.
  1175. - API 'stats' allow devices to add their own stats also for testing/debug
  1176. - API add getwork stats to BFGMiner - accesable from API 'stats'
  1177. - Don't initialise variables to zero when in global scope since they're already
  1178. initialised.
  1179. - Get rid of unitialised variable warning when it's false.
  1180. - Move a pool to POOL_REJECTING to be disabled only after 3 minutes of
  1181. continuous rejected shares.
  1182. - Some tweaks to reporting and logging.
  1183. - API support new pool status
  1184. - Add a temporarily disabled state for enabled pools called POOL_REJECTING and
  1185. use the work from each longpoll to help determine when a rejecting pool has
  1186. started working again. Switch pools based on the multipool strategy once a pool
  1187. is re-enabled.
  1188. - Removing extra debug
  1189. - Fix the benchmark feature by bypassing the new networking code.
  1190. - Reset sequential reject counter after a pool is disabled for when it is
  1191. re-enabled.
  1192. - ztex updateFreq was always reporting on fpga 0
  1193. - Trying harder to get 1.15y working
  1194. - Specifying threads on multi fpga boards extra cgpu
  1195. - Missing the add cgpu per extra fpga on 1.15y boards
  1196. - API add last share time to each pool
  1197. - Don't try to reap curls if benchmarking is enabled.
  1198. BFGMiner Version 2.4.0 - May 3, 2012
  1199. - Only show longpoll warning once when it has failed.
  1200. - Convert hashes to an unsigned long long as well.
  1201. - Detect pools that have issues represented by endless rejected shares and
  1202. disable them, with a parameter to optionally disable this feature.
  1203. - Bugfix: Use a 64-bit type for hashes_done (miner_thread) since it can overflow
  1204. 32-bit on some FPGAs
  1205. - Implement an older header fix for a label existing before the pthread_cleanup
  1206. macro.
  1207. - Limit the number of curls we recruit on communication failures and with
  1208. delaynet enabled to 5 by maintaining a per-pool curl count, and using a pthread
  1209. conditional that wakes up when one is returned to the ring buffer.
  1210. - Generalise add_pool() functions since they're repeated in add_pool_details.
  1211. - Bugfix: Return failure, rather than quit, if BFwrite fails
  1212. - Disable failing devices such that the user can attempt to re-enable them
  1213. - Bugfix: thread_shutdown shouldn't try to free the device, since it's needed
  1214. afterward
  1215. - API bool's and 1TBS fixes
  1216. - Icarus - minimise code delays and name timer variables
  1217. - api.c V1.9 add 'restart' + redesign 'quit' so thread exits cleanly
  1218. - api.c bug - remove extra ']'s in notify command
  1219. - Increase pool watch interval to 30 seconds.
  1220. - Reap curls that are unused for over a minute. This allows connections to be
  1221. closed, thereby allowing the number of curl handles to always be the minimum
  1222. necessary to not delay networking.
  1223. - Use the ringbuffer of curls from the same pool for submit as well as getwork
  1224. threads. Since the curl handles were already connected to the same pool and are
  1225. immediately available, share submission will not be delayed by getworks.
  1226. - Implement a scaleable networking framework designed to cope with any sized
  1227. network requirements, yet minimise the number of connections being reopened. Do
  1228. this by create a ring buffer linked list of curl handles to be used by getwork,
  1229. recruiting extra handles when none is immediately available.
  1230. - There is no need for the submit and getwork curls to be tied to the pool
  1231. struct.
  1232. - Do not recruit extra connection threads if there have been connection errors
  1233. to the pool in question.
  1234. - We should not retry submitting shares indefinitely or we may end up with a
  1235. huge backlog during network outages, so discard stale shares if we failed to
  1236. submit them and they've become stale in the interim.
  1237. BFGMiner Version 2.3.6 - April 29, 2012
  1238. - Shorten stale share messages slightly.
  1239. - Protect the freeing of current_hash under mutex_lock to prevent racing on it
  1240. when set_curblock is hit concurrently.
  1241. - Change default behaviour to submitting stale, removing the --submit-stale
  1242. option and adding a --no-submit-stale option.
  1243. - Make sure to start the getwork and submit threads when a pool is added on the
  1244. fly. This fixes a crash when a pool is added to running BFGMiner and then
  1245. switched to.
  1246. - Faster hardware can easily outstrip the speed we can get work and submit
  1247. shares when using only one connection per pool.
  1248. - Test the queued list to see if any get/submits are already queued and if they
  1249. are, start recruiting extra connections by generating new threads.
  1250. - This allows us to reuse network connections at low loads but recuit new open
  1251. connections as they're needed, so that BFGMiner can scale to hardware of any
  1252. size.
  1253. BFGMiner Version 2.3.5 - April 28, 2012
  1254. - Restarting BFGMiner leads to a socket that can't be bound for 60 seconds, so
  1255. increase the interval that API binding waits to 30 seconds to minimise the
  1256. number of times it will retry, spamming the logs.
  1257. - Give a longpoll message for any longpoll that detects a block change, primary
  1258. or backup, and also display which pool it was.
  1259. - Decrease utility display to one decimal place.
  1260. - Small cosmetic output alignment.
  1261. - Add pool number to stale share message.
  1262. - Add space to log output now that there is more screen real estate available.
  1263. - Indentation clean up.
  1264. - Remove thread id display from rejected shares as well.
  1265. - Merge pull request #185 from Diapolo/diakgcn
  1266. - add goffset support for diakgcn with -v 1 and update kernel version
  1267. - Set have_longpoll to true when there is at least one pool with longpoll.
  1268. - Don't display the thread ID since it adds no useful information over the
  1269. device number.
  1270. - Don't display the first 8 bytes of a share since they will always be zero at
  1271. >= 1 difficulty.
  1272. - work->longpoll is reset across test_work_current so we need to recheck what
  1273. pool it belongs to.
  1274. - Use longpolls from backup pools with failover-only enabled just to check for
  1275. block changes, but don't use them as work.
  1276. - Start longpoll only after we have tried to extract the longpoll URL.
  1277. - Check for submitold flag on resubmit of shares, and give different message for
  1278. stale shares on retry.
  1279. - Check for submitold before submitstale.
  1280. - Don't force fresh curl connections on anything but longpoll threads.
  1281. - Create one longpoll thread per pool, using backup pools for those pools that
  1282. don't have longpoll.
  1283. - Use the work created from the longpoll return only if we don't have
  1284. failover-enabled, and only flag the work as a longpoll if it is the current
  1285. pool.
  1286. - This will work around the problem of trying to restart the single longpoll
  1287. thread on pool changes that was leading to race conditions.
  1288. - It will also have less work restarts from the multiple longpolls received from
  1289. different pools.
  1290. - Remove the invalid entries from the example configuration file.
  1291. - Add support for latest ATI SDK on windows.
  1292. - Export missing function from libztex.
  1293. - miner.php change socktimeoutsec = 10 (it only waits once)
  1294. - Bugfix: Make initial_args a const char** to satisfy exec argument type warning
  1295. (on Windows only)
  1296. - miner.php add a timeout so you don't sit and wait ... forever
  1297. - Create discrete persistent submit and get work threads per pool, thus allowing
  1298. all submitworks belonging to the same pool to reuse the same curl handle, and
  1299. all getworks to reuse their own handle.
  1300. - Use separate handles for submission to not make getwork potentially delay
  1301. share submission which is time critical.
  1302. - This will allow much more reusing of persistent connections instead of opening
  1303. new ones which can flood routers.
  1304. - This mandated a rework of the extra longpoll support (for when pools are
  1305. switched) and this is managed by restarting longpoll cleanly and waiting for a
  1306. thread join.
  1307. - miner.php only show the current date header once
  1308. - miner.php also add current time like single rig page
  1309. - miner.php display rig 'when' table at top of the multi-rig summary page
  1310. - README - add some Ztex details
  1311. - api.c include zTex in the FPGA support list
  1312. - api.c ensure 'devs' shows PGA's when only PGA code is compiled
  1313. - miner.c sharelog code consistency and compile warning fix
  1314. - README correct API version number
  1315. - README spelling error
  1316. - api.c combine all pairs of sprintfs()
  1317. - api.c uncomment and use BLANK (and COMMA)
  1318. - Code style cleanup
  1319. - Annotating frequency changes with the changed from value
  1320. - README clarification of 'notify' command
  1321. - README update for API RPC 'devdetails'
  1322. - api.c 'devdetails' list static details of devices
  1323. - Using less heap space as my TP-Link seems to not handle this much
  1324. BFGMiner Version 2.3.4 - April 26, 2012
  1325. - New maintainership of code with modular FPGA/GPU focus, under BFGMiner name
  1326. - Complete working support for cross-compiling Windows builds on Linux.
  1327. - Fix usage of low --scan-time settings so it doesn't busy-loop
  1328. - JSON API: Add new 'devdetail' command to get fixed device information
  1329. - JSON API: Implement driver abstraction for extra device status
  1330. - Icarus: Use epoll to wait for serial port input properly, when available
  1331. - Icarus: Workaround buggy USB-UART that causes Icarus to stop mining rarely
  1332. - Icarus: Estimate mining hashrate correctly, calibrated from real-world data
  1333. - Icarus: Parallelize work setup with Icarus hash search improving performance
  1334. - Icarus: More reliable detection and runtime
  1335. - OpenCL: Move GPU-specific data fetching from JSON API to OpenCL driver
  1336. - OpenCL: Dynamically load OpenCL library, to be more vendor-independent and
  1337. allow use without actually having OpenCL (i.e. FPGA-only rigs).
  1338. CGMiner Version 2.3.4 - April 25, 2012
  1339. - Extensively document the cause of GPU device issues and the use of --gpu-map.
  1340. - Support for share logging
  1341. - Detect poorly performing combination of SDK and phatk kernel and add verbose
  1342. warning at startup.
  1343. - Icarus update to new add_cgpu()
  1344. - Icarus driver working with Linux and Windows
  1345. - api.c fix unused variable compile warning
  1346. - Display all OpenCL devices when -n is called as well to allow debugging of
  1347. differential mapping of OpenCL to ADL.
  1348. - Add a --gpu-map option which will allow arbitrarily mapping ADL devices to
  1349. OpenCL devices for instances where association by enumeration alone fails.
  1350. - Increase upper limit on number of extra items to queue as some FPGA code can't
  1351. yet reliably keep many devices busy.
  1352. - Display configuration file information when -c option is passed and only when
  1353. file exists on loading default config file.
  1354. - Display configuration file loaded, if any, and debug output if configuration
  1355. file parsing failed.
  1356. - Add missing ztex header to Makefile for distribution.
  1357. - Document long-form COM port device names on Windows, required to specify
  1358. serial ports above 9
  1359. - Include ztex bitstreams firmware in distribution and install if configured in.
  1360. - Style police on driver-ztex.c
  1361. - work_restart should only be changed by cgminer.c now
  1362. - Shut down the api cleanly when the api thread is cancelled. This should allow
  1363. the api socket to be closed successfully to next be reopened with app_restart.
  1364. - Make a union for cgpu device handles, and rename "device" to "device_ztex"
  1365. since it's Ztex-specific
  1366. - Initialise name variable.
  1367. - Remove unnecessary check for variable that always has memory allocated.
  1368. - Bugfix: Missing "break" no-op in default case
  1369. - Make the status window and log window as large as can fit on startup,
  1370. rechecking to see if it can be enlarged after the fact. This allows any number
  1371. of devices to be displayed provided the window is made long enough without
  1372. corrupting the output.
  1373. - Style police on libztex.c.
  1374. - API add removepool like the screen interface
  1375. - api.c escape required characters in return strings + pools returns the
  1376. username
  1377. - Set lp_path to NULL after free for consistency.
  1378. - Removing dmalloc import left behind by mistake
  1379. - Fixing leak in resp_hdr_cb
  1380. - miner.php warning highlight GPU stats if they are zero (e.g. ADL not enabled)
  1381. - miner.php highlight any device that isn't 'Enabled'
  1382. - miner.php highlight any Status that isn't 'Alive'
  1383. - miner.php optionally support multiple rigs
  1384. - Initial Ztex support 1.15x board.
  1385. CGMiner Version 2.3.3 - April 15, 2012
  1386. - Don't even display that cpumining is disabled on ./configure to discourage
  1387. people from enabling it.
  1388. - Do a complete cgminer restart if the ATI Display Library fails, as it does on
  1389. windows after running for some time, when fanspeed reporting fails.
  1390. - Cache the initial arguments passed to cgminer and implement an attempted
  1391. restart option from the settings menu.
  1392. - Disable per-device status lines when there are more than 8 devices since
  1393. screen output will be corrupted, enumerating them to the log output instead at
  1394. startup.
  1395. - Reuse Vals[] array more than W[] till they're re-initialised on the second
  1396. sha256 cycle in poclbm kernel.
  1397. - Minor variable alignment in poclbm kernel.
  1398. - Make sure to disable devices with any status not being DEV_ENABLED to ensure
  1399. that thermal cutoff code works as it was setting the status to DEV_RECOVER.
  1400. - Re-initialising ADL simply made the driver fail since it is corruption over
  1401. time within the windows driver that's responsible. Revert "Attempt to
  1402. re-initialise ADL should a device that previously reported fanspeed stops
  1403. reporting it."
  1404. - Microoptimise poclbm kernel by ordering Val variables according to usage
  1405. frequency.
  1406. CGMiner Version 2.3.2 - March 31, 2012
  1407. - Damping small changes in hashrate so dramatically has the tendency to always
  1408. make the hashrate underread so go back to gentle damping instead.
  1409. - Revert the crossover of variables from Vals to W in poclbm kernel now that
  1410. Vals are the first declared variables so they're used more frequently.
  1411. - Vals variables appearing first in the array in poclbm is faster.
  1412. - Change the preferred vector width to 1 for Tahiti only, not all poclbm
  1413. kernels.
  1414. - Use a time constant 0.63 for when large changes in hashrate are detected to
  1415. damp change in case the large change is an aliasing artefact instead of a real
  1416. chang
  1417. - Only increment stale counter if the detected stales are discarded.
  1418. - Attempt to re-initialise ADL should a device that previously reported fanspeed
  1419. stops reporting it.
  1420. - Move the ADL setup and clearing to separate functions and provide a reinit_adl
  1421. function to be used when adl fails while running.
  1422. - Use slightly more damping on the decay time function in the never-ending quest
  1423. to smooth off the hashmeter.
  1424. - Set the starting fanspeed to a safe and fairly neutral 50% when autofan is
  1425. enabled.
  1426. - Provide locking around updates of cgpu hashrates as well to prevent multiple
  1427. threads accessing data fields on the same device.
  1428. - Display the beginning of the new block in verbose mode in the logs.
  1429. - Reinstate old diablo kernel variable ordering from 120222, adding only goffset
  1430. and vector size hint. The massive variable ordering change only helped one SDK
  1431. on
  1432. - Change the version number on the correct kernels.
  1433. - api.c devicecode/osinfo incorrectly swapped for json
  1434. - Add extensive instructions on how to make a native windows build.
  1435. - Update version numbers of poclbm and diablo kernels as their APIs have also
  1436. changed.
  1437. - Use global offset parameter to diablo and poclbm kernel ONLY for 1 vector
  1438. kernels.
  1439. - Use poclbm preferentially on Tahiti now regardless of SDK.
  1440. - Remove unused constant passed to poclbm.
  1441. - Clean up use of macros in poclbm and use bitselect everywhere possible.
  1442. - Add vector type hint to diablo kernel.
  1443. - Add worksize and vector attribute hints to the poclbm kernel.
  1444. - Spaces for non-aligned variables in poclbm.
  1445. - More tidying of poclbm.
  1446. - Swap Vals and W variables where they can overlap in poclbm.
  1447. - More tidying of poclbm.
  1448. - Tidy up first half of poclbm.
  1449. - Clean up use of any() by diablo and poclbm kernels.
  1450. - Minor variable symmetry changes in poclbm.
  1451. - Put additions on separate lines for consistency in poclbm.
  1452. - Consolidate last use of W11 into Vals4 in poclbm.
  1453. - Change email due to SPAM
  1454. - api.c miner.php add a '*' to the front of all notify counters - simplifies
  1455. future support of new counters
  1456. - miner.php add display 'notify' command
  1457. - Small change to help arch's without processor affinity
  1458. - Fix bitforce compile error
  1459. - api.c notify should report disabled devices also - of course
  1460. - API returns the simple device history with the 'notify' command
  1461. - code changes for supporting a simple device history
  1462. - api.c Report an OS string in config to help with device issues
  1463. - api.c fix Log Interval - integer in JSON
  1464. - api.c config 'Device Code' to show list of compiled devices + README
  1465. - api.c increase buffer size close to current code allowable limit
  1466. - removed 8-component vector support from kernel, as this is not supported in
  1467. CGMINER anyway
  1468. - forgot to update kernel modification date, fixed ;)
  1469. - reordered an addition in the kernel, which results in less instructions used
  1470. in the GPU ISA code for GCN
  1471. - miner.php: option for readonly or check privileged access
  1472. - Ignore reduntant-with-build options --disable-gpu, --no-adl, and --no-restart
  1473. - miner.php: ereg_replace is DEPRECATED so use preg_replace instead
  1474. - Make curses TUI support optional at compile-time.
  1475. - Bugfix: AC_ARG_WITH provides withval instead of enableval
  1476. - miner.php split devs output for different devices
  1477. - api.c: correct error messages
  1478. - icarus.c modify (regular) timeout warning to only be debug
  1479. - icarus.c set the windows TODO timeout
  1480. - Allow specifying a specific driver for --scan-serial
  1481. - optimized nonce-check and output code for -v 2 and -v 4
  1482. - Bugfix: Check for libudev header (not just library) in configure, and document
  1483. optional dependency
  1484. - Add API support for Icarus and Bitforce
  1485. - Next API version is 1.4 (1.3 is current)
  1486. - README/api.c add "When" the request was processed to STATUS
  1487. - Bugfix: ZLX to read BitFORCE temp, not ZKX -.-
  1488. - Use libudev to autodetect BitFORCE GPUs, if available
  1489. - Use the return value of fan_autotune to set fan_optimal instead of passing it
  1490. as a pointer.
  1491. - Pass the lasttemp from the device we're using to adjust fanspeed in twin
  1492. devices.
  1493. - fix the name to 3 chars, fix the multi-icarus support
  1494. - Bugfix: "-S auto" is the default if no -S is specified, and there is no such
  1495. delay in using it
  1496. - README add information missing from --scan-serial
  1497. - Update README RPC API Version comment
  1498. - Bugfix: Allow enabling CPU even without OpenCL support
  1499. - Change failed-to-mine number of requested shares messge to avoid segfault on
  1500. recursive calling of quit().
  1501. - Get rid of extra char which is just truncated in poclbm kernel.
  1502. - only small code formating changes
  1503. - removed vec_step() as this could lead to errors on older SDKs
  1504. - unified code for generating nonce in kernel and moved addition of base to the
  1505. end -> faster
  1506. CGMiner Version 2.3.1 - February 24, 2012
  1507. - Revert input and output code on diakgcn and phatk kernels to old style which
  1508. worked better for older hardware and SDKs.
  1509. - Add a vector*worksize parameter passed to those kernels to avoid one op.
  1510. - Increase the speed of hashrate adaptation.
  1511. - Only send out extra longpoll requests if we want longpolls.
  1512. - API implement addpool command
  1513. - API return the untouched Total MH also (API now version 1.3)
  1514. - Add enable/disablepool to miner.php example and reduce font size 1pt
  1515. CGMiner Version 2.3.0 - February 23, 2012
  1516. - Consider extra longpoll work items as staged_extra so as to make sure we queue
  1517. more work if queueing regular work items as longpolls.
  1518. - Use diablo kernel on all future SDKs for Tahiti and set preferred vector width
  1519. to 1 on poclbm kernel only.
  1520. - Explicitly type the constants in diakgcn kernel as uint, to be in line with
  1521. poclbm kernel.
  1522. - Reset all hash counters at the same time as resetting start times to get
  1523. accurate hashrates on exiting which is mandatory for benchmarking.
  1524. - Report thread out before it starts to avoid being flagged as sick when waiting
  1525. for the first work item.
  1526. - Don't disable and re-enable devices as they may recover and in the meantime
  1527. have their status set to OFF.
  1528. - API new commands enablepool and disablepool (version already incremented)
  1529. - Tolerate new-format temperature readings for bitforce
  1530. - Modify cgminer.c pool control to allow API to call it
  1531. - Bugfix: Fix BitFORCE driver memory leak in debug logging
  1532. - Extra byte was being unused in poclbm leading to failure on some platforms.
  1533. - Explicitly type the constants in poclbm kernel as uint.
  1534. - Don't save 'include' when saving the configuration
  1535. - Allow configuration file to include another recursively
  1536. - Use the SDK and hardware information to choose good performing default
  1537. kernels.
  1538. - Move phatk kernel to offset vector based nonce bases as well.
  1539. - Add a --benchmark feature which works on a fake item indefinitely to compare
  1540. device performance without any server or networking influence.
  1541. - Allow writing of multiple worksizes to the configuration file.
  1542. - Allow writing of multiple vector sizes to the configuration file.
  1543. - Allow writing of multiple kernels to the configuration file.
  1544. - Allow multiple different kernels to be chosen per device.
  1545. - Allow the worksize to be set per-device.
  1546. - Allow different vectors to be set per device.
  1547. - If we're well below the target temperature, increase gpu engine speed back to
  1548. maximum in case we have gotten lost between profiles during an idle period.
  1549. - We should be setting the value of fan_optimal, not its address.
  1550. - As all kernels will be new versions it's an opportunity to change the .bin
  1551. format and make it simpler. Specifying bitalign is redundant and long can be l.
  1552. - Use any() in kernel output code.
  1553. - Put the nonce for each vector offset in advance, avoiding one extra addition
  1554. in the kernel.
  1555. - Reset times after all mining threads are started to make estimating hashrates
  1556. easier at startup.
  1557. - Bugfix: allow no-exec (NX) stack
  1558. - Fix minor warning.
  1559. - fix the bitforce.c code style follow 1TBS
  1560. - fix icarus.c compile warning
  1561. - small changes to speedup no vec for AMD 898.1 OCL runtime
  1562. - Update licensing to GPL V3.
  1563. - Reset the longpoll flag after it's been used once to prevent it restarting
  1564. work again.
  1565. - Begin import of DiabloMiner kernel.
  1566. - Modify API debug messages to say API instead of DBG
  1567. - When API shuts down cgminer don't kill itself
  1568. - Don't make rolled work from the longpoll be seen as other longpoll work items.
  1569. - API add 'privileged' command so can verify access level
  1570. - Set the lp_sent variable under lock since there will almost always be a race
  1571. on setting this variable, potentially leading to multiple LPs being sent out.
  1572. - API restrict access to all non display commands by default
  1573. - Update API version to 1.2 for new 'Log Interval'
  1574. - API add --log Interval to 'config' reply
  1575. - --api-allow special case 0/0 means all
  1576. CGMiner Version 2.2.7 - February 20, 2012
  1577. - Send out extra longpolls when we have switched pools and the longpoll thread
  1578. is still bound to the old one. This is particularly useful with p2pool where
  1579. longpolls do not correlate with main bitcoin block change and would have led to
  1580. high reject rates on failover.
  1581. - Store whether a work item is the result of a longpoll or not in struct work
  1582. and use it to help determine block changes directly from the work longpoll bool.
  1583. - Keep track of when a longpoll has been sent for a pool and if the current pool
  1584. is requesting work but has not sent a longpoll request, convert one of the work
  1585. items to a longpoll.
  1586. - Store the longpoll url in the pool struct and update it from the pool_active
  1587. test in case it changes. This is to allow further changes to longpoll management
  1588. on switching pools.
  1589. - Re-check for a longpoll supporting pool every 30 seconds if none is found
  1590. initially.
  1591. - Report threads as busy waiting on getwork on startup to avoid them being
  1592. flagged sick on startup during slow networking.
  1593. - Allow devices that are disabled due to overheating to be flagged as recovering
  1594. instead of disabling them and re-enable them if they're below ideal temperatures
  1595. - Tahiti prefers worksize 64 with poclbm.
  1596. - No need to expressly retain the opencl program now that the zero binary issue
  1597. is fixed. This actually fixes cgminer to work with the latest SDK included with
  1598. the ATI catalyst driver 12.2.
  1599. - Show error code on any opencl failure status.
  1600. - Add detection for version 898.1 SDK as well but only give SDK 2.6 warning once
  1601. on startup instead of with each device initialisation.
  1602. - Always use a fresh connection for longpoll as prolonged persistent connections
  1603. can fail for many reasons.
  1604. - Keep track of intended engine clock speed and only adjust up if it's higher
  1605. than the last intended speed. This avoids setting the clock speed to one
  1606. relative to a lower profile one by mistake.
  1607. - Use gpu-memdiff on startup if an engine clockspeed is set and a memdiff value
  1608. is set.
  1609. - Revert "Adjust engine speed up according to performance level engine setting,
  1610. not the current engine speed." - ineffectual.
  1611. - Freeze the queues on all threads that are sent the pause message to prevent
  1612. them trying to start up again with saved pings in their queues.
  1613. - Updates to diakgcn kernel/
  1614. - Consolidate all screen updates to the watchdog thread and touch both windows
  1615. before refresh.
  1616. - Curses will be disabled in clean_up so don't do it early in kill_work, and
  1617. disable_adl so that GPU settings may be restored to normal in case shutting down
  1618. curses leads to instability on windows.
  1619. - Stop the mining threads before trying to kill them.
  1620. - Plain refresh() does not give reliably screen updates so get rid of all uses
  1621. of it.
  1622. - First release with working diakgcn kernel.
  1623. CGMiner Version 2.2.6 - February 16, 2012
  1624. - Provide warning on each startup about sdk 2.6
  1625. - Fix unused warnings on win32.
  1626. - bitforce: Simplify BFopen WIN32 ifdef/else
  1627. - Fix initialization warning with jansson 1.3
  1628. - bitforce: Cleanup extraneous TODO that isn't needed
  1629. - Move tcsetattr (and new tcflush) into *nix BFopen to simplify things a bit
  1630. - Add message explaining 2nd thread disabling for dynamic mode and how to tune
  1631. it.
  1632. - Move logwindow down once number of devices is known.
  1633. - Automatically choose phatk kernel for bitalign non-gcn ATI cards, and then
  1634. only select poclbm if SDK2.6 is detected.
  1635. - Allow the refresh interval to be adjusted in dynamic intensity with a
  1636. --gpu-dyninterval parameter.
  1637. - Make curses display visible right from the beginning and fix the window sizes
  1638. so the initial messages don't get lost once the status window is drawn.
  1639. - The amount of work scanned can fluctuate when intensity changes and since we
  1640. do this one cycle behind, we increment the work more than enough to prevent
  1641. repeati
  1642. - bitforce: Set a 30 second timeout for serial port on Windows, since the
  1643. default is undefined
  1644. - Use PreVal4addT1 instead of PreVal4 in poclbm kernel.
  1645. - Import PreVal4 and PreVal0 into poclbm kernel.
  1646. - Import more prepared constants into poclbm kernel.
  1647. - Keep variables in one array but use Vals[] name for consistency with other
  1648. kernel designs.
  1649. - Replace constants that are mandatorily added in poclbm kernel with one value.
  1650. - Remove addition of final constant before testing for result in poclbm kernel.
  1651. - Hand optimise variable addition order.
  1652. - Hand optimise first variable declaration order in poclbm kernel.
  1653. - Radical reordering machine based first pass to change variables as late as
  1654. possible, bringing their usage close together.
  1655. - fix strcpy NULL pointer if env HOME unset.
  1656. - bitforce: Disable automatic scanning when at least one device is specified
  1657. manually
  1658. - Unroll all poclbm additions to enable further optimisations.
  1659. CGMiner Version 2.2.5 - February 13, 2012
  1660. - Make output buffer write only as per Diapolo's suggestion.
  1661. - Constify nonce in poclbm.
  1662. - Use local and group id on poclbm kernel as well.
  1663. - Microoptimise phatk kernel on return code.
  1664. - Adjust engine speed up according to performance level engine setting, not the
  1665. current engine speed.
  1666. - Try to load a binary if we've defaulted to the poclbm kernel on SDK2.6
  1667. - Use the poclbm kernel on SDK2.6 with bitalign devices only if there is no
  1668. binary available.
  1669. - Further generic microoptimisations to poclbm kernel.
  1670. - The longstanding generation of a zero sized binary appears to be due to the
  1671. OpenCL library putting the binary in a RANDOM SLOT amongst 4 possible binary
  1672. locations. Iterate over each of them after building from source till the real
  1673. binary is found and use that.
  1674. - Fix harmless warnings with -Wsign-compare to allow cgminer to build with -W.
  1675. - Fix missing field initialisers warnings.
  1676. - Put win32 equivalents of nanosleep and sleep into compat.h fixing sleep() for
  1677. adl.c.
  1678. - Restore compatibility with Jansson 1.3 and 2.0 (api.c required 2.1)
  1679. - Modularized logging, support for priority based logging
  1680. - Move CPU chipset specific optimization into device-cpu
  1681. CGMiner Version 2.2.4 - February 11, 2012
  1682. - Fix double definition of A0 B0 to zeroA zeroB.
  1683. - Retain cl program after successfully loading a binary image. May decrease
  1684. failures to build kernels at startup.
  1685. - Variable unused after this so remove setting it.
  1686. - BFI INT patching is not necessarily true on binary loading of files and not
  1687. true on ATI SDK2.6+. Report bitalign instead.
  1688. - Various string fixes for reject reason.
  1689. - Generalize --temp-cutoff and implement support for reading temperature from
  1690. BitFORCE FPGAs
  1691. - Change message from recovered to alive since it is used on startup as well as
  1692. when a pool has recovered.
  1693. - Start mining as soon as any pool is found active and rely on the watchpool
  1694. thread to bring up other pools.
  1695. - Delayed responses from testing pools that are down can hold up the watchdog
  1696. thread from getting to its device testing code, leading to false detection of
  1697. the GPU not checking in, and can substantially delay auto gpu/auto fan
  1698. management leading to overheating. Move pool watching to its own thread.
  1699. - Bugfix: BitFORCE index needs to be static to count correctly
  1700. - Space out retrieval of extra work according to the number of mining threads.
  1701. - Make shutdown more robust. Enable the input thread only after the other
  1702. threads exist. Don't kill off the workio thread and use it to exit main() only
  1703. if there is an unexpected problem. Use kill_work() for all anticipated shutdowns
  1704. where possible. Remove unused thread entry.
  1705. - Change poclbm version number.
  1706. - One array is faster than 2 separate arrays so change to that in poclbm kernel.
  1707. - Microoptimisations to poclbm kernel which increase throughput slightly.
  1708. - Import diablominer kernel. Currently disabled as not working.
  1709. - Import diapolo kernel. Currently disabled as not working.
  1710. - Conflicting entries of cl_kernel may have been causing problems, and
  1711. automatically chosen kernel type was not being passed on. Rename the enum to
  1712. cl_kernels and store the chosen kernel in each clState.
  1713. - Set cl_amd_media_ops with the BITALIGN flag and allow non-bitselect devices to
  1714. build.
  1715. - ALlow much longer filenames for kernels to load properly.
  1716. - Allow different kernels to be used by different devices and fix the logic fail
  1717. of overcorrecting on last commit with !strstr.
  1718. - Fix kernel selection process and build error.
  1719. - queue_phatk_kernel now uses CL_SET_VARG() for base-nonce(s), too
  1720. - added OpenCL >= 1.1 detection code, in preparation of OpenCL 1.1 global offset
  1721. parameter support
  1722. - Use K array explicitly to make it clear what is being added.
  1723. - Work items have a tendency to expire at exactly the same time and we don't
  1724. queue extra items when there are plenty in the queue, regardless of age. Allow
  1725. extra work items to be queued if adequate time has passed since we last
  1726. requested work even if over the limit.
  1727. - Discard work when failover-only is enabled and the work has come from a
  1728. different pool.
  1729. - Missing include to build on newer mingw32.
  1730. - Move from the thread safe localtime_r to regular localtime which is the only
  1731. one supported on newer pthread libraries on mingw32 to make it compile with the
  1732. newer ming. Thread safety is of no importance where localtime is used in this
  1733. code.
  1734. - Define in_addr_t in windows if required
  1735. - sys/wait.h not required in windows
  1736. - Allow API to restrict access by IP address
  1737. - Add pool switching to example miner.php
  1738. - Display X-Reject-Reason, when provided
  1739. - Remove the test for whether the device is on the highest profil level before
  1740. raising the GPU speed as it is ineffectual and may prevent raising the GPU
  1741. speed.
  1742. - Remove unnecessary check for opt_debug one every invocation of applog at
  1743. LOG_DEBUG level and place the check in applog().
  1744. CGMiner Version 2.2.3 - February 6, 2012
  1745. - Revert "Rewrite the convoluted get_work() function to be much simpler and roll
  1746. work as much as possible with each new work item." This seems to cause a race on
  1747. work in free_work(). Presumably other threads are still accessing the structure.
  1748. CGMiner Version 2.2.2 - February 6, 2012
  1749. - Provide support for the submitold extension on a per-pool basis based on the
  1750. value being detected in a longpoll.
  1751. - Don't send a ping to a dynamic device if it's not enabled as that will just
  1752. enable it for one pass and then disable it again.
  1753. - Rewrite the convoluted get_work() function to be much simpler and roll work as
  1754. much as possible with each new work item.
  1755. - Roll as much work as possible from the work returned from a longpoll.
  1756. - Rolling work on each loop through the mining thread serves no purpose.
  1757. - Allow to stage more than necessary work items if we're just rolling work.
  1758. - Replace divide_work with reuse_work function used twice.
  1759. - Give rolled work a new ID to make sure there is no confusion in the hashtable
  1760. lookups.
  1761. - Remove now-defunct hash_div variables.
  1762. - Remove unused get_dondata function.
  1763. - Silence ADL warnings.
  1764. - Silence unused parameter warnings.
  1765. - Stagger the restart of every next thread per device to keep devices busy ahead
  1766. of accessory threads per device.
  1767. - Deprecate the --donation feature. Needlessly complex, questionable usefulness,
  1768. depends on author's server and a central pool of some kind, and was not heavily
  1769. adopted.
  1770. - It's devices that report back now, not threads, update message.
  1771. - Continue auto-management of fan and engine speeds even if a device is disabled
  1772. for safety reasons.
  1773. - No need to check we're highest performance level when throttling GPU engine
  1774. speed.
  1775. - Abstract out tests for whether work has come from a block that has been seen
  1776. before and whether a string is from a previously seen block.
  1777. - Probe but don't set the timeout to 15 seconds as some networks take a long
  1778. time to timeout.
  1779. - Remove most compiler warnings from api.c
  1780. - Add last share's pool info in cgpu_info
  1781. - Allow the OpenCL platform ID to be chosen with --gpu-platform.
  1782. - Iterate over all platforms displaying their information and number of devices
  1783. when --ndevs is called.
  1784. - Deprecate main.c
  1785. - Some networks can take a long time to resolve so go back to 60 second timeouts
  1786. instead of 15.
  1787. - Only enable curses on failure if curses is desired.
  1788. - Fix warnings in bitforce.c
  1789. - Bugfix: Need to open BitForce tty for read-write
  1790. - Fix various build issues.
  1791. - Modularize code: main.c -> device-cpu + device-gpu
  1792. - Fix phatk kernel not working on non-bitalign capable devices (Nvidia, older
  1793. ATI).
  1794. - Update poclbm kernel for better performance on GCN and new SDKs with bitalign
  1795. support when not BFI INT patching. Update phatk kernel to work properly for non
  1796. BFI INT patched kernels, providing support for phatk to run on GCN and non-ATI
  1797. cards.
  1798. - Return last accepted share pool/time for devices
  1799. - Display accepted share pool/time for CPUs
  1800. - Bug intensity always shows GPU 0
  1801. - Update example web miner.php to use new API commands
  1802. CGMiner Version 2.2.1 - January 30, 2012
  1803. NOTE - The GPU Device reordering in 2.2.0 by default was considered a bad idea
  1804. so the original GPU ordering is used by default again unless reordering is
  1805. explicitly requested.
  1806. - Fix bitforce failing to build into cgminer.
  1807. - Add missing options to write config function.
  1808. - Add a --gpu-reorder option to only reorder devices according to PCI Bus ID
  1809. when requested.
  1810. - Fix for midstate support being broken on pools that supported no-midstate
  1811. work by ensuring numbers are 32 bits in sha2.c
  1812. - Set virtual GPUs to work when ADL is disabled or all mining will occur on GPU
  1813. 0.
  1814. - Add information about paused threads in the menu status.
  1815. - Disable all but the first thread on GPUs in dynamic mode for better
  1816. interactivity.
  1817. - Set the latest network access time on share submission for --net-delay even if
  1818. we're not delaying that submission for further network access.
  1819. - Clear adl on exiting after probing values since it may attempt to overclock.
  1820. - As share submission is usually staggered, and delays can be costly, submit
  1821. shares without delay even when --net-delay is enabled.
  1822. - Display GPU number and device name when ADL is successfully enabled on it.
  1823. - Display GPU ordering remapping in verbose mode.
  1824. - Don't fail in the case the number of ADL and OpenCL devices do not match, and
  1825. do not attempt to reorder devices unless they match. Instead give a warning
  1826. about
  1827. - Display error codes should ADL not return ADL_OK in the more critical function
  1828. calls.
  1829. - Fix unused warning.
  1830. - Fix compile warnings in api.c
  1831. - Add extensive ADL based device info in debug mode.
  1832. - Make --ndevs display verbose opencl information as well to make debugging
  1833. version information easier.
  1834. - Display information about the opencl platform with verbose enabled.
  1835. - Explicitly check for nvidia in opencl platform strings as well.
  1836. CGMiner Version 2.2.0 - January 29, 2012
  1837. NOTE: GPU Device order will change with this release with ATI GPUs as cgminer
  1838. now can enumerate them according to their Bus ID which means the values should
  1839. now correlate with their physical position on the motherboard.
  1840. - Default to poclbm kernel on Tahiti (7970) since phatk does not work, even
  1841. though performance is sub-standard so that at least it will mine successfully by
  1842. defau
  1843. - Retain cl program after every possible place we might build the program.
  1844. - Update ADL SDK URL.
  1845. - Fix potential overflow.
  1846. - Map GPU devices to virtual devices in their true physical order based on
  1847. BusNumber.
  1848. - Change the warning that comes with failure to init cl on a device to be more
  1849. generic and accurate.
  1850. - Advertise longpoll support in X-Mining-Extensions
  1851. - Detect dual GPU cards by iterating through all GPUs, finding ones without
  1852. fanspeed and matching twins with fanspeed one bus ID apart.
  1853. - Do not attempt to build the program that becomes the kernel twice. This could
  1854. have been leading to failures on initialising cl.
  1855. - Some opencl compilers have issues with no spaces after -D in the compiler
  1856. options.
  1857. - Allow intensity up to 14.
  1858. - Use calloced stack memory for CompilerOptions to ensure sprintf writes to the
  1859. beginning of the char.
  1860. - Whitelist 79x0 cards to prefer no vectors as they perform better without.
  1861. - Adjust fan speed gently while in the optimal range when temperature is
  1862. drifting to minimise overshoot in either direction.
  1863. - Detect dual GPU cards via the indirect information of - 1st card has a fan
  1864. controller. 2nd card does not have a fan controller, cards share the same device
  1865. name
  1866. - Instead of using the BFI_INT patching hack on any device reporting
  1867. cl_amd_media_ops, create a whitelist of devices that need it. This should enable
  1868. GCN architec
  1869. - Fixed API compiling issue on OS X
  1870. - Add more explanation of JSON format and the 'save' command
  1871. - Return an error if using ADL API commands when it's not available
  1872. - Read off lpThermalControllerInfo from each ADL device.
  1873. - Add ADL_Overdrive5_ThermalDevices_Enum interface.
  1874. - Add API commands: config, switchpool, gpu settings, save
  1875. - Implement socks4 proxy support.
  1876. - Fix send() for JSON strings
  1877. - Introduce a --net-delay option which guarantees at least 250ms between any
  1878. networking requests to not overload slow routers.
  1879. - Generalise locking init code.
  1880. - Allow invalid values to be in the configuration file, just skipping over them
  1881. provided the rest of the file is valid JSON. This will allow older configurat
  1882. - Allow CPU mining explicitly enable only if other mining support is built in.
  1883. - BitForce FPGA support
  1884. - Configure out building and support of all CPU mining code unless
  1885. --enable-cpumining is enabled.
  1886. - Allow parsed values to be zero which will allow 0 values in the config file to
  1887. work.
  1888. - Advertise that we can make our own midstate, so the pool can skip generating
  1889. it for us
  1890. - Refactor the CPU scanhash_* functions to use a common API. Fixes bugs.
  1891. - Don't consider a pool lagging if a request has only just been filed. This
  1892. should decrease the false positives for "pool not providing work fast enough".
  1893. - Invalidating work after longpoll made hash_pop return no work giving a false
  1894. positive for dead pool. Rework hash_pop to retry while finds no staged work u
  1895. - Remove TCP_NODELAY from curl options as many small packets may be contributing
  1896. to network overload, when --net-delay is enabled.
  1897. - Refactor miner_thread to be common code for any kind of device
  1898. - Simplify submit_nonce loop and avoid potentially missing FOUND - 1 entry.
  1899. Reported by Luke-Jr.
  1900. - Micro-optimisation in sha256_sse2 code courtesy of Guido Ascioti
  1901. guido.ascioti@gmail.com
  1902. - Refactor to abstract device-specific code
  1903. CGMiner Version 2.1.2 - January 6, 2012
  1904. - If api-description is specified, save it when writing the config file
  1905. - Adjust utility width to be constant maximum as well.
  1906. - Add percent signs to reject ratio outputs
  1907. - Should the donation pool fail, don't make the fallover pool behave as though
  1908. the primary pool is lagging.
  1909. - Use an alternative pool should the donation getwork fail.
  1910. CGMiner Version 2.1.1 - January 1, 2012
  1911. - Include API examples in distribution tarball.
  1912. - Don't attempt to pthread_join when cancelling threads as they're already
  1913. detached and doing so can lead to a segfault.
  1914. - Give more generic message if slow pool at startup is the donation pool.
  1915. - Continue to attempt restarting GPU threads if they're flagged dead at 1 min.
  1916. intervals.
  1917. - Don't attempt to restart sick flagged GPUs while they're still registering
  1918. activity.
  1919. - Make curl use fresh connections whenever there is any communication issue
  1920. in case there are dead persistent connections preventing further comms from
  1921. working.
  1922. - Display pool in summary if only 1 pool.
  1923. - Adjust column width of A/R/HW to be the maximum of any device and align them.
  1924. CGMiner Version 2.1.0 - December 27, 2011
  1925. - Major infrastructure upgrade with RPC interface for controlling via sockets
  1926. encoded with/without JSON courtesy of Andrew Smith. Added documentation for
  1927. use of the API and sample code to use with it.
  1928. - Updated linux-usb-cgminer document.
  1929. - Rewrite of longpoll mechanism to choose the current pool wherever possible to
  1930. use for the longpoll, or any pool that supports longpoll if the current one
  1931. does not.
  1932. - Display information about longpoll when the chosen server has changed.
  1933. - Fix the bug where longpoll generated work may have been sent back to the
  1934. wrong pool, causing rejects.
  1935. - Fix a few race conditions on closing cgminer which caused some of the crashes
  1936. on exit.
  1937. - Only adjust gpu engine speed in autotune mode if the gpu is currently at the
  1938. performance level of that being adjusted.
  1939. - Various fixes for parsing/writing of configuration files.
  1940. - Do not add blank lines for threads of unused CPUs.
  1941. - Show which pool is unresponsive on startup.
  1942. - Only show GPU management menu item if GPUs are in use.
  1943. - Align most device columns in the curses display.
  1944. CGMiner Version 2.0.8 - November 11, 2011
  1945. - Make longpoll do a mandatory flushing of all work even if the block hasn't
  1946. changed, thus supporting longpoll initiated work change of any sort and merged
  1947. mining.
  1948. - Byteswap computed hash in hashtest so it can be correctly checked. This fixes
  1949. the very rare possibility that a block solve on solo mining was missed.
  1950. - Add x86_64 w64 mingw32 target
  1951. - Allow a fixed speed difference between memory and GPU clock speed with
  1952. --gpu-memdiff that will change memory speed when GPU speed is changed in
  1953. autotune mode.
  1954. - Don't load the default config if a config file is specified on the command
  1955. line.
  1956. - Don't build VIA on apple since -a auto bombs instead of gracefully ignoring
  1957. VIA failing.
  1958. - Build fix for dlopen/dlclose errors in glibc.
  1959. CGMiner Version 2.0.7 - October 17, 2011
  1960. - Support work without midstate or hash1, which are deprecated in bitcoind 0.5+
  1961. - Go to kernel build should we fail to clCreateProgramWithBinary instead of
  1962. failing on that device. This should fix the windows problems with devices not
  1963. initialising.
  1964. - Support new configuration file format courtesy of Chris Savery which can write
  1965. the config file from the menu and will load it on startup.
  1966. - Write unix configuration to .cgminer/cgminer.conf by default and prompt to
  1967. overwrite if given a filename from the menu that exists.
  1968. CGMiner Version 2.0.6 - October 9, 2011
  1969. - Must initialise the donorpool mutex or it fails on windows.
  1970. - Don't make donation work interfere with block change detection allowing
  1971. donation to work regardless of the block chain we're mining on.
  1972. - Expire shares as stale with a separate timeout from the scantime, defaulting
  1973. to 120 seconds.
  1974. - Retry pools after a delay of 15 seconds if none can be contacted on startup
  1975. unless a key is pressed.
  1976. - Don't try to build adl features without having adl.
  1977. - Properly check shares against target difficulty - This will no longer show
  1978. shares when solo mining at all unless they're considered to be a block solve.
  1979. - Add altivec 4 way (cpu mining) support courtesy of Gilles Risch.
  1980. - Try to use SSL if the server supports it.
  1981. - Display the total solved blocks on exit (LOL if you're lucky).
  1982. - Use ADL activity report to tell us if a sick GPU is still busy suggesting it
  1983. is hard hung and do not attempt to restart it.
  1984. CGMiner Version 2.0.5 - September 27, 2011
  1985. - Intensity can now be set to dynamic or static values per-device.
  1986. - New donation feature --donation sends a proportion of shares to author's
  1987. account of choice, but is disabled by default!
  1988. - The hash being displayed and block detection has been fixed.
  1989. - Devices not being mined on will not attempt to be ADL managed.
  1990. - Intensity is now displayed per GPU device.
  1991. - Make longpoll attempt to restart as often as opt_retries specifies.
  1992. - We weren't rolling work as often as we could.
  1993. - Correct some memory management issues.
  1994. - Build fixes.
  1995. - Don't mess with GPUs if we don't have them.
  1996. CGMiner Version 2.0.4 - September 23, 2011
  1997. - Confused Longpoll messages should be finally fixed with cgminer knowing for
  1998. sure who found the new block and possibly avoiding a rare crash.
  1999. - Display now shows the actual hash and will say BLOCK! if a block is deemed
  2000. solved.
  2001. - Extra spaces, which would double space lines on small terminals, have been
  2002. removed.
  2003. - Fan speed change is now damped if it is already heading in the correct
  2004. direction to minimise overshoot.
  2005. - Building without opencl libraries is fixed.
  2006. - GPUs are autoselected if there is only one when in the GPU management menu.
  2007. - GPU menu is refreshed instead of returning to status after a GPU change.
  2008. CGMiner Version 2.0.3 - September 17, 2011
  2009. - Various modes of failure to set fanspeeds and adl values have been addressed
  2010. and auto-fan should work now on most hardware, and possibly other values
  2011. which previously would not have worked.
  2012. - Fixed a crash that can occur on switching pools due to longpoll thread races.
  2013. - Use ATISTREAMSDKROOT if available at build time.
  2014. - Fanspeed management is returned to the driver default on exit instead of
  2015. whatever it was when cgminer was started.
  2016. - Logging of events deemed WARNING or ERR now will display even during
  2017. periods where menu input is being awaited on.
  2018. CGMiner Version 2.0.2 - September 11, 2011
  2019. - Exit cleanly if we abort before various threads are set up or if they no
  2020. longer exist.
  2021. - Fix a rare crash in HASH_DEL due to using different mutexes to protect the
  2022. data.
  2023. - Flag devices that have never started and don't allow enabling of devices
  2024. without restarting them.
  2025. - Only force the adapter speed to high if we've flagged this device as being
  2026. managed.
  2027. - Flag any devices with autofan or autogpu as being managed.
  2028. - Use a re-entrant value to store what fanspeed we're trying to set in case the
  2029. card doesn't support small changes. Force it to a multiple of 10% if it
  2030. fails on trying to speed up the fan.
  2031. - Do not bother resetting values to old ones if changes to GPU parameters report
  2032. failure, instead returning a failure code only if the return value from get()
  2033. differs.
  2034. - Remove redundant check.
  2035. - Only display supported values from fanspeed on change settings.
  2036. - Missing bracket from output.
  2037. - Display fan percentage on devices that only support reporting percent and not
  2038. RPM.
  2039. - Properly substitute DLOPEN flags to build with ADL support when -ldl is needed
  2040. and not when opencl is not found.
  2041. CGMiner Version 2.0.1 - September 9, 2011
  2042. - Fix building on 32bit glibc with dlopen with -lpthread and -ldl
  2043. - ByteReverse is not used and the bswap opcode breaks big endian builds. Remove
  2044. it.
  2045. - Ignore whether the display is active or not since only display enabled devices
  2046. work this way, and we skip over repeat entries anwyay.
  2047. - Only reset values on exiting if we've ever modified them.
  2048. - Flag adl as active if any card is successfully activated.
  2049. - Add a thermal cutoff option as well and set it to 95 degrees by default.
  2050. - Change the fan speed by only 5% if it's over the target temperature but less
  2051. than the hysteresis value to minimise overshoot down in temperature.
  2052. - Add a --no-adl option to disable ADL monitoring and GPU settings.
  2053. - Only show longpoll received delayed message at verbose level.
  2054. - Allow temperatures greater than 100 degrees.
  2055. - We should be passing a float for the remainder of the vddc values.
  2056. - Implement accepting a range of engine speeds as well to allow a lower limit to
  2057. be specified on the command line.
  2058. - Allow per-device fan ranges to be set and use them in auto-fan mode.
  2059. - Display which GPU has overheated in warning message.
  2060. - Allow temperature targets to be set on a per-card basis on the command line.
  2061. - Display fan range in autofan status.
  2062. - Setting the hysteresis is unlikely to be useful on the fly and doesn't belong
  2063. in the per-gpu submenu.
  2064. - With many cards, the GPU summaries can be quite long so use a terse output
  2065. line when showing them all.
  2066. - Use a terser device status line to show fan RPM as well when available.
  2067. - Define max gpudevices in one macro.
  2068. - Allow adapterid 0 cards to enumerate as a device as they will be non-AMD
  2069. cards, and enable ADL on any AMD card.
  2070. - Do away with the increasingly confusing and irrelevant total queued and
  2071. efficiency measures per device.
  2072. - Only display values in the log if they're supported and standardise device log
  2073. line printing.
  2074. CGMiner Version 2.0.0 - September 6, 2011
  2075. Major feature upgrade - GPU monitoring, (over)clocking and fan control for ATI
  2076. GPUs.
  2077. New command line switches:
  2078. --auto-fan- Automatically adjust all GPU fan speeds to maintain a target
  2079. temperature
  2080. --auto-gpu- Automatically adjust all GPU engine clock speeds to maintain
  2081. a target temperature
  2082. --gpu-engine <arg> Set the GPU engine (over)clock in Mhz - one value for all or
  2083. separate by commas for per card.
  2084. --gpu-fan <arg> Set the GPU fan percentage - one value for all or separate
  2085. by commas for per card.
  2086. --gpu-memclock <arg> Set the GPU memory (over)clock in Mhz - one value for all
  2087. or separate by commas for per card.
  2088. --gpu-powertune <arg> Set the GPU powertune percentage - one value for all or
  2089. separate by commas for per card.
  2090. --gpu-vddc <arg> Set the GPU voltage in Volts - one value for all or separate
  2091. by commas for per card.
  2092. --temp-hysteresis <arg> Set how much the temperature can fluctuate outside
  2093. limits when automanaging speeds (default: 3)
  2094. --temp-overheat <arg> Set the overheat temperature when automatically managing
  2095. fan and GPU speeds (default: 85)
  2096. --temp-target <arg> Set the target temperature when automatically managing fan
  2097. and GPU speeds (default: 75)
  2098. - Implement ATI ADL support for GPU parameter monitoring now and setting later
  2099. (temp, fan, clocks etc.).
  2100. - Check for the presence of the ADL header files in ADL_SDK.
  2101. - Import adl_functions.h from amd overdrive ctrl.
  2102. - Implement a setup function that tries to detect GPUs that support the ADL and
  2103. link in the parameters into the gpus struct.
  2104. - Put a summary of monitoring information from the GPU menu.
  2105. - Implement changing memory speed and voltage on the fly.
  2106. - Implement fan speed setting.
  2107. - Minor corrections to set fan speed by percentage.
  2108. - Make sure to read off the value in RPM only.
  2109. - Implement auto fanspeed adjustment to maintain a target temperature and
  2110. fanspeed below 85%, with an overheat check that will speed the fan up to 100%.
  2111. - Add an --auto-fan command line option to allow all GPUs to have autofan
  2112. enabled from startup.
  2113. - Add a gpu autotune option which adjusts GPU speed to maintain a target
  2114. temperature within the bounds of the default GPU speed and any overclocking set.
  2115. - Avoid a dereference if the longpoll thread doesn't exist.
  2116. - Clean up by setting performance profiles and fan settings to startup levels on
  2117. exit.
  2118. - Add a small amount of hysteresis before lowering clock speed.
  2119. - Allow target, overheat and hysteresis temperatures to be set from command
  2120. line.
  2121. - Combine all stats collating into one function to avoid repeating function
  2122. calls on each variable.
  2123. - Add gpu statistics to debugging output via the watchdog thread.
  2124. - Implement menus to change temperature limits.
  2125. - Implement setting the GPU engine clock speed of all devices or each device as
  2126. a comma separated value.
  2127. - Implement setting the GPU memory clock speed of all devices or each device as
  2128. a comma separated value.
  2129. - Implement setting the GPU voltage of all devices or each device as a comma
  2130. separated value.
  2131. - Implement setting the GPU fan speed of all devices or each device as a comma
  2132. separated value.
  2133. - Add support for monitoring powertune setting.
  2134. - Implement changing of powertune value from the GPU change settings menu.
  2135. - Get the value of powertune in get_stats.
  2136. - Implement setting the GPU powertune value of all devices or each device as a
  2137. comma separated value.
  2138. - Remove the safety checks in speed setting since confirmation is done first in
  2139. the menu, then show the new current values after a short pause.
  2140. - Force the speed to high on startup and restore it to whatever the setting was
  2141. on exit.
  2142. - Add temperature to standard output where possible and use more compact output.
  2143. - Move and print at the same time in curses to avoid random trampling display
  2144. errors.
  2145. - Update the status window only from the watchdog thread, do not rewrite the top
  2146. status messages and only refresh once all the status window is complete,
  2147. clearing the window each time to avoid corruption.
  2148. - Set a safe starting fan speed if we're automanaging the speeds.
  2149. - Provide locking around all adl calls to prevent races.
  2150. - Lower profile settings cannot be higher than higher profile ones so link any
  2151. drops in settings.
  2152. - Add new needed text files to distribution.
  2153. - Queue requests ignoring the number of staged clones since they get discarded
  2154. very easily leading to false positives for pool not providing work fast enough.
  2155. - Include libgen.h in opt.c to fix win32 compilation warnings.
  2156. - Fix compilation warning on win32.
  2157. - Add the directory name from the arguments cgminer was called from as well to
  2158. allow it running from a relative pathname.
  2159. - Add a --disable-adl option to configure and only enable it if opencl support
  2160. exists.
  2161. - Retry before returning a failure to get upstream work as a failure to avoid
  2162. false positives for pool dead.
  2163. - Retry also if the decoding of work fails.
  2164. - Use the presence of X-Roll-Ntime in the header as a bool for exists unless N
  2165. is found in the response.
  2166. CGMiner Version 1.6.2 - September 2, 2011
  2167. - Add --failover-only option to not leak work to backup pools when the primary
  2168. pool is lagging.
  2169. - Change recommendation to intensity 9 for dedicated miners.
  2170. - Fix the bouncing short term value by allowing it to change dynamically when
  2171. the latest value is very different from the rolling value, but damp the change
  2172. when it gets close.
  2173. - Use the curses_lock to protect the curses_active variable and test it under
  2174. lock.
  2175. - Go back to requesting work 2/3 of the way through the current scantime with
  2176. CPU mining as reports of mining threads running out of work have occurred with
  2177. only 5 seconds to retrieve work.
  2178. - Add start and stop time scheduling for regular time of day running or once off
  2179. start/stop options.
  2180. - Print summary on quit modes.
  2181. - Put some sanity checks on the times that can be input.
  2182. - Give a verbose message when no active pools are found and pause before
  2183. exiting.
  2184. - Add verbose message when a GPU fails to initialise, and disable the correct
  2185. GPU.
  2186. - Cryptopp asm32 was not correctly updated to the incremental nonce code so the
  2187. hash counter was bogus.
  2188. - Get rid of poorly executed curl check.
  2189. - If curl does not have sockopts, do not try to compile the
  2190. json_rpc_call_sockopt_cb function, making it possible to build against older
  2191. curl libraries.
  2192. - Most people expect /usr/local when an unspecified prefix is used so change to
  2193. that.
  2194. - Rename localgen occasions to getwork fail occasions since localgen is
  2195. unrelated now.
  2196. CGMiner Version 1.6.1 - August 29, 2011
  2197. - Copy cgminer path, not cat it.
  2198. - Switching between redrawing windows does not fix the crash with old
  2199. libncurses, so redraw both windows, but only when the window size hasn't
  2200. changed.
  2201. - Reinstate minimum 1 extra in queue to make it extremely unlikely to ever have
  2202. 0 staged work items and any idle time.
  2203. - Return -1 if no input is detected from the menu to prevent it being
  2204. interpreted as a 0.
  2205. - Make pthread, libcurl and libcurses library checks mandatory or fail.
  2206. - Add a --disable-opencl configure option to make it possible to override
  2207. detection of opencl and build without GPU mining support.
  2208. - Confusion over the variable name for number of devices was passing a bogus
  2209. value which likely was causing the zero sized binary issue.
  2210. - cgminer no longer supports default url user and pass so remove them.
  2211. - Don't show value of intensity since it's dynamic by default.
  2212. - Add options to explicitly enable CPU mining or disable GPU mining.
  2213. - Convert the opt queue into a minimum number of work items to have queued
  2214. instead of an extra number to decrease risk of getting idle devices without
  2215. increasing risk of higher rejects.
  2216. - Statify tv_sort.
  2217. - Check for SSE2 before trying to build 32 bit SSE2 assembly version. Prevents
  2218. build failure when yasm is installed but -msse2 is not specified.
  2219. - Add some defines to configure.ac to enable exporting of values and packaging,
  2220. and clean up output.
  2221. - Give convenient summary at end of ./configure.
  2222. - Display version information and add --version command line option, and make
  2223. sure we flush stdout.
  2224. - Enable curses after the mining threads are set up so that failure messages
  2225. won't be lost in the curses interface.
  2226. - Disable curses after inputting a pool if we requested no curses interface.
  2227. - Add an option to break out after successfully mining a number of accepted
  2228. shares.
  2229. - Exit with a failed return code if we did not reach opt_shares.
  2230. - The cpu mining work data can get modified before we copy it if we submit it
  2231. async, and the sync submission is not truly sync anyway, so just submit it sync.
  2232. CGMiner Version 1.6.0 - August 26, 2011
  2233. - Make restarting of GPUs optional for systems that hang on any attempt to
  2234. restart them. Fix DEAD status by comparing it to last live time rather than
  2235. last attempted restart time since that happens every minute.
  2236. - Move staged threads to hashes so we can sort them by time.
  2237. - Create a hash list of all the blocks created and search them to detect when a
  2238. new block has definitely appeared, using that information to detect stale work
  2239. and discard it.
  2240. - Update configure.ac for newer autoconf tools.
  2241. - Use the new hashes directly for counts instead of the fragile counters
  2242. currently in use.
  2243. - Update to latest sse2 code from cpuminer-ng.
  2244. - Allow LP to reset block detect and block detect lp flags to know who really
  2245. came first.
  2246. - Get start times just before mining begins to not have very slow rise in
  2247. average.
  2248. - Add message about needing one server.
  2249. - We can queue all the necessary work without hitting frequent stales now with
  2250. the time and string stale protection active all the time. This prevents a
  2251. pool being falsely labelled as not providing work fast enough.
  2252. - Include uthash.h in distro.
  2253. - Implement SSE2 32 bit assembly algorithm as well.
  2254. - Fail gracefully if unable to open the opencl files.
  2255. - Make cgminer look in the install directory for the .cl files making make
  2256. install work correctly.
  2257. - Allow a custom kernel path to be entered on the command line.
  2258. - Bump threshhold for lag up to maximum queued but no staged work.
  2259. - Remove fragile source patching for bitalign, vectors et. al and simply pass it
  2260. with the compiler options.
  2261. - Actually check the value returned for the x-roll-ntime extension to make sure
  2262. it isn't saying N.
  2263. - Prevent segfault on exit for when accessory threads don't exist.
  2264. - Disable curl debugging with opt protocol since it spews to stderr.
  2265. CGMiner Version 1.5.8 - August 23, 2011
  2266. - Minimise how much more work can be given in cpu mining threads each interval.
  2267. - Make the fail-pause progressively longer each time it fails until the network
  2268. recovers.
  2269. - Only display the lagging message if we've requested the work earlier.
  2270. - Clean up the pool switching to not be dependent on whether the work can roll
  2271. or not by setting a lagging flag and then the idle flag.
  2272. - Only use one thread to determine if a GPU is sick or well, and make sure to
  2273. reset the sick restart attempt time.
  2274. - The worksize was unintentionally changed back to 4k by mistake, this caused a
  2275. slowdown.
  2276. CGMiner Version 1.5.7 - August 22, 2011
  2277. - Fix a crash with --algo auto
  2278. - Test at appropriate target difficulty now.
  2279. - Add per-device statics log output with --per-device-stats
  2280. - Fix breakage that occurs when 1 or 4 vectors are chosen on new phatk.
  2281. - Make rolltime report debug level only now since we check it every work
  2282. item.
  2283. - Add the ability to enable/disable per-device stats on the fly and match
  2284. logging on/off.
  2285. - Explicitly tell the compiler to retain the program to minimise the chance of
  2286. the zero sized binary errors.
  2287. - Add one more instruction to avoid one branch point in the common path in the
  2288. cl return code. Although this adds more ALUs overall and more branch points, the
  2289. common path code has the same number of ALUs and one less jmp, jmps being more
  2290. expensive.
  2291. - Explicitly link in ws2_32 on the windows build and update README file on how
  2292. to compile successfully on windows.
  2293. - Release cl resources should the gpu mining thread abort.
  2294. - Attempt to restart a GPU once every minute while it's sick.
  2295. - Don't kill off the reinit thread if it fails to init a GPU but returns safely.
  2296. - Only declare a GPU dead if there's been no sign of activity from the reinit
  2297. thread for 10 mins.
  2298. - Never automatically disable any pools but just specify them as idle if they're
  2299. unresponsive at startup.
  2300. - Use any longpoll available, and don't disable it if switching to a server that
  2301. doesn't have it. This allows you to mine solo, yet use the longpoll from a pool
  2302. even if the pool is the backup server.
  2303. - Display which longpoll failed and don't free the ram for lp_url since it
  2304. belongs to the pool hdr path.
  2305. - Make the tcp setsockopts unique to linux in the hope it allows freebsd et. al
  2306. to compile.
  2307. CGMiner Version 1.5.6 - August 17, 2011
  2308. - New phatk and poclbm kernels. Updated phatk to be in sync with latest 2.2
  2309. courtesy of phateus. Custom modified to work best with cgminer.
  2310. - Updated output buffer code to use a smaller buffer with the kernels.
  2311. - Clean up the longpoll management to ensure the right paths go to the right
  2312. pool and display whether we're connected to LP or not in the status line.
  2313. CGMiner Version 1.5.5 - August 16, 2011
  2314. - Rework entirely the GPU restart code. Strike a balance between code that
  2315. re-initialises the GPU entirely so that soft hangs in the code are properly
  2316. managed, but if a GPU is completely hung, the thread restart code fails
  2317. gracefully, so that it does not take out any other code or devices. This will
  2318. allow cgminer to keep restarting GPUs that can be restarted, but continue
  2319. mining even if one or more GPUs hangs which would normally require a reboot.
  2320. - Add --submit-stale option which submits all shares, regardless of whether they
  2321. would normally be considered stale.
  2322. - Keep options in alphabetical order.
  2323. - Probe for slightly longer for when network conditions are lagging.
  2324. - Only display the CPU algo when we're CPU mining.
  2325. - As we have keepalives now, blaming network flakiness on timeouts appears to
  2326. have been wrong. Set a timeout for longpoll to 1 hour, and most other
  2327. network connectivity to 1 minute.
  2328. - Simplify output code and remove HW errors from CPU stats.
  2329. - Simplify code and tidy output.
  2330. - Only show cpu algo in summary if cpu mining.
  2331. - Log summary at the end as per any other output.
  2332. - Flush output.
  2333. - Add a linux-usb-cgminer guide courtesy of Kano.
  2334. CGMiner Version 1.5.4 - August 14, 2011
  2335. - Add new option: --monitor <cmd> Option lets user specify a command <cmd> that
  2336. will get forked by cgminer on startup. cgminer's stderr output subsequently gets
  2337. piped directly to this command.
  2338. - Allocate work from one function to be able to initialise variables added
  2339. later.
  2340. - Add missing fflush(stdout) for --ndevs and conclusion summary.
  2341. - Preinitialise the devices only once on startup.
  2342. - Move the non cl_ variables into the cgpu info struct to allow creating a new
  2343. cl state on reinit, preserving known GPU variables.
  2344. - Create a new context from scratch in initCQ in case something was corrupted to
  2345. maximise our chance of succesfully creating a new worker thread. Hopefully this
  2346. makes thread restart on GPU failure more reliable, without hanging everything
  2347. in the case of a completely wedged GPU.
  2348. - Display last initialised time in gpu management info, to know if a GPU has
  2349. been re-initialised.
  2350. - When pinging a sick cpu, flush finish and then ping it in a separate thread in
  2351. the hope it recovers without needing a restart, but without blocking code
  2352. elsewhere.
  2353. - Only consider a pool lagging if we actually need the work and we have none
  2354. staged despite queue requests stacking up. This decreases significantly the
  2355. amount of work that leaks to the backup pools.
  2356. - The can_roll function fails inappropriately in stale_work.
  2357. - Only put the message that a pool is down if not pinging it every minute. This
  2358. prevents cgminer from saying pool down at 1 minute intervals unless in debug
  2359. mode.
  2360. - Free all work in one place allowing us to perform actions on it in the future.
  2361. - Remove the extra shift in the output code which was of dubious benefit. In
  2362. fact in cgminer's implementation, removing this caused a miniscule speedup.
  2363. - Test each work item to see if it can be rolled instead of per-pool and roll
  2364. whenever possible, adhering to the 60 second timeout. This makes the period
  2365. after a longpoll have smaller dips in throughput, as well as requiring less
  2366. getworks overall thus increasing efficiency.
  2367. - Stick to rolling only work from the current pool unless we're in load balance
  2368. mode or lagging to avoid aggressive rolling imitating load balancing.
  2369. - If a work item has had any mining done on it, don't consider it discarded
  2370. work.
  2371. CGMiner Version 1.5.3 - July 30, 2011
  2372. - Significant work went into attempting to make the thread restart code robust
  2373. to identify sick threads, tag them SICK after 1 minute, then DEAD after 5
  2374. minutes of inactivity and try to restart them. Instead of re-initialising the
  2375. GPU completely, only a new cl context is created to avoid hanging the rest of
  2376. the GPUs should the dead GPU be hung irrevocably.
  2377. - Use correct application name in syslog.
  2378. - Get rid of extra line feeds.
  2379. - Use pkg-config to check for libcurl version
  2380. - Implement per-thread getwork count with proper accounting to not over-account
  2381. queued items when local work replaces it.
  2382. - Create a command queue from the program created from source which allows us
  2383. to flush the command queue in the hope it will not generate a zero sized binary
  2384. any more.
  2385. - Be more willing to get work from the backup pools if the work is simply being
  2386. queued faster than it is being retrieved.
  2387. CGMiner Version 1.5.2 - July 28, 2011
  2388. - Restarting a hung GPU can hang the rest of the GPUs so just declare it dead
  2389. and provide the information in the status.
  2390. - The work length in the miner thread gets smaller but doesn't get bigger if
  2391. it's under 1 second. This could end up leading to CPU under-utilisation and
  2392. lower and lower hash rates. Fix it by increasing work length if it drops
  2393. under 1 second.
  2394. - Make the "quiet" mode still update the status and display errors, and add a
  2395. new --real-quiet option which disables all output and can be set once while
  2396. running.
  2397. - Update utility and efficiency figures when displaying them.
  2398. - Some Intel HD graphics support the opencl commands but return errors since
  2399. they don't support opencl. Don't fail with them, just provide a warning and
  2400. disable GPU mining.
  2401. - Add http:// if it's not explicitly set for URL entries.
  2402. - Log to the output file at any time with warnings and errors, instead of just
  2403. when verbose mode is on.
  2404. - Display the correct current hash as per blockexplorer, truncated to 16
  2405. characters, with just the time.
  2406. CGMiner Version 1.5.1 - July 27, 2011
  2407. - Two redraws in a row cause a crash in old libncurses so just do one redraw
  2408. using the main window.
  2409. - Don't adjust hash_div only up for GPUs. Disable hash_div adjustment for GPUs.
  2410. - Only free the thread structures if the thread still exists.
  2411. - Update both windows separately, but not at the same time to prevent the double
  2412. refresh crash that old libncurses has. Do the window resize check only when
  2413. about to redraw the log window to minimise ncurses cpu usage.
  2414. - Abstract out the decay time function and use it to make hash_div a rolling
  2415. average so it doesn't change too abruptly and divide work in chunks large enough
  2416. to guarantee they won't overlap.
  2417. - Sanity check to prove locking.
  2418. - Don't take more than one lock at a time.
  2419. - Make threads report out when they're queueing a request and report if they've
  2420. failed.
  2421. - Make cpu mining work submission asynchronous as well.
  2422. - Properly detect stale work based on time from staging and discard instead of
  2423. handing on, but be more lax about how long work can be divided for up to the
  2424. scantime.
  2425. - Do away with queueing work separately at the start and let each thread grab
  2426. its own work as soon as it's ready.
  2427. - Don't put an extra work item in the queue as each new device thread will do so
  2428. itself.
  2429. - Make sure to decrease queued count if we discard the work.
  2430. - Attribute split work as local work generation.
  2431. - If work has been cloned it is already at the head of the list and when being
  2432. reinserted into the queue it should be placed back at the head of the list.
  2433. - Dividing work is like the work is never removed at all so treat it as such.
  2434. However the queued bool needs to be reset to ensure we *can* request more work
  2435. even if we didn't initially.
  2436. - Make the display options clearer.
  2437. - Add debugging output to tq_push calls.
  2438. - Add debugging output to all tq_pop calls.
  2439. CGMiner Version 1.5.0 - July 26, 2011
  2440. - Increase efficiency of slow mining threads such as CPU miners dramatically. Do
  2441. this by detecting which threads cannot complete searching a work item within the
  2442. scantime and then divide up a work item into multiple smaller work items.
  2443. Detect the age of the work items and if they've been cloned before to prevent
  2444. doing the same work over. If the work is too old to be divided, then see if it
  2445. can be time rolled and do that to generate work. This dramatically decreases the
  2446. number of queued work items from a pool leading to higher overall efficiency
  2447. (but the same hashrate and share submission rate).
  2448. - Don't request work too early for CPUs as CPUs will scan for the full
  2449. opt_scantime anyway.
  2450. - Simplify gpu management enable/disable/restart code.
  2451. - Implement much more accurate rolling statistics per thread and per gpu and
  2452. improve accuracy of rolling displayed values.
  2453. - Make the rolling log-second average more accurate.
  2454. - Add a menu to manage GPUs on the fly allowing you to enable/disable GPUs or
  2455. try restarting them.
  2456. - Keep track of which GPUs are alive versus enabled.
  2457. - Start threads for devices that are even disabled, but don't allow them to
  2458. start working.
  2459. - The last pool is when we are low in total_pools, not active_pools.
  2460. - Make the thread restart do a pthread_join after disabling the device, only
  2461. re-enabling it if we succeed in restarting the thread. Do this from a separate
  2462. thread so as to not block any other code.This will allow cgminer to continue
  2463. even if one GPU hangs.
  2464. - Try to do every curses manipulation under the curses lock.
  2465. - Only use the sockoptfunction if the version of curl is recent enough.
  2466. CGMiner Version 1.4.1 - July 24, 2011
  2467. - Do away with GET for dealing with longpoll forever. POST is the one that works
  2468. everywhere, not the other way around.
  2469. - Detect when the primary pool is lagging and start queueing requests on backup
  2470. pools if possible before needing to roll work.
  2471. - Load balancing puts more into the current pool if there are disabled pools.
  2472. Fix.
  2473. - Disable a GPU device should the thread fail to init.
  2474. - Out of order command queue may fail on osx. Try without if it fails.
  2475. - Fix possible dereference on blank inputs during input_pool.
  2476. - Defines missing would segfault on --help when no sse mining is built in.
  2477. - Revert "Free up resources/stale compilers." - didn't help.
  2478. - Only try to print the status of active devices or it would crash.
  2479. - Some hardware might benefit from the less OPS so there's no harm in leaving
  2480. kernel changes that do that apart from readability of the code.
  2481. CGMiner Version 1.4.0 - July 23, 2011
  2482. - Feature upgrade: Add keyboard input during runtime to allow modification of
  2483. and viewing of numerous settings such as adding/removing pools, changing
  2484. multipool management strategy, switching pools, changing intensiy, verbosity,
  2485. etc. with a simple keypress menu system.
  2486. - Free up resources/stale compilers.
  2487. - Kernels are safely flushed in a way that allows out of order execution to
  2488. work.
  2489. - Sometimes the cl compiler generates zero sized binaries and only a reboot
  2490. seems to fix it.
  2491. - Don't try to stop/cancel threads that don't exist.
  2492. - Only set option to show devices and exit if built with opencl support.
  2493. - Enable curses earlier and exit with message in main for messages to not be
  2494. lost in curses windows.
  2495. - Make it possible to enter server credentials with curses input if none are
  2496. specified on the command line.
  2497. - Abstract out a curses input function and separate input pool function to allow
  2498. for live adding of pools later.
  2499. - Remove the nil arguments check to allow starting without parameters.
  2500. - Disable/enable echo & cbreak modes.
  2501. - Add a thread that takes keyboard input and allow for quit, silent, debug,
  2502. verbose, normal, rpc protocol debugging and clear screen options.
  2503. - Add pool option to input and display current pool status, pending code to
  2504. allow live changes.
  2505. - Add a bool for explicit enabling/disabling of pools.
  2506. - Make input pool capable of bringing up pools while running.
  2507. - Do one last check of the work before submitting it.
  2508. - Implement the ability to live add, enable, disable, and switch to pools.
  2509. - Only internally test for block changes when the work matches the current pool
  2510. to prevent interleaved block change timing on multipools.
  2511. - Display current pool management strategy to enable changing it on the fly.
  2512. - The longpoll blanking of the current_block data may not be happening before
  2513. the work is converted and appears to be a detected block change. Blank the
  2514. current block be
  2515. - Make --no-longpoll work again.
  2516. - Abstract out active pools count.
  2517. - Allow the pool strategy to be modified on the fly.
  2518. - Display pool information on the fly as well.
  2519. - Add a menu and separate out display options.
  2520. - Clean up the messy way the staging thread communicates with the longpoll
  2521. thread to determine who found the block first.
  2522. - Make the input windows update immediately instead of needing a refresh.
  2523. - Allow log interval to be set in the menu.
  2524. - Allow scan settings to be modified at runtime.
  2525. - Abstract out the longpoll start and explicitly restart it on pool change.
  2526. - Make it possible to enable/disable longpoll.
  2527. - Set priority correctly on multipools. Display priority and alive/dead
  2528. information in display_pools.
  2529. - Implement pool removal.
  2530. - Limit rolltime work generation to 10 iterations only.
  2531. - Decrease testing log to info level.
  2532. - Extra refresh not required.
  2533. - With huge variation in GPU performance, allow intensity to go from -10 to +10.
  2534. - Tell getwork how much of a work item we're likely to complete for future
  2535. splitting up of work.
  2536. - Remove the mandatory work requirement at startup by testing for invalid work
  2537. being passed which allows for work to be queued immediately. This also
  2538. removes the requirem
  2539. - Make sure intensity is carried over to thread count and is at least the
  2540. minimum necessary to work.
  2541. - Unlocking error on retry. Locking unnecessary anyway so remove it.
  2542. - Clear log window from consistent place. No need for locking since logging is
  2543. disabled during input.
  2544. - Cannot print the status of threads that don't exist so just queue enough work
  2545. for the number of mining threads to prevent crash with -Q N.
  2546. - Update phatk kernel to one with new parameters for slightly less overhead
  2547. again. Make the queue kernel parameters call a function pointer to select
  2548. phatk or poclbm.
  2549. - Make it possible to select the choice of kernel on the command line.
  2550. - Simplify the output part of the kernel. There's no demonstrable advantage from
  2551. more complexity.
  2552. - Merge pull request #18 from ycros/cgminer
  2553. - No need to make leaveok changes win32 only.
  2554. - Build support in for all SSE if possible and only set the default according to
  2555. machine capabilities.
  2556. - Win32 threading and longpoll keepalive fixes.
  2557. - Win32: Fix for mangled output on the terminal on exit.
  2558. CGMiner Version 1.3.1 - July 20, 2011
  2559. - Feature upgrade; Multiple strategies for failover. Choose from default which
  2560. now falls back to a priority order from 1st to last, round robin which only
  2561. changes pools when one is idle, rotate which changes pools at user-defined
  2562. intervals, and load-balance which spreads the work evenly amongst all pools.
  2563. - Implement pool rotation strategy.
  2564. - Implement load balancing algorithm by rotating requests to each pool.
  2565. - Timeout on failed discarding of staged requests.
  2566. - Implement proper flagging of idle pools, test them with the watchdog thread,
  2567. and failover correctly.
  2568. - Move pool active test to own function.
  2569. - Allow multiple strategies to be set for multipool management.
  2570. - Track pool number.
  2571. - Don't waste the work items queued on testing the pools at startup.
  2572. - Reinstate the mining thread watchdog restart.
  2573. - Add a getpoll bool into the thread information and don't restart threads stuck
  2574. waiting on work.
  2575. - Rename the idlenet bool for the pool for later use.
  2576. - Allow the user/pass userpass urls to be input in any order.
  2577. - When json rpc errors occur they occur in spits and starts, so trying to limit
  2578. them with the comms error bool doesn't stop a flood of them appearing.
  2579. - Reset the queued count to allow more work to be queued for the new pool on
  2580. pool switch.
  2581. CGMiner Version 1.3.0 - July 19, 2011
  2582. - Massive infrastructure update to support pool failover.
  2583. - Accept multiple parameters for url, user and pass and set up structures of
  2584. pool data accordingly.
  2585. - Probe each pool for what it supports.
  2586. - Implement per pool feature support according to rolltime support as
  2587. advertised by server.
  2588. - Do switching automatically based on a 300 second timeout of locally generated
  2589. work or 60 seconds of no response from a server that doesn't support rolltime.
  2590. - Implement longpoll server switching.
  2591. - Keep per-pool data and display accordingly.
  2592. - Make sure cgminer knows how long the pool has actually been out for before
  2593. deeming it a prolonged outage.
  2594. - Fix bug with ever increasing staged work in 1.2.8 that eventually caused
  2595. infinite rejects.
  2596. - Make warning about empty http requests not show by default since many
  2597. servers do this regularly.
  2598. CGMiner Version 1.2.8 - July 18, 2011
  2599. - More OSX build fixes.
  2600. - Add an sse4 algorithm to CPU mining.
  2601. - Fix CPU mining with other algorithms not working.
  2602. - Rename the poclbm file to ensure a new binary is built since.
  2603. - We now are guaranteed to have one fresh work item after a block change and we
  2604. should only discard staged requests.
  2605. - Don't waste the work we retrieve from a longpoll.
  2606. - Provide a control lock around global bools to avoid racing on them.
  2607. - Iterating over 1026 nonces when confirming data from the GPU is old code
  2608. and unnecessary and can lead to repeats/stales.
  2609. - The poclbm kernel needs to be updated to work with the change to 4k sized
  2610. output buffers.
  2611. - longpoll seems to work either way with post or get but some servers prefer
  2612. get so change to httpget.
  2613. CGMiner Version 1.2.7 - July 16, 2011
  2614. - Show last 8 characters of share submitted in log.
  2615. - Display URL connected to and user logged in as in status.
  2616. - Display current block and when it was started in the status line.
  2617. - Only pthread_join the mining threads if they exist as determined by
  2618. pthread_cancel and don't fail on pthread_cancel.
  2619. - Create a unique work queue for all getworks instead of binding it to thread 0
  2620. to avoid any conflict over thread 0's queue.
  2621. - Clean up the code to make it clear it's watchdog thread being messaged to
  2622. restart the threads.
  2623. - Check the current block description hasn't been blanked pending the real
  2624. new current block data.
  2625. - Re-enable signal handlers once the signal has been received to make it
  2626. possible to kill cgminer if it fails to shut down.
  2627. - Disable restarting of CPU mining threads pending further investigation.
  2628. - Update longpoll messages.
  2629. - Add new block data to status line.
  2630. - Fix opencl tests for osx.
  2631. - Only do local generation of work if the work item is not stale itself.
  2632. - Check for stale work within the mining threads and grab new work if
  2633. positive.
  2634. - Test for idle network conditions and prevent threads from being restarted
  2635. by the watchdog thread under those circumstances.
  2636. - Make sure that local work generation does not continue indefinitely by
  2637. stopping it after 10 minutes.
  2638. - Tweak the kernel to have a shorter path using a 4k buffer and a mask on the
  2639. nonce value instead of a compare and loop for a shorter code path.
  2640. - Allow queue of zero and make that default again now that we can track how
  2641. work is being queued versus staged. This can decrease reject rates.
  2642. - Queue precisely the number of mining threads as longpoll_staged after a
  2643. new block to not generate local work.
  2644. CGMiner Version 1.2.6 - July 15, 2011
  2645. - Put a current system status line beneath the total work status line
  2646. - Fix a counting error that would prevent cgminer from correctly detecting
  2647. situations where getwork was failing - this would cause stalls sometimes
  2648. unrecoverably.
  2649. - Limit the maximum number of requests that can be put into the queue which
  2650. otherwise could get arbitrarily long during a network outage.
  2651. - Only count getworks that are real queue requests.
  2652. CGMiner Version 1.2.5 - July 15, 2011
  2653. - Conflicting -n options corrected
  2654. - Setting an intensity with -I disables dynamic intensity setting
  2655. - Removed option to manually disable dynamic intensity
  2656. - Improve display output
  2657. - Implement signal handler and attempt to clean up properly on exit
  2658. - Only restart threads that are not stuck waiting on mandatory getworks
  2659. - Compatibility changes courtesy of Ycros to build on mingw32 and osx
  2660. - Explicitly grab first work item to prevent false positive hardware errors
  2661. due to working on uninitialised work structs
  2662. - Add option for non curses --text-only output
  2663. - Ensure we connect at least once successfully before continuing to retry to
  2664. connect in case url/login parameters were wrong
  2665. - Print an executive summary when cgminer is terminated
  2666. - Make sure to refresh the status window
  2667. CGMiner Versions -> 1.2.4
  2668. - Con Kolivas - July 2011. New maintainership of code under cgminer name.
  2669. - Massive rewrite to incorporate GPU mining.
  2670. - Incorporate original oclminer c code.
  2671. - Rewrite gpu mining code to efficient work loops.
  2672. - Implement per-card detection and settings.
  2673. - Implement vector code.
  2674. - Implement bfi int patching.
  2675. - Import poclbm and phatk ocl kernels and use according to hardware type.
  2676. - Implement customised optimised versions of opencl kernels.
  2677. - Implement binary kernel generation and loading.
  2678. - Implement preemptive asynchronous threaded work gathering and pushing.
  2679. - Implement variable length extra work queues.
  2680. - Optimise workloads to be efficient miners instead of getting lots of extra
  2681. work.
  2682. - Implement total hash throughput counters, per-card accepted, rejected and
  2683. hw error count.
  2684. - Staging and watchdog threads to prevent fallover.
  2685. - Stale and reject share guarding.
  2686. - Autodetection of new blocks without longpoll.
  2687. - Dynamic setting of intensity to maintain desktop interactivity.
  2688. - Curses interface with generous statistics and information.
  2689. - Local generation of work (xroll ntime) when detecting poor network
  2690. connectivity.
  2691. cpuminer Version 1.0.2
  2692. - Linux x86_64 optimisations - Con Kolivas
  2693. - Optimise for x86_64 by default by using sse2_64 algo
  2694. - Detects CPUs and sets number of threads accordingly
  2695. - Uses CPU affinity for each thread where appropriate
  2696. - Sets scheduling policy to lowest possible
  2697. - Minor performance tweaks
  2698. cpuminer Version 1.0.1 - May 14, 2011
  2699. - OSX support
  2700. cpuminer Version 1.0 - May 9, 2011
  2701. - jansson 2.0 compatibility
  2702. - correct off-by-one in date (month) display output
  2703. - fix platform detection
  2704. - improve yasm configure bits
  2705. - support full URL, in X-Long-Polling header
  2706. cpuminer Version 0.8.1 - March 22, 2011
  2707. - Make --user, --pass actually work
  2708. - Add User-Agent HTTP header to requests, so that server operators may
  2709. more easily identify the miner client.
  2710. - Fix minor bug in example JSON config file
  2711. cpuminer Version 0.8 - March 21, 2011
  2712. - Support long polling: http://deepbit.net/longpolling.php
  2713. - Adjust max workload based on scantime (default 5 seconds,
  2714. or 60 seconds for longpoll)
  2715. - Standardize program output, and support syslog on Unix platforms
  2716. - Suport --user/--pass options (and "user" and "pass" in config file),
  2717. as an alternative to the current --userpass
  2718. cpuminer Version 0.7.2 - March 14, 2011
  2719. - Add port of ufasoft's sse2 assembly implementation (Linux only)
  2720. This is a substantial speed improvement on Intel CPUs.
  2721. - Move all JSON-RPC I/O to separate thread. This reduces the
  2722. number of HTTP connections from one-per-thread to one, reducing resource
  2723. usage on upstream bitcoind / pool server.
  2724. cpuminer Version 0.7.1 - March 2, 2011
  2725. - Add support for JSON-format configuration file. See example
  2726. file example-cfg.json. Any long argument on the command line
  2727. may be stored in the config file.
  2728. - Timestamp each solution found
  2729. - Improve sha256_4way performance. NOTE: This optimization makes
  2730. the 'hash' debug-print output for sha256_way incorrect.
  2731. - Use __builtin_expect() intrinsic as compiler micro-optimization
  2732. - Build on Intel compiler
  2733. - HTTP library now follows HTTP redirects
  2734. cpuminer Version 0.7 - February 12, 2011
  2735. - Re-use CURL object, thereby reuseing DNS cache and HTTP connections
  2736. - Use bswap_32, if compiler intrinsic is not available
  2737. - Disable full target validation (as opposed to simply H==0) for now
  2738. cpuminer Version 0.6.1 - February 4, 2011
  2739. - Fully validate "hash < target", rather than simply stopping our scan
  2740. if the high 32 bits are 00000000.
  2741. - Add --retry-pause, to set length of pause time between failure retries
  2742. - Display proof-of-work hash and target, if -D (debug mode) enabled
  2743. - Fix max-nonce auto-adjustment to actually work. This means if your
  2744. scan takes longer than 5 seconds (--scantime), the miner will slowly
  2745. reduce the number of hashes you work on, before fetching a new work unit.
  2746. cpuminer Version 0.6 - January 29, 2011
  2747. - Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
  2748. - BeeCee1's sha256 4way optimizations
  2749. - lfm's byte swap optimization (improves via, cryptopp)
  2750. - Fix non-working short options -q, -r
  2751. cpuminer Version 0.5 - December 28, 2010
  2752. - Exit program, when all threads have exited
  2753. - Improve JSON-RPC failure diagnostics and resilience
  2754. - Add --quiet option, to disable hashmeter output.
  2755. cpuminer Version 0.3.3 - December 27, 2010
  2756. - Critical fix for sha256_cryptopp 'cryptopp_asm' algo
  2757. cpuminer Version 0.3.2 - December 23, 2010
  2758. - Critical fix for sha256_via
  2759. cpuminer Version 0.3.1 - December 19, 2010
  2760. - Critical fix for sha256_via
  2761. - Retry JSON-RPC failures (see --retry, under "minerd --help" output)
  2762. cpuminer Version 0.3 - December 18, 2010
  2763. - Add crypto++ 32bit assembly implementation
  2764. - show version upon 'minerd --help'
  2765. - work around gcc 4.5.x bug that killed 4way performance
  2766. cpuminer Version 0.2.2 - December 6, 2010
  2767. - VIA padlock implementation works now
  2768. - Minor build and runtime fixes
  2769. cpuminer Version 0.2.1 - November 29, 2010
  2770. - avoid buffer overflow when submitting solutions
  2771. - add Crypto++ sha256 implementation (C only, ASM elided for now)
  2772. - minor internal optimizations and cleanups
  2773. cpuminer Version 0.2 - November 27, 2010
  2774. - Add script for building a Windows installer
  2775. - improve hash performance (hashmeter) statistics
  2776. - add tcatm 4way sha256 implementation
  2777. - Add experimental VIA Padlock sha256 implementation
  2778. cpuminer Version 0.1.2 - November 26, 2010
  2779. - many small cleanups and micro-optimizations
  2780. - build win32 exe using mingw
  2781. - RPC URL, username/password become command line arguments
  2782. - remove unused OpenSSL dependency
  2783. cpuminer Version 0.1.1 - November 24, 2010
  2784. - Do not build sha256_generic module separately from cpuminer.
  2785. cpuminer Version 0.1 - November 24, 2010
  2786. - Initial release.