NEWS 182 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789
  1. Version 3.1.0 - April 28th, 2013
  2. - va_copy is meant to be matched by a va_end in log_generic.
  3. - usbutils remove_in_use break
  4. - usbutils remove_in_use missing prev
  5. - usbutils missing add_in_use
  6. - Clean up summary slightly better on exit.
  7. - Make the scan sleep time after scanwork in bflsc dynamic to keep queues
  8. between watermark levels.
  9. - Remove unused temp counts in bflsc.
  10. - Calculate a rolling 5 min average set of temperatures for bflsc.
  11. - Damp the display of voltage for BFLSC devices.
  12. - Damp the temperature display measurement for bflsc since it fluctuates so
  13. wildly.
  14. - bflsc add volt stats
  15. - Handle failed tolines command in bflsc driver.
  16. - Can use a read lock instead of a write lock in bflsc scanwork.
  17. - Since we are filling a queue on the bflsc devices, there is no need to run
  18. through scanwork frequently provided we use the restart_wait function to abort
  19. early during a block change.
  20. - Remove flushed work in bfl scanwork from the hash table.
  21. - Set correct device in process_nonces in bflsc driver.
  22. - bflsc add work reply INPROCESS: missing from the spec
  23. - bflsc put in some error messages not yet written
  24. - bflsc get completed hashes as late as possible
  25. - Fix potential memory leak with unused work items in bflsc_queue_full
  26. - Reverse bools in bflsc_queue_full
  27. - Avoid recursive loop calling correct function instead.
  28. - bflsc fix details identification
  29. - Differentiate BFLSC device from regular bitforce and give warning if no
  30. support is compiled in.
  31. - util.c str_text make a fully text readable version of str
  32. - BFLSC fix FPGA identity overlap
  33. - Locking error in bflsc_send_work
  34. - Use htobe32 function for converting nonce in bflsc.
  35. - Replace deprecated bzero with memset in bflsc driver.
  36. - Fix compilation of bflsc driver without opencl.
  37. - Check for realloc failures in bflsc driver.
  38. - Check for failure to calloc in bflsc driver.
  39. - Trivial style change
  40. - Use copy_time function in bflsc driver.
  41. - Use cgtime in bflsc driver and update copyright notice.
  42. - Use a separate function for bfl initialise that doesn't require locking.
  43. - Fix BFLSC building.
  44. - bflsc v0.1
  45. Version 3.0.1 - April 25th, 2013
  46. - Bypass attempting to read and save binary files on OSX to avoid crashes on >1
  47. GPU.
  48. - Receive failures in recv_line should unconditionally fail.
  49. - Use sock_blocks in api.c
  50. - Use sock_blocks function for stratum send and receive.
  51. - Create an OS specific sock_blocks function.
  52. Version 3.0.0 - April 22nd, 2013
  53. - Further fix distdir for hexdump.c
  54. - Fix build and distdir.
  55. - Remove all CPU mining code.
  56. - compile on win32
  57. - Update SCRYPT README with improved hashrates for 7970.
  58. - Use copy_time helper throughout cgminer.c
  59. - Provide wrappers for commonly used timer routines with API stats.
  60. - Avoid one cgtime call in sole_hash_work.
  61. - Fulltest is true if value is <= target.
  62. - Use system host to endian functions for clarity in fulltest.
  63. - Provide endian_flipX functions to avoid special casing big endian in cgminer.c
  64. - Provide a flip128 helper to simplify big endian flipping.
  65. - Use flip helpers to simplify code for calculation of midstate.
  66. - Use flip32 function instead of open coding it in gen_stratum_work.
  67. - Move util.c exports to util.h
  68. - Fix warning on building avalon on win32
  69. - Use cgtime in driver-avalon.c
  70. - Use cgtime in driver-icarus.c
  71. - Use cgtime in driver-bitforce.c
  72. - Use cgtime in logging.c
  73. - Use cgtime in usbutils.c
  74. - Use cgtime in driver-opencl.c
  75. - Use cgtime wrapper in driver-modminer.c
  76. - Use cgtime in driver-ztex.c
  77. - Use cgtime in compat.h
  78. - Use cgtime instead of gettimeofday in fpgautils.c
  79. - Replace gettimeofday usage in cgminer.c with cgtime
  80. - Create a cgminer specific gettimeofday wrapper that is always called with tz
  81. set to NULL and increases the resolution on windows.
  82. - Add high resolution to nmsleep wrapper on windows.
  83. - Set default ocl work size for scrypt to 256.
  84. - define le32toh if needed
  85. - fliter out the wrong result from adjust fan code
  86. - compile avalon driver on win32 and win64
  87. - Restart threads on the rare chance we found the block ourselves.
  88. - Add more FAQs about crossfire.
  89. - Set last device valid work on adding device.
  90. - Increment last device valid work count in submit_nonce to cover scrypt.
  91. - Set opt_scrypt drv max diff for correctness.
  92. - Make scrypt submission use the submit_nonce code, with nonces matching
  93. endianness.
  94. - Do testing for HW errors on submit nonce for both scrypt and sha.
  95. - Increment hardware error count from the one site.
  96. - Rename scrypt regenhash function for consistency.
  97. - Add new best share info to verbose logging.
  98. - Add notice for when network diff is changed.
  99. - Convert error getting device IDs in ocl code to info log level only since
  100. multiple platforms may be installed and the error is harmless there.
  101. - Unnecessary extra array in ocl code.
  102. - Further driver FAQs.
  103. - Add MAC FAQ.
  104. - Add more FAQ details.
  105. - Check for work restart after disable in the hash queued work loop since it may
  106. be a long time before we re-enable a device.
  107. - Unconditionally test for many wrong results on avalon and reset to avoid
  108. passing a corrupt avalon result to temperature code.
  109. - build out of source dir
  110. - Set device_diff for queued work or there will be no diff1 share count.
  111. - Only reset an avalon device with no results when there are no results
  112. consecutively.
  113. - More FAQs.
  114. - More FAQs.
  115. - Cleanup when stratum curl fails to initialise.
  116. - Avoid applog in recalloc_sock.
  117. - Avoid applog under stratum_lock in recv_line.
  118. - Avoid applog under stratum_lock in __stratum_send.
  119. - Put spacing around locking in util.c for clarity.
  120. - Avoid applog under cg_wlock.
  121. - Put spacing around locking code for clarity.
  122. - Avoid applog under pool_lock.
  123. - Avoid more recursive locks.
  124. - Avoid applog while ch_lock is held.
  125. - Avoid recursive locks in fill_queue.
  126. - Variable is already initialised in global scope.
  127. - More GPU faqs.
  128. - More README faqs.
  129. - Yet more README faqs.
  130. - Add more faqs to README.
  131. - Wrap result wrong tests in avalon scanhash in unlikely() and only consider a
  132. hash count of zero wrong if a restart wasn't issued.
  133. - avalon: if result_wrong >= get_work_count jump out the read loop
  134. - Fix warning on 32bit.
  135. - Fix warning on 32bit.
  136. - Avoid curl_easy_cleanup on old curl versions in setup_stratum_curl as well.
  137. - fix the fan control on max temp2/3
  138. - for some reason network down. one simple cgminer command: "cgminer -o
  139. 127.0.0.1:8888 -O fa:ke --avalon-options 115200:32:10:50:256" can idle the
  140. avalon for safe power and protect chip
  141. - if hash_count == 0; reinit avalon, fix the 0MHS bug use the max value of temp1
  142. and temp2 for fan control
  143. - Reinstate the matching_work_count per subdevice on avalon based on the work
  144. subid.
  145. - Avalon driver is missing the drv_id.
  146. - Rationalise and simplify the share diff and block solve detection to a common
  147. site.
  148. - Rationalise and simplify the share diff and block solve detection to a common
  149. site.
  150. - Make the avalon array size a macro.
  151. - Use replacement of work items in the avalon buffer as needed instead of
  152. flushing them.
  153. - Reinstate wrong work count to reset avalon regardless and display number of
  154. wrong results.
  155. - Revert "The result_wrong measurement for avalon is continually leading to
  156. false positives so remove it."
  157. - select() on serial usb in avalon does not work properly with zero timeout.
  158. - The result_wrong measurement for avalon is continually leading to false
  159. positives so remove it.
  160. - Revert "Use only 2 queued work arrays in avalon."
  161. - Use no timeout on further reads in avalon_gets
  162. - Do sequential reads in avalon_get_reset to cope with partial reads.
  163. - Show read discrepancy in avalon_get_reset.
  164. - Reuse avalon_get_work_count variable.
  165. - Check for AVA_GETS_RESTART when deciding if avalon has messed up.
  166. - Make the detection of all wrong results on avalon much more conservative to
  167. avoid false positives on work restarts.
  168. - Show error codes on select and read fail in avalon.
  169. - If we get a restart message in avalon_gets still check if there's a receive
  170. message to parse first without a timeout before returning AVA_GETS_RESTART.
  171. - Use only 2 queued work arrays in avalon.
  172. - avalon_gets is always called from the one call site so inline it.
  173. - The read_count is unused by the avalon get result code and no longer required
  174. for avalon reset so simplify code removing it.
  175. - Use a separate avalon_get_reset function for resetting avalon instead of using
  176. avalon_get_result.
  177. - The current hash count returned by avalon scanhash is just an obfuscated
  178. utility counter so make it explicit.
  179. - Check for a restart before a timeout in message parsing code in avalon.
  180. - We should check for a restart message before checking for a timeout in avalon
  181. scanhash.
  182. - Store the subid for the work item in avalon.
  183. - usbutils more stats for bflsc
  184. - Fix record_temp_fan function in avalon driver. Patch by Xiangfu
  185. <xiangfu@openmobilefree.net>
  186. - Remove inappropriate memset of struct avalon result which was corrupting fan
  187. values.
  188. - Fix warning with no curses built in.
  189. - Bump version to 2.11.4
  190. - Add API support for Avalon.
  191. - Only do_avalon_close once on multiple errors.
  192. - Reset the result_wrong count on block change in avalon scanhash to prevent
  193. false positives for all nonces failed.
  194. - Small timeouts on select() instead of instant timeout increase reliability of
  195. socket reads and writes.
  196. - Only get extra work in fill_queue if we don't have any unqueued work in the
  197. list.
  198. - Small timeouts on select() instead of instant timeout increase reliability of
  199. socket reads and writes.
  200. - Rotate the avalon work array and free work on AVA_SEND_BUFFER_EMPTY as well.
  201. - Only get extra work in fill_queue if we don't have any unqueued work in the
  202. list.
  203. - Don't get any work if our queue is already full in avalon_fill.
  204. - Differentiate socket closed from socket error in recv_line.
  205. - Differentiate socket closed from socket error in recv_line.
  206. - Free avalon->works in the event we call avalon_prepare on failure to
  207. initialise.
  208. - Fix warnings.
  209. - Create an array of 4 lots of work for avalon and cycle through them.
  210. - Remove unused per unit matching work count for avalon.
  211. - Rename the confusing avalon_info pointer.
  212. - Simplify avalon scanhash code using the new find_queued_work_bymidstate
  213. function. Partially works only.
  214. - Members of cgpu_info for avalon are not meant to be in the union.
  215. - Use correct struct device_drv for avalon_drv.
  216. - cgminer.c -S help to only say Icarus
  217. - Check enough work is queued before queueing more in avalon_fill.
  218. - Actually put the work in the avalon queue.
  219. - Rneame avalon_api to avalon_drv.
  220. - First draft of port of avalon driver to new cgminer queued infrastructure.
  221. - Add Makefile entry for driver-avalon.
  222. - Add configure support for avalon.
  223. Version 2.11.4 - April 5th, 2013
  224. - Remove bfl-sc option from configure for 2.11 branch.
  225. - Only update hashrate calculation with the log interval.
  226. - Update the total_tv_end only when we show the log to prevent failure to update
  227. logs.
  228. - Minor README updates.
  229. - Add example 7970 tuning for scrypt in readme.
  230. - Update driver recommendations.
  231. - Add extensive GPU FAQs for the flood of new Scrypt miners.
  232. - Remove help option for cpumining in build environment.
  233. - Remove scripts that make it too easy to compile CPU mining support.
  234. - Win32 and win64 build updates
  235. - Remove references to CPU mining from README.
  236. - Show share hash as little endian as needed.
  237. - usbutils extra message requirements
  238. - Make hashmeter frequency for hash_queued_work match sole_work.
  239. - Update links and recommended SDKs.
  240. - Update scrypt readme re drivers and sdk.
  241. - usbutils.c usb_cmdname() usb_cmds -> string name
  242. - BFL FPGA Windows timeout set to 999ms
  243. - AUTHORS - spam update time (one year since the last)
  244. - Update README for x970 memdiff values.
  245. - Update README to match changes to display.
  246. - Remove increasingly irrelevant discarded work from status lines.
  247. - Remove increasingly irrelevant queued and efficiency values from status and
  248. move WU to status line.
  249. - Allow cgminer to start if usb hotplug is enabled but no devices yet exist.
  250. - Do not scan other gpu platforms if one is specified.
  251. - Update README for sync objects on windows.
  252. - Update README about intensity.
  253. - Add information for setting gpu max alloc and sync parameters for windows with
  254. scrypt.
  255. - If the hashmeter is less than the log interval and being updated by the
  256. watchdog, don't update the hashrate.
  257. Version 2.11.3 - March 17, 2013
  258. - Update docs and reorder README to show executive summary near top.
  259. - Update the hashmeter at most 5 times per second.
  260. - Usbutils use its own internal read buffer
  261. - Calculate work utility for devices that support target diffs of greater than
  262. 1, and update scrypt code to use it.
  263. - usbutils allow read termination match to be a string
  264. - Set default GPU threads to 1 for scrypt.
  265. - Connect backup stratum pools if the primary pool cannot deliver work.
  266. - Use a new algorithm for choosing a thread concurrency when none or no shader
  267. value is specified for scrypt.
  268. - Do not round up the bufsize to the maximum allocable with scrypt.
  269. - Remove the rounding-up of the scrypt padbuffer which was not effectual and
  270. counter-productive on devices with lots of ram, limiting thread concurrencies
  271. and intensities.
  272. - bufsize is an unsigned integer, make it so for debug.
  273. - Update the hashmeter once per second but only display the extra logs every
  274. opt_log_inteval.
  275. - add a dummy ztex to usbutils so cgminer -n lists ztex also
  276. - nDevs required for -n with usb
  277. - USB device list - convert some common error numbers to messages
  278. - USB -n 'known' text only without ---usb-list-all
  279. - USB modify -n and --usb-dump to only show known devices or use new
  280. --usb-list-all option to see all
  281. - Make pool adding while running asynchronous, using the pool test thread
  282. functionality.
  283. - Only curl easy cleanup a stratum curl if it exists.
  284. - Sacrifice the ram of curl handles in stratum disconnects when we have built
  285. with old libcurl to avoid crashes.
  286. - cgminer -n to include a USB device list
  287. - usbutils allow call of usb_all() from other code
  288. - Convert gbt_lock to a cg_lock.
  289. - Add intermediate variants of cglocks that can be up or downgraded to read or
  290. write locks and use them for stratum work generation.
  291. - Move the stratum and GBT data to be protected under a new cg_lock data_lock.
  292. - Convert the ch_lock to cg_lock.
  293. - Convert the control_lock to a cg_lock.
  294. - Remove unused qd_lock.
  295. - Implement cg_lock write biased rwlocks.
  296. - do usb_initialise() after the started message so we see it
  297. - --usb-dump display brief dump if value = 0
  298. - USB add --usb options to limit USB device selection v0.1
  299. Version 2.11.2 - March 9, 2013
  300. - Whitelist AMD APP SDK 2.8 for diablo kernel.
  301. - Cope with the highest opencl platform not having usable devices.
  302. - Fix memory leak with share submission on GPU work structures as discovered by
  303. twobitcoins.
  304. - usb_cleanup() without locking.
  305. - Use curl_easy_cleanup to close any open stratum sockets.
  306. - Show pool number in switch message
  307. - Don't start testing any pools with the watchpool thread if any of the test
  308. threads are still active.
  309. - Set sockd to false should curl setup fail on stratum.
  310. - Close any open sockets when reusing a curl handle and reopen the socket
  311. whenever we're retrying stratum.
  312. - Set pool died on failed testing to allow idle flag and time to be set.
  313. - Remove unused pthread_t typedefs from struct pool.
  314. - Perform pool_resus on all pools that are found alive with the test pool
  315. threads.
  316. - Use pool_unworkable in select_balanced as well.
  317. - Differentiate pool_unusable from pool_unworkable.
  318. - Keep a connection open on higher priority stratum pools to fail back to them.
  319. - Rename threads according to what pool they're associated with as well.
  320. - Set the wrong bool in pool_active
  321. - Start the stratum thread only if we successfully init and authorise it,
  322. otherwise unset the init flag.
  323. - Make the initialisation of the stratum thread more robust allowing the
  324. watchpool thread safe access to it after the stratum thread is started.
  325. - API no longer ignore send() status
  326. - API make the main socket non-static
  327. Version 2.11.1 - March 7, 2013
  328. - Shorten the time before keepalive probes are sent out and how frequently
  329. they're sent with stratum curls.
  330. - Only set stratum auth once to prevent multiple threads being started.
  331. - Display select return value on select fail in stratum thread.
  332. - Clear the socket of anything in the receive buffer if we're going to retry
  333. connecting.
  334. - Allow pools to be resuscitated on first startup by the watchpool thread.
  335. - Check all pools simultaneously at startup switching to the first alive one to
  336. speed up startup.
  337. - Clear just the socket buffer when we don't care what is left in a stratum
  338. socket.
  339. - Clear the stratum socket whenever we are closing it since the buffer is going
  340. to be reused.
  341. - Do not continue work from a stratum pool where the connection has been
  342. interrupted.
  343. - Reset stratum_notify flag on suspend_stratum as well.
  344. - Close any sockets opened if we fail to initiate stratum but have opened the
  345. socket.
  346. - Close any existing stratum socket if we are attempting to restart stratum so
  347. the pool knows the connection has gone.
  348. - Show mechanism of stratum interruption if select times out.
  349. - Make stratum connection interrupted message higher priority to be visible at
  350. normal logging levels.
  351. - Implement client.show_message support for stratum.
  352. - API add 'Network Difficulty' to 'coin'
  353. - Setup BFLSC support
  354. - API use control_lock when switching pools
  355. - Make sure to retry only once with noresume support for stratum.
  356. - Instead of keeping track of when the last work item was generated to keep
  357. stratum connections open, keep them open if any shares have been submitted
  358. awaiting a response.
  359. - usbutils.c copy full size to 'Last Command'
  360. - configure - set USE_USBUTILS when usbutils is required and use it in the code
  361. - Clear last pool work on switching pools if the current pool supports local
  362. work generation or we are in failover only mode.
  363. - make rw locks: mining_thr_lock and devices_lock
  364. - Release MMQ device only once (not 4 times)
  365. - api.c fix MSG overlap
  366. - Hotplug - allow setting interval via --hotplug or API
  367. - curses - fix - put a dev_width inside #ifdef
  368. - usb_cleanup() use correct locking mechanism
  369. - Implement and use usb_cleanup() on shutdown or restart
  370. - miner.php report 'Last Valid Work' as time before request
  371. - API - return Last Valid Work
  372. - api -> drv
  373. - ZTX bug set missing drv_id
  374. Version 2.11.0 - March 2, 2013
  375. - Update kernel file names signifying changes.
  376. - Update a pool's last work time when the work is popped as well as staged.
  377. - API always report failed send() replies
  378. - Update diff stale: total and pools when stratum throws away shares
  379. - Keep stratum connections open for 2 minutes after the last work item was
  380. staged to allow stray shares to be submitted on pool switching.
  381. - Try to extract the sessionid associated with mining.notify on 3rd level array
  382. and submit it along with the userid to support mining resume, failing gracefully
  383. and restarting if the pool rejects it.
  384. - Speed up watchdog interval and therefore display updates to 2 seconds.
  385. - Update copyright dates.
  386. - Cope with misread sessionid on stratum for now.
  387. - Use constants from the array of __constants throughout the diablo kernel.
  388. - Create a __constant array for use within diablo kernel.
  389. - Fix --benchmark generating valid work for cgminer.
  390. - Use the sessionid as passed on stratum connect to attempt to resume a
  391. connection once and then clear it if it fails, to use a new connection.
  392. - Move to storing the nonce1 in the work struct instead of the sessionid for the
  393. now defunct first draft mining.resume protocol.
  394. - Use global constant arrays for all other constants used in scrypt kernel.
  395. - Use global __constants for sha functions in scrypt kernel.
  396. - Use constants for endian swap macros.
  397. - Revise scrypt kernel copyright notice.
  398. - Separate out additions in scrypt kernel.
  399. - Reuse some Vals[] variables that can be assigned to constants earlier in the
  400. poclbm kernel, making for fewer ops.
  401. - Put all constants used in poclbm kernel into __const memory array to speed up
  402. concurrent reads on the wavefront.
  403. - BFL stop 1st init command if no device
  404. - Add a get_queued function for devices to use to retrieve work items from the
  405. queued hashtable.
  406. - Bugfix: Duplicate stratum sessionid when copying work, to avoid double-free
  407. - Bugfix: Missing pool_no parameter to applog for no-stratum-sessionid debug
  408. message
  409. - Add the choice of hash loop to the device driver, defaulting to hash_sole_work
  410. if none is specified.
  411. - Add comments.
  412. - Add a driver specific flush_work for queued devices that may have work items
  413. already queued to abort working on them on the device and discard them.
  414. - Flush queued work on a restart from the hash database and discard the work
  415. structs.
  416. - Create a central point for removal of work items completed by queued device
  417. drivers.
  418. - Create a fill_queue function that creates hashtables of as many work items as
  419. is required by the device driver till it flags the queue full.
  420. - Create the hash queued work variant for use with devices that are fast enough
  421. to require a queue.
  422. - Update copyright year.
  423. - Fix tv_lastupdate being made into tv_end and update the hashmeter on cycle,
  424. not opt_log_interval.
  425. - Fix tv_lastupdate being made into tv_end and update the hashmeter on cycle,
  426. not opt_log_interval.
  427. - Only continue submitting shares with mining.resume support on stratum when the
  428. session id matches.
  429. - Provide support for mining.resume with stratum, currently re-authorising after
  430. successful resumption pending finalising of the protocol process.
  431. - Provide basic framework for restarting stratum depending on whether resume
  432. support exists or not.
  433. - Abstract out the setting up of the stratum curl socket.
  434. - Free sessionid in clean_work and remove redundant setting of strings to NULL
  435. since the whole work struct is zeroed.
  436. - Only clear stratum shares mandatorily on stratum dropouts when the pool does
  437. not support resume.
  438. - Try resubmitting stratum shares every 5 seconds for up to 2 minutes if the
  439. pool session id exists and matches on failure to submit.
  440. - Do as much outside of mutex locking of sshare_lock as possible.
  441. - Remove last reference to struct work used outside the sshare_lock in
  442. submit_work_thread
  443. - Unlock the sshare_lock in submit_work_thread when all references to work and
  444. sshare are complete.
  445. - Add timestamps to stratum_share structs as they're generated and copy the
  446. stratum sessionid if it exists to stratum work generated.
  447. - Store session id for stratum if the pool supports it for future mining.resume
  448. support.
  449. - API.java allow partial reads
  450. - debug_cb buffer type warning
  451. - MMQ rewrite the last of the old scanhash loop and drastically reduce CPU
  452. - hash_sole_work can be static
  453. - Make the numbuf larger to accept larger scrypt parameters.
  454. - Keep the unique id of each work item across copy_work to prevent multiple work
  455. items having the same id.
  456. - Abstract out the main hashing loop to allow us to use a separate loop for
  457. devices that are fast enough to require queued work.
  458. - Provide a noop thread_enable function for drivers that don't support it.
  459. - Provide a noop thread_shutdown function for drivers that don't support it.
  460. - Provide a noop hw_error function for drivers that don't support it.
  461. - Provide a noop prepare_work for drivers that don't support it.
  462. - Provide a noop thread_init for drivers that don't support it.
  463. - Provide a noop can_limit_work for devices that don't support it.
  464. - Provide a noop thread_prepare function for drivers that don't use
  465. thread_prepare.
  466. - Use blank_get_statline_before for GPU devices that don't support adl
  467. monitoring.
  468. - Provide a noop get_stats function for drivers that don't support it.
  469. - Provide a blank get_statline for drivers that don't support it.
  470. - Provide a blank get_statline_before function for drivers that don't have one.
  471. - Fill drivers missing reinit_device with a noop version.
  472. - add 'count' to cumstomsummarypage 'calc'
  473. - hotplug use get_thread() where appropriate
  474. - convert sleep(const) to nmsleep()
  475. - remove empty #ifdef
  476. - call a separate get_devices() with locking, as required
  477. - usbutils - avoid free cgusb twice
  478. - usbutils hotplug v0.1
  479. - Report USB nodev as ZOMBIE on the screen
  480. - Change file modes.
  481. Version 2.10.5 - February 7, 2013
  482. - Fix logic fail on partial writes with stratum send that was leading to corrupt
  483. message submissions.
  484. - Do not consider every call to stratum_resumed a pool recovery unless it was
  485. actually idle.
  486. - Do not enable the pool disable on reject feature unless explicitly enabled
  487. with --disable-rejecting.
  488. - Stratum disconnect shares - count total against stale
  489. - Use sanity checking to prevent a possible overflow with invalid data being
  490. given by the pool for difficulty as reported by luke-Jr.
  491. - Check for calloc failure for completeness in gen_stratum_work.
  492. - Cache the coinbase length to speed up stratum work generation.
  493. - Cache the header length when generating stratum work to avoid calculating it
  494. on every work generation, and to only need one alloc+sprintf, speeding up work
  495. generation.
  496. - Use heap ram for coinbase in gen_stratum_work, zeroing it before use.
  497. - Provide a wrapper for aligning lengths of size_t to 4 byte boundaries.
  498. - Fix memory leak on stratum share submission.
  499. - Zero the best share string memory when zeroing stats.
  500. Version 2.10.4 - December 29, 2012
  501. - Change the pool stratum socket buffer to be dynamically allocated to
  502. accomodate any size coinbase and keep receiving data in recv line for up to 60s
  503. if no end of line has been received.
  504. - Differentiate socket full from sock full.
  505. - Allow stratum to startup without notify but check it is valid before creating
  506. stratum work.
  507. - Do not try to generate stratum work unless the notify command has succeeded.
  508. - Reset total diff1 shares when zeroing stats as well to show correct work
  509. utility.
  510. Version 2.10.3 - December 26, 2012
  511. - Do not give the share submission failure message on planned stratum
  512. disconnects.
  513. - Parse anything in the stratum socket if it's full without waiting. Empty the
  514. socket even if a connection is not needed in case there are share returns.
  515. - Provide a mechanism to zero all the statistics from the menu.
  516. - Display the current pool diff in the status line.
  517. - Display block diff in status line.
  518. - Generalise the code for solving a block to enable block solve detection with
  519. scrypt mining.
  520. - Generate the output hash for scrypt as well and use the one function to set
  521. share_diff.
  522. - Use the flip80 function in regeneratehash and the correct sized hash array.
  523. - Use one size for scratchbuf as a macro in scrypt.c
  524. - Stage work outside of the stgd lock to prevent attempted recursive locking in
  525. clone_available.
  526. - share_diff needs to be performed on a BE version of the output hash to work,
  527. leading to false best_share values as spotted by luke-Jr.
  528. - Remove the unused sha224 functions.
  529. - Use the flip functions in hashtest.
  530. - Simplify the setting of the nonce data field in work on submitting nonces.
  531. - Scrypt code does not enter the hashtest function.
  532. - Go back to cloning available work under staged lock.
  533. - Updated links to AMD APP SDK
  534. - Updated link to ADL SDK
  535. - scrypt_diff uses a uint64_t as well.
  536. - Correct target for stratum support with scrypt mining.
  537. - libztex: fixed a typo
  538. - libztex: check returnvalue of libusb_claim_interface() and release the
  539. interface in case of early exit
  540. Version 2.10.2 - December 19, 2012
  541. - Stop all work from the current pool if it's a stratum pool once it is
  542. disconnected since it will be invalid upon reconnecting.
  543. - Discard all staged work from stratum pools as well as the shares upon
  544. disconnection since all the work becomes invalid.
  545. - Use correct cbreak after 15 second delay when no pool is found alive.
  546. - MMQ missing firmware -> ERR not DEBUG
  547. - Allow stratum to work with scrypt.
  548. - MMQ ensure delta clock can never exceed limits
  549. - MMQ lowercase new string constants
  550. - MMQ add api pgaset for clock
  551. - API V1.23 - new pgaset command, to be used soon
  552. - Protect the best_share/best_diff values under control lock.
  553. - MMQ style police
  554. - MMQ count work check timeout failures
  555. - MMQ allow partial work replies and count them
  556. - Check a stratum pool hasn't gone dead while being a backup pool and missed
  557. having its idle flag cleared.
  558. - MMQ overheat: remove clockdown (doesn't help) + ensure no lost shares
  559. - API-README grammar
  560. - API-README explain custom page extensions in miner.php
  561. - miner.php add a sample group pool report
  562. - miner.php allow where,group,having on cumstom pages
  563. Version 2.10.1 - December 14, 2012
  564. - Check for EWOULDBLOCK when supported in send and recv as well.
  565. - Use the raw send() command instead of curl_easy_send since curl raw socket
  566. usage introduces random bugs on windows.
  567. - Use raw recv() command in place of curl_easy_recv since the curl
  568. implementation introduces random bugs on windows builds when the recv fails.
  569. - miner.php when displaying a single rig, add prev/next rig buttons if they
  570. exist, next to refresh
  571. - miner.php allow custom page joins for STATS
  572. - API show if pool has GBT (so people know not to use that pool)
  573. - miner.php - include windows easyphp link
  574. - driver-ztex: use the correct size for the swap array
  575. - API stats - display pool byte transfer stats
  576. - Pool store data transfer stats
  577. - README ModMiner dependency
  578. - Benchmark incorrect work size
  579. - ChangeLog refer to NEWS
  580. - MMQ handle over temp differently and hash longer
  581. - driver-ztex: search the complete noncerange based on the actual speed
  582. - README - update ModMiner details
  583. - API-README update
  584. - api use a dynamic io buffer, truncated before it reaches the current ~64k
  585. limit
  586. Version 2.10.0 - December 10, 2012
  587. - Include prctl header for thread renaming to work.
  588. - Set tv_idle time if a pool is not active when input from the menu.
  589. - usb display message when device is in use/another cgminer
  590. - libztex: avoid the use of libusb_error_name()
  591. - minor unlikely zero pointer test
  592. - BeaverCreek doesn't like BFI INT patching.
  593. - Only stratum pools that are idle need to be kicked via cnx_needed.
  594. - mmq - abbreviate the temperature numbers
  595. - Do not do any setup if opt_api_listen is disabled in api.c.
  596. - usbutils.c uninitialised usbstat for non-primary mmqs
  597. - Only set the lagging flag for select_pool() on failed getwork if we're not in
  598. opt_fail_only mode.
  599. - libztex: in case the selectFpga() failed set the selected fpga to unknown
  600. - Modified windows-build.txt to update git instructions.
  601. - libztex: use a function for the twice called firmware reset code
  602. - libztex: removed an unused struct member (ztex->valid)
  603. - driver-ztex: support for broken fpga on a multifpga board
  604. - Set the pool lagging flag on startup to avoid it being shown initially, and
  605. only unset it once the maximum number of staged work items has been reached.
  606. - Avoid recursive locking of the stgd lock.
  607. - Return value of keep_sockalive is no longer used.
  608. - Remove dependency on mstcpip.h for windows build by making curl version >=
  609. 7.25.0 mandatory on windows builds, and use curl functions for keepalive
  610. whenever possible instead.
  611. - Make main() the getwork scheduler once everything is set up, so that all app
  612. exits use the kill_work and quit paths.
  613. - ztex: more style and whitespace fixes
  614. - libztex: silenced another warning
  615. - Set successful connect to true on auth stratum to allow summary on exit from
  616. single stratum pool.
  617. - Only consider work stale for stratum of different job_id if it's not a share.
  618. - Increment version preempting changed version signifying different codebase to
  619. 2.9
  620. - Hash_pop should signal further waiters on its own pthread conditional in case
  621. there are multiple waiters.
  622. - Check the job_id has not changed on stratum work when deciding if the work is
  623. stale as might occur across disconnections.
  624. - Perform pool_resus on getwork pool that generates work in getwork_thread.
  625. - Set pool lagging message for getwork pool that falls to zero staged in getwork
  626. thread.
  627. - Stage extra work when the primary pool is a getwork pool without rolltime.
  628. - Do not try to clean up twice if kill message is given.
  629. - Only recalculate total_staged in getwork thread if required.
  630. - Include the correct config header in libztex and include it before other
  631. includes.
  632. - Implement a completely new getwork scheduler. Stage all work from the one
  633. thread, making it possible to serialise all requests minimising the number of
  634. getworks requested or local work generated. Use a pthread conditional to wake up
  635. the thread whenever work is removed to generate enough work to stay above the
  636. watermark set by opt_queue. Remove all remnants of the old queueing mechanism,
  637. deleting the now defunct queued count.
  638. - libztex: fixed some warnings and removed some whitespaces
  639. - libztex: silenced some warnings
  640. - Remove all references to the now unused workio_cmd structure.
  641. - Remove the old workio command queue thread, replacing it with a kill
  642. conditional to exit the program.
  643. - Remove getwork command from workio_cmd queues and do them directly from
  644. queue_request.
  645. - Begin tearing down the old workio command queues by removing submit commands
  646. from there and submit them asynchronously via their own threads.
  647. - Update windows build instructions.
  648. - Set pool probed to true on successful authorisation with stratum to avoid it
  649. being pinged later with pool_getswork.
  650. - driver-ztex: libztex_setFreq() must be called before ztex_releaseFpga()
  651. - driver-ztex: changed two pairs of malloc()/memset() to calloc()
  652. - libztex: Read bitstream file in 2kb blocks with simpler and faster code
  653. - Added the binary versions of ztex_ufm1_15d4.ihx and ztex_ufm1_15y1.ihx
  654. - Trivial space removal.
  655. - libztex: Add firmware download support for ZTEX 1.15d and 1.15x
  656. - libztex: Factor out local version of libusb_get_string_descriptor_ascii()
  657. - Shut up some boring old cpu warnings.
  658. - Style changes.
  659. - Allow pool active to be called on stratum or disabled pools in the watchpool
  660. thread if the pool has not been probed.
  661. - libztex: Make log messages say bitstream when refering to bitstreams
  662. - libztex: Don't return error when a bitstream was already configured
  663. - libztex: Read bitstream file in 64kb blocks with simpler and faster code
  664. - libztex: Verify that the mining firmware is not a dummy firmware
  665. - libztex: Match mining firmware ZTEX descriptor against the dummy firmware
  666. - Combine shared padding into one char.
  667. - libztex: Start download sequence only after reading in the new firmware
  668. - libztex: Download mining firmware to all devices with dummy firmware
  669. - lock (most of) the threaded statistics updates
  670. - README stats don't add up
  671. - usbutils.c remove compiler warning
  672. - Make need connection return true if a pool is idle.
  673. - API add Best Share to summary
  674. - Check on creating new GBT work if the structures are up to date and update
  675. them as required rather than regularly.
  676. - Update windows build instructions.
  677. - Enable backup stratum connections for getwork when the primary pool doesn't
  678. have longpoll aka solo mining.
  679. - Check for correct absence of opt_fail_only in cnx_needed.
  680. - Remove unused variable.
  681. - The specification for stratum has been elaborated to say that a changed diff
  682. applies only to new work so do not retarget when submitting shares.
  683. - Use a variable length string array in submit_upstream_work to cope with
  684. massive GBT submissions.
  685. - API lock access to some summary statistics (and copy them)
  686. - Suspend stratum connections to backup pools when there is no requirement to
  687. potentially grab work from them.
  688. - Fix missing export for RenameThread.
  689. - enumerate the mining threadnames
  690. - MMQ avoid possible number overrun crashes
  691. - mmq usb v0.4 + api usb stats
  692. - setting the name of the threads for linux,freebsd,openbsd and osx code is
  693. borrowed from bitcoins util.c, so it is already tested
  694. - Don't show broken WU value with scrypt mining.
  695. - Style police.
  696. - Remove unused getwork times in getswork.
  697. - Fix readme wordwrap.
  698. Version 2.9.6 - December 2, 2012
  699. - Make gen_stratum_work more robust by using a dynamically allocated array for
  700. the header in case bogus data is sent by the pool to avoid overflowing a static
  701. array.
  702. - scrypt_diff now returns a uint64_t
  703. - Support monitoring and reporting much higher diffs for scrypt mining,
  704. truncating irrelevant zeroes from displayed hash.
  705. - Pass ostate values around in scrypt to be able to extract full hashes if
  706. needed later on.
  707. - Since we will be using calloc_str to put a string into it, convert the
  708. function to calloc_strcat which does it automatically.
  709. - Revert "Handle crash exceptions by trying to restart cgminer unless the
  710. --no-restart option is used."
  711. - Count longpoll and GBT decodes as queued work since the count otherwise
  712. remains static.
  713. - Use the string helper functions to create gbt blocks of any length.
  714. - Provide helper functions calloc_str and realloc_strcat to create and extend
  715. arbitrary length arrays based on string length.
  716. Version 2.9.5 - November 25, 2012
  717. - fixes target calc for mips openwrt
  718. - openwrt needs roundl
  719. - Get rid of unused last_work in opencl thread data.
  720. - Do away with the flaky free_work api in the driver code which would often lose
  721. the work data in opencl and simply flush it before exiting the opencl scanhash.
  722. - Use base_work for comparison just for cleanness in __copy_work
  723. - Remove all static work structs, using the make and free functions.
  724. - Add pool no. to stale share detected message.
  725. - Add info about which pool share became stale while resubmitting.
  726. -b Copy the work on opencl_free_work
  727. - Add an extra slot in the max backlog for ztex to minimise dupes.
  728. - Do not use or count the getworks submitted which are simply testing that pools
  729. are still up. This was increasing share leakage and making stats not reflect
  730. real work.
  731. - Track all dynamically allocated memory within the work struct by copying work
  732. structs in a common place, creating freshly allocated heap ram for all arrays
  733. within the copied struct. Clear all work structs from the same place to ensure
  734. memory does not leak from arrays within the struct. Convert the gbt coinbase and
  735. stratum strings within the work struct to heap ram. This will allow arbitrary
  736. lengths without an upper limit for the strings, preventing the overflows that
  737. happen with GBT.
  738. - libztex: Work around ZTEX USB firmware bug exposed by the FreeBSD libusb
  739. - opencl: Use new dev_error function for REASON_DEV_NOSTART
  740. Version 2.9.4 - November 18, 2012
  741. - Provide rudimentary support for the balancing failover strategies with stratum
  742. and GBT by switching pools silently on getwork requests.
  743. - Convert remaining modminer and bfl uses of usleep to nmsleep.
  744. - Convert libztex to nmsleep where possible.
  745. - Convert unreliable usleep calls to nmsleep calls in ztex driver.
  746. - Support workid for block submission on GBT pools that use it.
  747. - Provide rudimentary support for literal ipv6 addresses when parsing stratum
  748. URLs.
  749. - Work around libcurl cflags not working on hacked up mingw installations on
  750. windows.
  751. - Only increase gpu engine speed by a larger step if the temperature is below
  752. hysteresis instead of increasing it to max speed.
  753. - Convert pool not responding and pool alive message on backup pools to verbose
  754. level only since they mean a single failed getwork.
  755. - Update work block on the longpoll work item before calling restart threads to
  756. ensure all work but the longpoll work item gets discarded when we call
  757. discard_stale from restart_threads.
  758. - Do not attempt to remove the stratum share hash after unsuccessful submission
  759. since it may already be removed by clear_stratum_shares.
  760. - Check against a double for current pool diff.
  761. - Support for fractional diffs and the classic just-below-1 share all FFs diff
  762. target.
  763. Version 2.9.3 - November 11, 2012
  764. - Make header larger on gen stratum work to accomodate \0 at the end.
  765. Version 2.9.2 - November 11, 2012
  766. - Use stratum block change from backup pools as an alternative to longpoll for
  767. pools that don't support LP.
  768. - Check share target diff for best_share to be calculated when solo mining.
  769. - Round some more static string arrays to 4 byte boundaries.
  770. - There is no need for the static arrays to be larger than required, so long as
  771. they're 4 byte aligned to appease ARM.
  772. - Store the full stratum url information in rpc_url for correct configuration
  773. file saving.
  774. - Put in a hack to prevent dud work from sneaking into test_work_current being
  775. seen as a new block.
  776. - Reset the work->longpoll flag where it will affect stratum work items as well.
  777. - Check for both coinbase/append and submit/coinbase support before using GBT
  778. protocol.
  779. - First pass through testing for GBT should not set probed to true since we are
  780. about to probe again.
  781. - Hash1 is only used by the deprecated cpu mining code and never changes so
  782. remove it from the work struct and bypass needing to process the value for all
  783. other mining.
  784. - Get a work item once per minute for all getwork and GBT pools to test they're
  785. still alive and to maintain a current GBT template.
  786. - Get a fresh block template with GBT pools on switching to them.
  787. Version 2.9.1 - November 6, 2012
  788. - Reset work flags to prevent GBT shares from being submitted as stratum ones
  789. after switching.
  790. Version 2.9.0 - November 6, 2012
  791. - Add endian swap defines for where missing.
  792. - Only retarget stratum shares to new pool diff if diff has dropped.
  793. - Remove resetting of probed variable when detecting GBT.
  794. - Count lost stratum share submits and increase message priority to warning.
  795. - Only retrieve a new block template for GBT pools that are the current pool.
  796. - Show which pool untracked share messages have come from.
  797. - Add management for dead GBT pools.
  798. - Count lost shares with stratum as submit stale lost.
  799. - Discard record of stratum shares sent and report lost shares on disconnection
  800. since they will never be reported back.
  801. - Swab, don't just swap the bytes in the GBT target.
  802. - Change status window message for GBT connected pools versus LP.
  803. - Generate a gbt work item from longpoll when required to set new block and
  804. message appropriately.
  805. - Use existing pool submit_old bool from gbt data.
  806. - Retrieve a new block template if more than 30 seconds has elapsed since the
  807. last one to keep the data current and test the pool is still alive.
  808. - Update GBT longpollid every time we request a new longpoll.
  809. - Manage appropriate response codes for share submission with GBT.
  810. - Allow the longpoll thread to start with GBT and only set the longpollid once.
  811. - Correct last few components of GBT block generation courtesy of Luke-jr.
  812. - Use correct length for offsetting extra nonce and remaining data.
  813. - Flip all 80 bytes in the flip function which was wrongly named flip256 for its
  814. purpose.
  815. - Calculate midstate for gbt work and remove now unused variable.
  816. - Use a standard function for flipping bytes.
  817. - Insert the extra nonce and remaining data in the correct position in the
  818. coinbase.
  819. - Remove txn size debugging and enlarge gbt block string to prevent overflow.
  820. - Remove varint display debugging.
  821. - Build varint correctly for share submission and sleep 5 seconds before
  822. retrying submit.
  823. - Make gbt_coinbase large enough for submissions, swap bytes correctly to make a
  824. header from GBT and encode the number of transactions in share submission.
  825. - Store the fixed size entries as static variables in GBT in binary form,
  826. byteswapping as is required.
  827. - 32 bit hex encoded variables should be in LE with GBT.
  828. - Target and prevblockhash need to be reversed from GBT variables.
  829. - Construct block for submission when using GBT.
  830. - Use same string for debug as for submission and make string larger to cope
  831. with future GBT messages.
  832. - Skip trying to decipher LP url if we have GBT support.
  833. - Store all the transaction hashes in pool->txn_hashes instead of separating
  834. txn0 and correct generation of merkle root, fixing memory overwrites.
  835. - Hook into various places to generate GBT work where appropriate.
  836. - Create extra work fields when generating GBT work.
  837. - Generate header from correct hashing generation of the merkle root for GBT.
  838. - Generate the merkle root for gbt work generation.
  839. - Create a store of the transactions with GBT in the minimum size form required
  840. to generate work items with a varied coinbase.
  841. - Create a function that generates a GBT coinbase from the existing pool
  842. variables.
  843. - Extract and store the various variables GBT uses when decoding gbt work.
  844. - Check for invalid json result in work_decode.
  845. - Decode work in separate functions for getwork vs gbt.
  846. - Check for the coinbase/append mutable in GBT support to decide whether to use
  847. it or not.
  848. - Add a gbt mutex within the pool struct for protecting the gbt values.
  849. - Convert work decode function to prepare for decoding block templates.
  850. - Check for GBT support on first probing the pool and convert to using the GBT
  851. request as the rpc request for that pool.
  852. - Make the rpc request used with getwork a pool variable to allow it to be
  853. converted to/from gbt requests.
  854. - Changes to build prototypes to support building on FreeBSD 9.1-RC2 amd64
  855. - Free old stratum_work data before replacing it
  856. - There is no need for addrinfo any more.
  857. - server and client sockaddr_in are no longer used in struct pool.
  858. - Merge pull request #322 from luke-jr/bugfix_stratum_tmpwork
  859. - Set sshare id and swork_id within the sshare mutex to avoid multiple share
  860. submits with the same id.
  861. - Initialize temporary stratum work
  862. Version 2.8.7 - October 29, 2012
  863. - Fail on select() failing in stratum thread without needing to attempt
  864. recv_line.
  865. - Add share to stratum database before sending it again in case we get a
  866. response from the pool before it's added.
  867. Version 2.8.6 - October 29, 2012
  868. - Shorten the initiate stratum connect timeout to 30 seconds.
  869. - Shorten the stratum timeout on read to 90 seconds to detect unresponsive pool.
  870. - Display best share difficulty on exit.
  871. - Make stratum socket fail more robust on windows by disabling the send buffer.
  872. - Reuse the same curl handle forcing a new connection instead of risking
  873. derefencing.
  874. - Add information about submission failure to stratum send.
  875. - Only add stratum share to database if we succeeded in submitting it, with a
  876. debug output saying it succeeded.
  877. - Use keepalive with stratum sockets to improve its ability to detect broken
  878. connections.
  879. - Show only the URL in the status bar to avoid long prefixes making for extra
  880. long lines.
  881. - Display compact status in menu and update README to reflect current menu
  882. entries.
  883. - Add a compact display mode that does not list per device statistics in the
  884. status window.
  885. - Add blank spaces after best share displayed.
  886. - Round a few static string arrays up to 4 byte boundaries for ARM.
  887. - Display best share diff for scrypt as well.
  888. - Show the best diff share as "best share" and add info to the README.
  889. - Display the best diff share submitted so far.
  890. - Redundant check.
  891. - The work struct pointer in struct pc_data in findnonce is never freed yet
  892. there is no need to allocate it separately so make struct work a static part of
  893. the struct pc_data. s
  894. Version 2.8.5 - October 23, 2012
  895. - Handle crash exceptions by trying to restart cgminer unless the --no-restart
  896. option is used.
  897. - Switch queued count when choosing a different pool from a failed stratum pool
  898. in getwork thread.
  899. - Put a mandatory 5s wait between reattempting a getwork on failure to avoid
  900. hammering requests.
  901. - The ATI stream / AMD APP SDK environment variables appear to only interfere
  902. with win32 builds so bypass them.
  903. - Make sure to check pool stratum curl exists under lock before attempting any
  904. recv to not risk dereferencing upon attempting to reinitiate stratum.
  905. - Avoid redefining macros and align to 4 byte boundaries.
  906. - API - add Stratum information to pools
  907. - update FPGA-README for MMQ
  908. Version 2.8.4 - October 18, 2012
  909. - Time for dynamic is in microseconds, not ms.
  910. - x86_64 builds of mingw32 are not supported directly and should just configure
  911. as generic mingw32 builds since they're NOT 64 bit.
  912. - Cope with both ATI stream and AMD APP SDK roots being set when building.
  913. - Use 3 significant digits when suffix string is used and values are >1000.
  914. - MMQ new initialisation (that works) and clocking control
  915. - Get rid of unused warning for !scrypt.
  916. - Use select on stratum send to make sure the socket is writeable.
  917. - Cope with dval being zero in suffix_string and display a single decimal place
  918. when significant digits is not specified but the value is greater than 1000.
  919. - Pad out the suffix string function with zeroes on the right.
  920. - Failure to calloc in bin2hex is a fatal failure always so just check for that
  921. failure within the function and abort, simplifying the rest of the code.
  922. - Provide locking around the change of the stratum curl structures to avoid
  923. possible races.
  924. - Bump opencl kernel version numbers.
  925. - Remove atomic ops from opencl kernels given rarity of more than once nonce on
  926. the same wavefront and the potential increased ramspeed requirements to use the
  927. atomics.
  928. - Clear the pool idle flag in stratum when it comes back to life.
  929. - Display correct share hash and share difficulty with scrypt mining.
  930. - Use explicit host to BE functions in scrypt code instead of hard coding
  931. byteswap everywhere.
  932. - Show work target diff for scrypt mining.
  933. - Ease the checking on allocation of padbuffer8 in the hope it works partially
  934. anyway on an apparently failed call.
  935. - Watch for buffer overflows on receiving data into the socket buffer.
  936. - Round target difficulties down to be in keeping with the rounding of detected
  937. share difficulties.
  938. - Dramatically simplify the dynamic intensity calculation by oversampling many
  939. runs through the opencl kernel till we're likely well within the timer
  940. resolution on windows.
  941. - String alignment to 4 byte boundaries and optimisations for bin<->hex
  942. conversions.
  943. - In opencl_free_work, make sure to still flush results in dynamic mode.
  944. - Align static arrays to 4 byte boundaries to appease ARM builds for stratum.
  945. Version 2.8.3 - October 12, 2012
  946. - Left align values that are suffix_string generated.
  947. - Share_diff should not be converting the work data to hex.
  948. - Off by one error.
  949. - Prevent overflows of the port char array in extract_sockaddr.
  950. - Disable stratum detection with scrypt.
  951. - Use the suffix string function when displaying device hashrates.
  952. - Be consistent with the get_statline function.
  953. - Use the suffix string function for displaying hashrate with 4 significant
  954. digits.
  955. - Display the actual share diff next to the pool required diff, using a suffix
  956. creation function to prevent values of >1000 being shown in their entirety.
  957. - Fix 4 * 0 being 0 that would break dynamic intensity mode.
  958. - Fix wrong byteswap macro being used on mingw32 which was breaking target
  959. generation on stratum.
  960. Version 2.8.2 - October 11, 2012
  961. - Reinstate the history on dynamic intensity mode to damp fluctuations in
  962. intensity but use an upper limit on how much the value can increase at any time
  963. to cope with rare overflows.
  964. - Create a fix-protocol option which prevents cgminer from switching to stratum
  965. if it's detected.
  966. - Simplify target generation code.
  967. - Add support for client.get_version for stratum.
  968. - Use a 64 bit unsigned integer on the diff target to generate the hex target.
  969. - Update reconnect message to show whole address including port.
  970. - Look for null values and parse correct separate array entries for url and port
  971. with client reconnect commands for stratum.
  972. - The command for stratum is client.reconnect, not mining.reconnect.
  973. - Only copy the stratum url to the rpc url if an rpc url does not exist.
  974. - Implement rudimentary mining.reconnect support for stratum.
  975. - Ignore the value of stratum_active on calling initiate_stratum and assume
  976. we're always trying to reinitiate it, and set the active flag to false in that
  977. function.
  978. - stratum auth can be unset if we fail to authorise on subsequent calls to
  979. auth_stratum which undoes the requirement of setting it in one place so set it
  980. in pool_active.
  981. Version 2.8.1 - October 8, 2012
  982. - Use the stratum url as the rpc url advertised if we switch to it.
  983. - Count an invalid nonce count as a hardware error on opencl.
  984. - Count each stratum work item as local work.
  985. - Cope with one stratum pool being the only active pool when it dies by sleeping
  986. for 5 seconds before retrying to get work from it instead of getting work
  987. indefinitely.
  988. - Detect stratum outage based on either select timing out or receiving an empty
  989. buffer and properly re-establish connection by disabling the stratum_active
  990. flag, coping with empty buffers in parse_stratum.
  991. Version 2.8.0 - October 7, 2012
  992. - Major upgrade - support for the stratum mining protocol.
  993. - Fix various modminer warnings on mingw.
  994. - Fix sign warning on windows build for bitforce.
  995. - Cast socketfail to integer since SOCKET is an unsigned int on windows.
  996. - Use strtod not strtol for bitforce temp backup.
  997. - Cope with broken drivers returning nonsense values for bitforce temperatures.
  998. - Minor warning fixes.
  999. - Use the stratum thread to detect when a stratum pool has died based on no
  1000. message for 2 minutes.
  1001. - Only set the stratum auth flag once and once the stratum thread is started,
  1002. use that to set/unset the stratum active flag.
  1003. - Only hand off to stratum from getwork if we succeed in initiating the
  1004. protocol.
  1005. - Target should only be 32 bytes copied.
  1006. - Use a static array for work submission data instead of stack memory.
  1007. - Clear the buffer data before sprinting to it.
  1008. - Clear work stratum strings before setting them and add them to debug output.
  1009. - Drop stratum connect failed message to verbose level only since it's a regular
  1010. probing message.
  1011. - TCP Keepalive in curl is only in very recent versions and not required with
  1012. regular messages on stratum anyway.
  1013. - Move stratum sockets to curl infrastructure with locking around send+recv to
  1014. begin support for proxies and ssl.
  1015. - Make detect stratum fail if a proxy has been set up.
  1016. - Stratum does not currently have any proxy support so do not try to switch to
  1017. stratum if a proxy has been specified.
  1018. - Windows doesn't work with MSG_PEEK on recv so move to a continuously updating
  1019. buffer for incoming messages.
  1020. - Alloca is unreliable on windows so use static arrays in util.c stratum code.
  1021. - Begin support for mingw stratum build.
  1022. - Add space to reject reason.
  1023. - Parse the reject reason where possible from stratum share submission.
  1024. - Pass json error value to share result function to be able to parse reject
  1025. reason in stratum.
  1026. - Don't try to parse unneeded parameters in response to mining.subscribe.
  1027. - Remove the sshare hash entry if we failed to send it.
  1028. - Change notify message to info level to avoid spamming repeatedly when a pool
  1029. is down.
  1030. - Check the stratum pool difference has not changed compared to the work diff
  1031. when testing whether a share meets the target or not and retarget if necessary.
  1032. - Bit error in target calculation for stratum.
  1033. - Set work_block in gen_stratum_work for when work is reused to avoid thinking
  1034. it's all stale.
  1035. - Offset the current block detection to the prev block hash.
  1036. - We should be testing for id_val, not id in parse stratum response.
  1037. - Make target on stratum scale to any size by clearing sequential bits according
  1038. to diff.
  1039. - Correct target calculation in gen_stratum_work.
  1040. - If a share result has an error code but still has an id, it is likely a
  1041. reject, not an error.
  1042. - Initiate stratum the first time in pool_active only, allowing us to switch to
  1043. it on getting a failed getwork and detecting the presence of stratum on the url
  1044. at that time.
  1045. - Use 5 second timeout on sock full for now as a temporary workaround.
  1046. - If no stratum url is set by the end of the detect stratum routine, copy the
  1047. sockaddr url.
  1048. - Make all buffers slightly larger to prevent overflow.
  1049. - Make the stratum recv buffer larger than the recvsize.
  1050. - Userpass needs to be copied to user and pass earlier to allow stratum
  1051. authorisation to work with it.
  1052. - Store a sockaddr url of the stripped url used in determining sockaddr to not
  1053. confuse it with the stratum url and fix build warnings.
  1054. - Decrease the queued count with stratum work once it's staged as well.
  1055. - Allow the stratum retry to initiate and auth stratum in pool_alive to make
  1056. sure the stratum thread is started.
  1057. - Avoid duplicating pool->rpc_url and setting pool->stratum_url twice to itself.
  1058. - Detect if a getwork based pool has the X-Stratum header on startup, and if so,
  1059. switch to the stratum based pool.
  1060. - Comment update.
  1061. - Minor message change.
  1062. - Create a work item from a "clean" request from stratum allowing the new block
  1063. to be detected and the appropriate block change message to be given.
  1064. - Use statically allocated stratum strings in struct work to cope with the
  1065. inability to safely deallocate dynamically allocated ram.
  1066. - Use the current pool when deciding whether to reuse work from a stratum source
  1067. rather than the work's previous pool.
  1068. - Copy the stratum url to the rpc url to avoid none being set.
  1069. - Provide locking around stratum send operations to avoid races.
  1070. - Submit shares from stratum through the abstracted submit share function
  1071. detecting what message they belong to and showing the data from the associated
  1072. work, and then deleting it from the hash.
  1073. - Use a more robust mechanism to obtain a \n terminated string over a socket.
  1074. - Abstract out share submit as a function to be useable by stratum.
  1075. - Rename parse_stratum to parse_method as it is only for stratum messages that
  1076. contain methods.
  1077. - Display stratum as mechanism in status line when current pool is running it.
  1078. - Count each stratum notify as a getwork equivalent.
  1079. - Correct nonce submitted with share.
  1080. - Extranonce2 should be added before coinbase2.
  1081. - We should be hashing the binary coinbase, not the hex one.
  1082. - Fix endianness of nonce submitted for stratum.
  1083. - Check that stratum is already active in initiate_stratum to avoid
  1084. de-authorising ourselves by subscribing again.
  1085. - Begin implementing a hash database of submissions and attempt sending results.
  1086. - Copy parameters from stratum work required for share submission.
  1087. - Set lagging flag on first adding a pool to prevent pool slow warning at
  1088. startup.
  1089. - Fix work->target being a 32 byte binary in gen_stratum_work.
  1090. - Store and display stripped url in its own variable.
  1091. - Create machinery to divert work requests to stratum.
  1092. - Generate the work target in gen_stratum_work, setting default diff to 1 in
  1093. case it is not yet set.
  1094. - Generate work data, midstate and hash1 in gen_stratum_work.
  1095. - Generate header created from stratum structures in gen_stratum_work.
  1096. - Generate merkle root hash in gen_stratum_work.
  1097. - Generate the coinbase for generation of stratum based work.
  1098. - The number of transactions is variable so make merkle a variable length
  1099. dynamically allocated array and track how many there are for stratum.
  1100. - Rename nonce2 to n2size reflecting that it's a size variable and not the
  1101. actual nonce.
  1102. - Provide rudimentary support for stratum clean work command in the stratum
  1103. thread.
  1104. - Cope with pools being removed in the stratum thread.
  1105. - Use the pool sock value directly in the stratum thread in case it changes
  1106. after reconnecting.
  1107. - Create a stratum thread per pool that has stratum that monitors the socket and
  1108. serves received data.
  1109. - Check return value of stratum_parse.
  1110. - Complete authorisation in stratum.
  1111. - Implement stratum parsing of notify parameters and storing them in the pool
  1112. stratum work structure.
  1113. - Create helper functions for duplicating json strings to avoid keeping json
  1114. references in use.
  1115. - Append \n in the sock_send function instead of adding it when constructing
  1116. json in stratum.
  1117. - Don't keep any json references around with stratum structures.
  1118. - Create parse_stratum function that hands off stratum parameters to other
  1119. functions to manage pool stratum work struct variables. Implement mining
  1120. difficulty setting.
  1121. - Create helper functions for checking when a socket is ready to read on and
  1122. receive a single line at a time. Begin stratum authorisation process.
  1123. - Provide a helper function for reading a single \n terminated string from a
  1124. socket.
  1125. - Create a stratum work structure to store current work variables.
  1126. - Test specifically for stratum being active in pool_active.
  1127. - Detect stratum in common place when adding urls, and use a bool to tell us
  1128. when it's active.
  1129. - Fix warnings.
  1130. - Extract and store various parameters on stratum init confirming successful
  1131. mining notify.
  1132. - Use existing socket macros and close the socket on failure in init stratum.
  1133. - Initiate stratum and grab first json result.
  1134. - Get detailed addressinfo from the parsed URL for future raw socket usage when
  1135. possible. IPV4 only for now.
  1136. - Prepare for getaddrinfo call.
  1137. - Add data structures to pool struct for socket communications.
  1138. - Put all socket definitions in util.h to allow reusing by added socket
  1139. functions to be used in util.c.
  1140. Version 2.7.7 - October 7, 2012
  1141. - Fix unused warnings on ming build.
  1142. - Fix sign warning in ocl.c
  1143. - fds need to be zeroed before set in modminer.
  1144. - Put scrypt warning on separate line to avoid 0 being shown on windows as
  1145. bufsize.
  1146. - Display correct pool number when block is found.
  1147. - Prevent corrupt values returned from the opencl code from trying to read
  1148. beyond the end of the buffer by masking the value to a max of 15.
  1149. - Icarus USB write failure is also a comms error
  1150. - api.c DEBUG message has no paramter
  1151. - Icarus catch more USB errors and close/reopen the port
  1152. - API-README update cgminer verison number
  1153. - hashmeter fix stats kh/s on 32bit windows
  1154. Version 2.7.6 - September 24, 2012
  1155. - Reorder libztex header include order to fix missing struct definition.
  1156. - Display share difficulty on log with a shortened hash display on submission.
  1157. - API stats add some pool getwork difficulty stats
  1158. - Ignore any pings pushed to the worker threads if the thread is still paused to
  1159. prevent it being enabled and disabled repeatedly.
  1160. - README - FAQ - usermod group - shouldn't remove other groups
  1161. - Test for sequential getwork failures on a pool that might actually be up but
  1162. failing to deliver work as we may end up hammering it repeatedly by mistake.
  1163. - reduce windows compile warnings
  1164. - util.c - bug - proxy - no data end condition
  1165. - As we average gpu time over 5 work intervals for dynamic GPU intensity, there
  1166. is no need to maintain a rolling average and it avoids the potential long term
  1167. corruption of a single overflow value.
  1168. - Test for the now-automatically exported variable AMDAPPSDKROOT when looking
  1169. for the presence of the OpenCL headers.
  1170. - API don't change 'Diff1 Shares' - backward compatability FTW
  1171. - miner.php highlighting correctly handling difficulty
  1172. - API - Add last share difficulty for devices and pool
  1173. - Store and report Accepted,Rejected,Stale difficulty in the summary and API
  1174. - WorkTime - display prevblock for scrypt
  1175. - api.c remove compile warnings
  1176. - Calculate work difficulty for each getwork and display with WorkTime debug
  1177. - remove MMQ unused variable warning
  1178. - FPGA - allow long or short device names in detect code + style police
  1179. - WorkTime - multiple nonce per work and identify the work source
  1180. - Optional WorkTime details with each Accepted/Rejected work item
  1181. - Icarus - ignore hardware errors in timing mode
  1182. - miner.php oops - mistype
  1183. - miner.php by default don't display IP/Port numbers in error messages
  1184. - api.c all STATUS messages automatically escaped
  1185. - api.c add missing escape for comma in MSG_PGAUNW
  1186. - API add display of and setting queue,scantime,expiry
  1187. - HW: dont submit bad shares
  1188. - save individual pool proxy settings to config
  1189. - --default-config - allow command line to define the default configuration file
  1190. for loading and saving
  1191. - API-README update for pools proxy info
  1192. - README URL proxy must use quote so show in the example
  1193. - bug: remove proxy: from the front of the proxy used
  1194. - CURL support for individual proxy per pool and all proxy types
  1195. - README spelling/etc
  1196. - README - FPGA device FAQ
  1197. - HW: error counter auto for all devices - ztex code not fixed
  1198. - API pgaidentify - unsupported message should be a warning
  1199. - API/BFL identify a device - currently only BFL to flash the led
  1200. - BFL add throttle count to internal stats + API
  1201. - BFL: missing device id in log message
  1202. - miner.php correct to new Diff1 Work field names
  1203. - API add device diff1 work
  1204. - API-README update
  1205. - api.c Correct diff1 field name
  1206. - count device diff1 shares
  1207. - API-README more debug parameter information
  1208. - API allow full debug settings control
  1209. Version 2.7.5 - August 31, 2012
  1210. - Adjust opencl intensity when adjusting thread count to prevent it getting
  1211. pegged at a value below the minimum threads possible.
  1212. - miner.h max_hashes -> int64_t
  1213. - Keep the local block number in the blocks structs stored and sort them by
  1214. number to guarantee we delete the oldest when ageing the block struct entries.
  1215. - Use correct sdk version detection for SDK 2.7
  1216. - Revert "Pick worksize 256 with Cypress if none is specified."
  1217. - Test for lagging once more in queue_request to enable work to leak to backup
  1218. pools.
  1219. - There is no need to try to switch pools in select_pool since the current pool
  1220. is actually not affected by the choice of pool to get work from.
  1221. - Only clear the pool lagging flag if we're staging work faster than we're using
  1222. it.
  1223. - needed flag is currently always false in queue_request. Remove it for now.
  1224. - thr is always NULL going into queue_request now.
  1225. Version 2.7.4 - August 23, 2012
  1226. - Perform select_pool even when not lagging to allow it to switch back if needed
  1227. to the primary.
  1228. - Simplify macros in output kernels avoiding apparent loops and local variables.
  1229. - Carry the needed bool over the work command queue.
  1230. - Move the decision to queue further work upstream before threads are spawned
  1231. based on fine grained per-pool stats and increment the queued count immediately.
  1232. - Track queued and staged per pool once again for future use.
  1233. - OpenCL 1.0 does not have native atomic_add and extremely slow support with
  1234. atom_add so detect opencl1.0 and use a non-atomic workaround.
  1235. - Pools: add RollTime info to API 'stats' and 'Stats' button in miner.php
  1236. Version 2.7.3 - August 22, 2012
  1237. - Minimise the number of getwork threads we generate.
  1238. Version 2.7.2 - August 22, 2012
  1239. - Pick worksize 256 with Cypress if none is specified.
  1240. - Give warning with sdk2.7 and phatk as well.
  1241. - Whitelist sdk2.7 for diablo kernel as well.
  1242. - Only keep the last 6 blocks in the uthash database to keep memory usage
  1243. constant. Storing more is unhelpful anyway.
  1244. - BFL Flash - always distribute source
  1245. - Increase kernel versions signifying changed APIs.
  1246. - BFL flash - include source in builds and more FPGA-README
  1247. - Check we haven't staged work while waiting for a curl entry before proceeding.
  1248. - Use atomic ops to never miss a nonce on opencl kernels, including nonce==0,
  1249. also allowing us to make the output buffer smaller.
  1250. - Remove compile errors/warnings and document compile/usage in FPGA-README
  1251. - bitforce-firmware-flash.c by Luke-jr
  1252. - Ignore the submit_fail flag when deciding whether to recruit more curls or not
  1253. since we have upper bounds on how many curls can be recruited, this test is
  1254. redundant and can lead to problems.
  1255. - API-README update cgminer version number
  1256. - API-README fix groups P: example mistake
  1257. - API-README add COIN and other edits
  1258. - gpu->hit should be reset on new work as well.
  1259. - Do not add time to dynamic opencl calculations over a getwork.
  1260. - miner.php allow 'coin' is custom pages
  1261. Version 2.7.1 - August 21, 2012
  1262. - Update windows build instructions courtesy of sharky.
  1263. - Increase max curls to number of mining threads + queue * 2, accounting for up
  1264. and downstream comms.
  1265. - Queue enough requests to get started.
  1266. - There is no point trying to clone_work in get_work() any more since we clone
  1267. on every get_work_thread where possible.
  1268. - There is no point subtracting 1 from maxq in get_work_thread.
  1269. - Only set lagging flag once there are no staged work items.
  1270. - select_pool does not switch back to the primary once lagging is disabled.
  1271. - miner.php allow page title to be defined in myminer.php
  1272. - Free work before retrying in get_work_thread.
  1273. - Increment total work counter under mutex lock.
  1274. - Increment the queued count after the curl is popped in case there's a delay
  1275. waiting on curls and we think we've queued work when in fact we're waiting
  1276. - API new command 'coin' with mining information
  1277. - Do the dynamic timing in opencl code over a single pass through scanhash to
  1278. make sure we're only getting opencl times contributing to the measured inte
  1279. - Increase curl reaping time to 5 minutes since comms between curl requests can
  1280. be 2 mins apart with lots of rolltime.
  1281. - No need for extra variable in hash_push.
  1282. - Remove short options -r and -R to allow them to be reused and remove readme
  1283. entries for deprecated options.
  1284. - Avoid attempting to recursively lock the console mutex by disabling warnings
  1285. in gpu_fanpercent when fanspeed monitoring fails on windows. Debugged by l
  1286. - Deprecate the opt_fail_pause parameter, leaving a null placeholder for
  1287. existing configurations.
  1288. - Don't pause after failed getwork, set lagging flag and reassess.
  1289. - Add message to share if it's a resubmit.
  1290. - We should not be pausing in trying to resubmit shares.
  1291. - Get rid of the extending fail pause on failed connects since we discard work
  1292. after a period.
  1293. - get_work always returns true so turn it into a void function.
  1294. - get_work never returns false so get rid of fail pause loop.
  1295. - Get rid of pause and retry from get_upstream_work so we only do it from one
  1296. place.
  1297. - Deprecate the opt_retries feature as no one wants cgminer to automatically
  1298. abort. Leave a null placeholder for configurations that still have it.
  1299. - Reinstate fix ADL gpu-map not working when there are more ADL devices than
  1300. openCL patch by Nite69. Add virtual adl mapping for when none is specified o
  1301. - miner.php show summary Diff1 Shares total
  1302. - miner.php fix Work Utility totals
  1303. - miner.php format new Work Utility and Diff1 Shares
  1304. - API V1.17 show Work Utility and Diff1 Shares
  1305. Version 2.7.0 - August 18, 2012
  1306. - Introduce a new statistic, Work Utility, which is the number of difficulty 1
  1307. shares solved per minute. This is useful for measuring a relative rate of work
  1308. that is independent of reject rate and target difficulty.
  1309. - Implement a new pool strategy, BALANCE, which monitors work performed per pool
  1310. as a rolling average every 10 minutes to try and distribute work evenly over all
  1311. the pools. Do this by monitoring diff1 solutions to allow different difficulty
  1312. target pools to be treated equally, along with solo mining. Update the
  1313. documentation to describe this strategy and more accurately describe the
  1314. load-balance one.
  1315. - Getwork fail was not being detected. Remove a vast amount of unused variables
  1316. and functions used in the old queue request mechanism and redefine the getfail
  1317. testing.
  1318. - Don't try to start devices that don't support scrypt when scrypt mining.
  1319. - 0 is a valid return value for read so only break out if read returns -1.
  1320. - Consider us lagging only once our queue is almost full and no staged work.
  1321. - Simplify the enough work algorithm dramatically.
  1322. - Only queue from backup pools once we have nothing staged.
  1323. - Don't keep queueing work indefinitely if we're in opt failover mode.
  1324. - Make sure we don't opt out of queueing more work if all the queued work is
  1325. from one pool.
  1326. - Set lagging flag if we're on the last of our staged items.
  1327. - Reinstate clone on grabbing work.
  1328. - Grab clones from hashlist wherever possible first.
  1329. - Cull all the early queue requests since we request every time work is popped
  1330. now.
  1331. - Keep track of staged rollable work item counts to speed up clone_available.
  1332. - Make expiry on should_roll to 2/3 time instead of share duration since some
  1333. hardware will have very fast share times.
  1334. - Do the cheaper comparison first.
  1335. - Check that we'll get 1 shares' worth of work time by rolling before saying we
  1336. should roll the work.
  1337. - Simplify all those total_secs usages by initialising it to 1 second.
  1338. - Overlap queued decrementing with staged incrementing.
  1339. - Artificially set the pool lagging flag on pool switch in failover only mode as
  1340. well.
  1341. - Artificially set the pool lagging flag on work restart to avoid messages about
  1342. slow pools after every longpoll.
  1343. - Factor in opt_queue value into enough work queued or staged.
  1344. - Roll work whenever we can on getwork.
  1345. - Queue requests for getwork regardless and test whether we should send for a
  1346. getwork from the getwork thread itself.
  1347. - Get rid of age_work().
  1348. - 0 is a valid return value for read so only break out if read returns -1.
  1349. - Offset libusb reads/writes by length written as well in ztex.
  1350. - Cope with timeouts and partial reads in ztex code.
  1351. - fpga serial I/O extra debug (disabled by default)
  1352. Version 2.6.5 - August 15, 2012
  1353. - Don't try to get bitforce temperature if we're polling for a result to
  1354. minimise the chance of interleaved responses.
  1355. - Set memory clock based on memdiff if present from with engine changes,
  1356. allowing it to parallel manual changes from the menu as well.
  1357. - Increase the timeout on bitforce as per Paul Sheppard's suggestion to account
  1358. for throttling + work time + excess.
  1359. - Fix ADL gpu-map not working when there are more ADL devices than openCL.
  1360. Initial patch supplied by Nite69. Modified to suit.
  1361. - Windows' timer resolution is limited to 15ms accuracy. This was breaking
  1362. dynamic intensity since it tries to measure below this. Since we are repeatedly
  1363. sampling similar timeframes, we can average the gpu_us result over 5 different
  1364. values to get very fine precision.
  1365. - Fix harmless unused warnings in scrypt.h.
  1366. - api.c typo
  1367. - API allow display/change failover-only setting
  1368. - Check we are not lagging as well as there is enough work in getwork.
  1369. - Minimise locking and unlocking when getting counts by reusing shared mutex
  1370. lock functions.
  1371. - Avoid getting more work if by the time the getwork thread is spawned we find
  1372. ourselves with enough work.
  1373. - The bitforce buffer is cleared and hw error count incremented on return from a
  1374. failed send_work already so no need to do it within the send_work function.
  1375. - miner.php allow a custom page section to select all fields with '*' - e.g. to
  1376. create a STATS section on a custom page
  1377. - Escape " and \ when writing json config file
  1378. - miner.php optional single rig totals (on by default)
  1379. Version 2.6.4 - August 7, 2012
  1380. - Convert the serial autodetect functions to use int instead of char to
  1381. enumerate devices.
  1382. - Make the serial open timeout for BFL generically 1 second on windows.
  1383. - Deuglify windows autodetect code for BFL.
  1384. - There is no point zeroing temperature in BFL if we fail to get a response, and
  1385. we should register it as a HW error, suggesting throttling.
  1386. - Update SCRYPT README with information about HW errors.
  1387. - Use the scrypt CPU code to confirm results from OCL code, and mark failures as
  1388. HW errors, making it easier to tune scrypt parameters.
  1389. - We may as well leave one curl still available per pool instead of reaping the
  1390. last one.
  1391. - Need to recheck the pool->curls count on regaining the pool lock after the
  1392. pthread conditional wait returns.
  1393. - Display reaped debug message outside mutex lock to avoid recursive locking.
  1394. - Add specific information when ADL detects error -10 saying the device is not
  1395. enabled.
  1396. - api.c update API start message and include port number
  1397. - miner.php ignore arg when readonly
  1398. - miner.php allow pool inputs: delete, addpool, poolpriority
  1399. Version 2.6.3 - August 5, 2012
  1400. - Count likely throttling episodes on bitforce devices as hardware errors.
  1401. - Style cleanups.
  1402. - Use FTD2XX.DLL on Windows to autodetect BitFORCE SHA256 devices.
  1403. - Make pool_disabled the first in the enums == 0, fixing the pool enabled count
  1404. which compares if value is not enabled before enabling it.
  1405. - Correct writing of scrypt parameters to config file based on command line
  1406. parameters only.
  1407. - Use different variables for command line specified lookup gap and thread
  1408. concurrency to differentiate user defined versus auto chosen values.
  1409. - Queue a request on pool switch in case we have no work from the new pool yet.
  1410. - Display failover only mode in pool menu and allow it to be toggled live.
  1411. - Reinstate check for system queueing lag when the current pool's queue is maxed
  1412. out, there is no staged work, and the work is needed now.
  1413. - There is no need for pool active testing to be mandatory any more with queue
  1414. request changes.
  1415. - Fix harmless warnings.
  1416. - Check the current staged and global queued as well before queueing requests.
  1417. Discard stales before ageing work in the watchdog thread. Queue requests after
  1418. discarding and ageing work in watchdog thread. Display accurate global queued in
  1419. curses output. Reuse variable in age_work().
  1420. - The queueing mechanism has become a complex state machine that is no longer
  1421. predictable. Rewrite it from scratch watching only current queues in flight and
  1422. staged work available on a pool by pool basis.
  1423. - API remove unused warning in non-GPU compile
  1424. - api.c in linux allow to open a closed socket in TIME_WAIT
  1425. - Queue an extra request whenever staged work drops below mining thread count in
  1426. hash_pop.
  1427. - Update debian package configs to v2.6.2
  1428. Version 2.6.2 - August 3, 2012
  1429. - Scrypt mining does not support block testing yet so don't try to print it.
  1430. - Clear the bitforce buffer whenever we get an unexpected result as it has
  1431. likely throttled and we are getting cached responses out of order, and use the
  1432. temperature monitoring as a kind of watchdog to flush unexpected results.
  1433. - It is not critical getting the temperature response in bitforce so don't
  1434. mandatorily wait on the mutex lock.
  1435. - Check there is a cutoff temp actually set in bitforce before using it as a cut
  1436. off value otherwise it may think it's set to zero degrees.
  1437. - We dropped the temporary stopping of curl recruiting on submit_fail by
  1438. mistake, reinstate it.
  1439. - Make threads report in either side of the scanhash function in case we miss
  1440. reporting in when restarting work.
  1441. - Don't make mandatory work and its clones last forever.
  1442. - Make test work for pool_active mandatory work items to smooth out staged work
  1443. counts when in failover-only mode.
  1444. - Add debugging output when work is found stale as to why.
  1445. - Print the 3 parameters that are passed to applog for a debug line in
  1446. bitforce.c
  1447. - Clear bitforce buffer on init as previously.
  1448. - Add some headroom to the number of curls available per pool to allow for
  1449. longpoll and sendwork curls.
  1450. - Revert "Revert "Change BFL driver thread initialising to a constant 100ms
  1451. delay between devices instead of a random arrangement.""
  1452. - Revert "Remove bitforce_thread_init"
  1453. - Show the correct base units on GPU summary.
  1454. - Differentiate between the send return value being a bool and the get return
  1455. value when managing them in bitforce scanhash.
  1456. - 23a8c60 Revert "bitforce: Skip out of sending work if work restart requested"
  1457. Version 2.6.1 - July 30, 2012
  1458. - Display scrypt as being built in as well.
  1459. - Fix build warning about KL_SCRYPT when built without scrypt support.
  1460. - Remove the low hash count determinant of hardware being sick. A low hash rate
  1461. can be for poor network connectivity or scrypt mining, neither of which are due
  1462. to a sick device.
  1463. - api.c poolpriority changes
  1464. Version 2.6.0 - July 29, 2012
  1465. - Display kilohash when suitable, but store the global mhash value still truly
  1466. in megahashes to not break the API output.
  1467. - Don't try and print curses output for devices that won't fit on the screen.
  1468. - Add scrypt documentation in the form of a separate readme.
  1469. - Fix build error without scrypt enabled.
  1470. - Limit total number of curls recruited per pool to the number of mining threads
  1471. to prevent blasting the network when we only have one pool to talk to.
  1472. - bitforce: Skip out of sending work if work restart requested
  1473. - Keep a counter of enabled pools and use that instead of iterating over the
  1474. pool list. Use that value to ensure we don't set the last remaining active pool
  1475. to the rejecting state.
  1476. - fpgautils: add support for 57.6 kBd serial
  1477. - miner.php add a socket RCV timeout for if cgminer is hung and the API thread
  1478. is still running
  1479. - Limit thread concurrency for scrypt to 5xshaders if shaders is specified.
  1480. - Simplify repeated use of gpus[gpu]. in ocl.c
  1481. - Find the nearest power of 2 maximum alloc size for the scrypt buffer that can
  1482. successfully be allocated and is large enough to accomodate the thread
  1483. concurrency chosen, thus mapping it to an intensity.
  1484. - Don't make opt_scrypt mandatory blocking with opencl code.
  1485. - Update kernel versions reflecting changes in the API.
  1486. - Make the thread concurrency and lookup gap options hidden on the command line
  1487. and autotune parameters with a newly parsed --shaders option.
  1488. - Fix target testing with scrypt kernel as it would have been missing shares
  1489. below target.
  1490. - Bugfix: Use a mutex to control non-curses output
  1491. - Simplify code to a single vprintf path for curses-less printing
  1492. - Move opt_quiet check to my_log_curses, so it works for curses-less builds
  1493. - Use log_generic for vapplog to cut down on code duplication
  1494. - Add space to log output now that there is more screen real estate available.
  1495. - BFL force all code to timeout to avoid hanging
  1496. - Bugfix: Copy argv[0] given to dirname()
  1497. - Always create the largest possible padbuffer for scrypt kernels even if not
  1498. needed for thread_concurrency, giving us some headroom for intensity levels.
  1499. - Use the detected maximum allocable memory on a GPU to determine the optimal
  1500. scrypt settings when lookup_gap and thread_concurrency parameters are not given.
  1501. - Check the maximum allocable memory size per opencl device.
  1502. - Add debugging output if buffer allocation fails for scrypt and round up
  1503. bufsize to a multiple of 256.
  1504. - Nonce testing for btc got screwed up, leading to no accepted shares. Fix it.
  1505. - Display size of scrypt buffer used in debug.
  1506. - Allow intensities up to 20 if scrypt is compiled in.
  1507. - Add name to scrypt kernel copyright.
  1508. - Allow lookup gap and thread concurrency to be passed per device and store
  1509. details in kernel binary filename.
  1510. - Ignore negative intensities for scrypt.
  1511. - Change the scale of intensity for scrypt kernel and fix a build warning.
  1512. - Correct target value passed to scrypt kernel.
  1513. - Use 256 output slots for kernels to allow 1 for each worksize.
  1514. - Test the target in the actual scrypt kernel itself saving further
  1515. calculations.
  1516. - Reinstate GPU only opencl device detection.
  1517. - Decrease lookup gap to 1. Does not seem to help in any way being 2.
  1518. - Fix build.
  1519. - Make pad0 and pad1 local variable in scrypt kernel.
  1520. - Constify input variable in scrypt kernel.
  1521. - Send correct values to scrypt kernel to get it finally working.
  1522. - Create command queue before compiling program in opencl.
  1523. - Detach pthread from within the api thread in case it is terminated due to not
  1524. being instantiated before pthread_cancel is called from main, leading to a
  1525. segfault.
  1526. - Debug output per thread hashrate is out by a factor of 1000.
  1527. - Initialise mdplatform.
  1528. - Find the gpu platform with the most devices and use that if no platform option
  1529. is passed.
  1530. - Allow more platforms to be probed if first does not return GPUs.
  1531. - Fix external scrypt algo missing.
  1532. - Limit scrypt to 1 vector.
  1533. - Handle KL_SCRYPT in config write.
  1534. - Get rid of stuff.
  1535. - Don't enqueuewrite buffer at all for pad8 and pass work details around for
  1536. scrypt in dev_blk.
  1537. - Set the correct data for cldata and prepare for pad8 fixes.
  1538. - Bugfix: Fix build without curses but with OpenCL
  1539. - Find the gpu platform with the most devices and use that if no platform option
  1540. is passed.
  1541. - Allow more platforms to be probed if first does not return GPUs.
  1542. - Get rid of spaces in arrays in scrypt kernel.
  1543. - Start with smaller amount of hashes in cpu mining to enable scrypt to return
  1544. today sometime.
  1545. - Show Khash hashrates when scrypt is in use.
  1546. - Free the scratchbuf memory allocated in scrypt and don't check if CPUs are
  1547. sick since they can't be. Prepare for khash hash rates in display.
  1548. - Add cpumining capability for scrypt.
  1549. - Set scrypt settings and buffer size in ocl.c code to be future modifiable.
  1550. - Cope with when we cannot set intensity low enough to meet dynamic interval by
  1551. inducing a forced sleep.
  1552. - Make dynamic and scrypt opencl calls blocking.
  1553. - Calculate midstate in separate function and remove likely/unlikely macros
  1554. since they're dependent on pools, not code design.
  1555. - bitforce: Use "full work" vs "nonce range" for kernel name
  1556. - Display in debug mode when we're making the midstate locally.
  1557. - Fix nonce submission code for scrypt.
  1558. - Make sure goffset is set for scrypt and drop padbuffer8 to something
  1559. manageable for now.
  1560. - Set up buffer8 for scrypt.
  1561. - Build fix for opt scrypt.
  1562. - Don't check postcalc nonce with sha256 in scrypt.
  1563. - Don't test nonce with sha and various fixes for scrypt.
  1564. - Make scrypt buffers and midstate compatible with cgminer.
  1565. - Use cgminer specific output array entries in scrypt kernel.
  1566. - Provide initial support for the scrypt kernel to compile with and mine scrypt
  1567. with the --scrypt option.
  1568. - Enable completely compiling scrypt out.
  1569. - Begin import of scrypt opencl kernel from reaper.
  1570. - bitforce_get_result returns -1 on error now.
  1571. - Check return value of read in BFgets
  1572. - Bugfix: Make our Windows nanosleep/sleep replacements standards-compliant
  1573. (which fixes nmsleep) and include compat.h for bitforce (for sleep)
  1574. - rpc: Use a single switch statement for both stringifications of cgpu->status
  1575. - Fix whitespace mangling.
  1576. - miner.php fix rig # when miners fail
  1577. - Only try to shut down work cleanly if we've successfully connected and started
  1578. mining.
  1579. - Use switch statement for cgpu->status and fix spelling.
  1580. - Abbrv. correction
  1581. - Bugfix: Don't declare devices SICK if they're just busy initialising
  1582. - Bugfix: Calculate nsec in nmsleep correctly
  1583. - Bugfix: Adapt OpenCL scanhash errors to driver API change (errors are now -1,
  1584. not 0)
  1585. - Remove superfluous ave_wait
  1586. - Put kname change for broken nonce-range back in
  1587. - Add average wait time to api stats
  1588. - Change BFL driver thread initialising to a constant 100ms delay between
  1589. devices instead of a random arrangement.
  1590. - Spelling typo.
  1591. - Time opencl work from start of queueing a kernel till it's flushed when
  1592. calculating dynamic intensity.
  1593. - Modify te scanhash API to use an int64_t and return -1 on error, allowing zero
  1594. to be a valid return value.
  1595. - Check for work restart after the hashmeter is invoked for we lose the hashes
  1596. otherwise contributed in the count.
  1597. - Remove disabled: label from mining thread function, using a separate
  1598. mt_disable function.
  1599. - Style changes.
  1600. - Missed one nonce-range disabling.
  1601. - Add average return time to api stats
  1602. - miner.php allow rig names in number buttons
  1603. - Remove bitforce_thread_init The delay thing does nothing useful... when long
  1604. poll comes around, all threads restart at the same time anyway.
  1605. - Change timeouts to time-vals for accuracy.
  1606. - fix API support for big endian machines
  1607. - Cope with signals interrupting the nanosleep of nmsleep.
  1608. - Use standard cfsetispeed/cfsetospeed to set baud rate on *nix
  1609. - miner.php split() flagged deprecated in PHP 5.3.0
  1610. - More BFL tweaks. Add delay between closing and reopening port. Remove buffer
  1611. clear in re-init Add kernel type (mini-rig or single)
  1612. - Make long timeout 10seconds on bitforce for when usleep or nanosleep just
  1613. can't be accurate...
  1614. Version 2.5.0 - July 6, 2012
  1615. - Fix --benchmark not working since the dynamic addition of pools and pool
  1616. stats.
  1617. - Make disabling BFL nonce range support a warning since it has to be explicitly
  1618. enabled on the command line now.
  1619. - miner.php allow renaming table headers
  1620. - Make bitforce nonce range support a command line option --bfl-range since
  1621. enabling it decrease hashrate by 1%.
  1622. - Add sanity checking to make sure we don't make sleep_ms less than 0 in
  1623. bitforce.
  1624. - The fastest minirig devices need a significantly smaller starting sleep time.
  1625. - Use a much shorter initial sleep time to account for faster devices and nonce
  1626. range working, and increase it if nonce range fails to work.
  1627. - Use nmsleep instead of usleep in bitforce.
  1628. - Provide a ms based sleep function that uses nanosleep to avoid the inaccuracy
  1629. of usleep on SMP systems.
  1630. - delay_time_ms is always set so need not be initialised in bitforce.
  1631. - Increase bitforce timeout to 10 seconds.
  1632. - Add more hysteresis and poll ~5 times to allow for timer delays in bitforce
  1633. devices.
  1634. - miner.php allow alternating line colours (off by default)
  1635. - Display the actual duration of wait when it is greater than the cutoff.
  1636. - Set nonce to maximum once we determine nonce range support is broken.
  1637. - Initial wait time is always known so no need to zero it beforehand in
  1638. bitforce.
  1639. - No point counting wait time until the work is actually sent to bitforce
  1640. devices.
  1641. - Use string comparison functions instead of explicit comparisons.
  1642. - Account for wait_ms time when nonce_range is in use on BFL.
  1643. - Split nonces up into 1/5 chunks when nonce range is supported.
  1644. - limit clear buffer iterations.
  1645. - Ad fd check to clear buffer.
  1646. - miner.php remove incorrect 'DATE' error message
  1647. - miner.php allow summary header in custom pages
  1648. - Disable nonce range support in BFL when broken support is detected.
  1649. - Restart_wait is only called with a ms value so incorporate that into the
  1650. function.
  1651. - Only try to adjust dev width when curses is built in.
  1652. - miner.php define custom sum fields as a simple array
  1653. - Fix off-by-one error in nonce increment in bfl.
  1654. - Use BE when setting nonce in bitforce nonce range work.
  1655. - Enable nonce range in the normal init sequence for bfl.
  1656. - Queue extra work at 2/3 differently depending on whether we're using nonce
  1657. range or not.
  1658. - Initially enable support for nonce range support on bfl, splitting nonces up
  1659. into 3/4 size and only disable it if it fails on work submit.
  1660. - Attempt to detect nonce range support in BFL by sending work requring its
  1661. support.
  1662. - Limit retrying on busy for up to BITFORCE_TIMEOUT_MS
  1663. - Attempt to initialise while bitforce device returns BUSY.
  1664. - Extend length of string that can be passed to BFL devices.
  1665. - Fix signedness warning.
  1666. - Adjust device width column to be consistent.
  1667. - Use cgpu-> not gpus[] in watchdog thread.
  1668. - Add api stats (sleep time)
  1669. - Timing tweaks Added long and short timeouts, short for detecting throttling,
  1670. long to give up totally. Reset sleep time when device re-initialised Still check
  1671. results after timeout Back up a larger time if result on first poll.
  1672. - Add API Notify counter 'Comms Error'
  1673. - Style police on api.c
  1674. - Do all logging outside of the bitforce mutex locking to avoid deadlocks.
  1675. - Remove applog call from bfwrite to prevent grabbing nested mutexes.
  1676. - Bitforce style changes.
  1677. - Minor style changes.
  1678. - Remove needless roundl define.
  1679. - Made JSON error message verbose.
  1680. - Fine-tune timing adjustment. Also remove old work_restart timing.
  1681. - Check for gpu return times of >= 0, not just 0, to fix intensity dropping to
  1682. -10.
  1683. - Restart is zeroed in the mining thread so no need to do it inside the bitforce
  1684. code.
  1685. - More improvements to comms. BFL return nothing when throttling, so should not
  1686. be considered an error. Instead repeat with a longer delay.
  1687. - Polling every 10ms there's not much point checking the pthread_cond_timedwait
  1688. as it just adds overhead. Simply check the value of work_restart in the bfl main
  1689. polling loop.
  1690. - Use a pthread conditional that is broadcast whenever work restarts are
  1691. required. Create a generic wait function waiting a specified time on that
  1692. conditional that returns if the condition is met or a specified time passed to
  1693. it has elapsed. Use this to do smarter polling in bitforce to abort work, queue
  1694. more work, and check for results to minimise time spent working needlessly.
  1695. - Add busy time to wait time.
  1696. - api.c put version up to 1.14
  1697. - Add tiny delay after writing to BFL Change BFL errors to something more human
  1698. readable Send work busy re-tries after 10ms delay
  1699. Version 2.4.4 - July 1, 2012
  1700. - Fix builds on non gnu platforms.
  1701. - api.c ensure old mode is always available when not using --api-groups + quit()
  1702. on param errors
  1703. - Implement rudimentary X-Mining-Hashrate support.
  1704. - Detect large swings in temperature when below the target temperature range and
  1705. change fan by amounts dependant on the value of tdiff.
  1706. - Adjust the fanspeed by the magnitude of the temperature difference when in the
  1707. optimal range.
  1708. - Revert "Restarting cgminer from within after ADL has been corrupted only leads
  1709. to a crash. Display a warning only and disable fanspeed monitoring."
  1710. - api.c fix json already closed
  1711. - implement and document API option --api-groups
  1712. - Put upper bounds to under 2 hours that work can be rolled into the future for
  1713. bitcoind will deem it invalid beyond that.
  1714. - define API option --api-groups
  1715. - api.c allow unwell devices to be enabled so they can be cured
  1716. - miner.php - fix/enable autorefresh for custom pages
  1717. - miner.php allow custom summary pages - new 'Mobile' summary
  1718. - Work around pools that advertise very low expire= time inappropriately as this
  1719. leads to many false positives for stale shares detected.
  1720. - Only show ztex board count if any exist.
  1721. - There is no need for work to be a union in struct workio_cmd
  1722. - fpgautils.c include a debug message for all unknown open errors
  1723. - Don't keep rolling work right up to the expire= cut off. Use 2/3 of the time
  1724. between the scantime and the expiry as cutoff for reusing work.
  1725. - Log a specific error when serial opens fail due to lack of user permissions
  1726. - Increase GPU timing resolution to microsecond and add sanity check to ensure
  1727. times are positive.
  1728. - Opencl code may start executing before the clfinish order is given to it so
  1729. get the start timing used for dynamic intensity from before the kernel is
  1730. queued.
  1731. - fpgautils.c - set BAUD rate according to termio spec
  1732. - fpgautils.c - linux ordering back to the correct way
  1733. - miner.php remove unneeded '.'s
  1734. - miner.php add auto refresh options
  1735. - miner.php add 'restart' next to 'quit'
  1736. - miner.php make fontname/size configurable with myminer.php
  1737. - Make the pools array a dynamically allocated array to allow unlimited pools to
  1738. be added.
  1739. - Make the devices array a dynamically allocated array of pointers to allow
  1740. unlimited devices.
  1741. - Dynamic intensity for GPUs should be calculated on a per device basis. Clean
  1742. up the code to only calculate it if required as well.
  1743. - Use a queueing bool set under control_lock to prevent multiple calls to
  1744. queue_request racing.
  1745. - Use the work clone flag to determine if we should subtract it from the total
  1746. queued variable and provide a subtract queued function to prevent looping over
  1747. locked code.
  1748. - Don't decrement staged extras count from longpoll work.
  1749. - Count longpoll's contribution to the queue.
  1750. - Increase queued count before pushing message.
  1751. - Test we have enough work queued for pools with and without rolltime
  1752. capability.
  1753. - As work is sorted by age, we can discard the oldest work at regular intervals
  1754. to keep only 1 of the newest work items per mining thread.
  1755. - Roll work again after duplicating it to prevent duplicates on return to the
  1756. clone function.
  1757. - Abstract out work cloning and clone $mining_threads copies whenever a rollable
  1758. work item is found and return a clone instead.
  1759. - api.c display Pool Av in json
  1760. - Take into account average getwork delay as a marker of pool communications
  1761. when considering work stale.
  1762. - Work out a rolling average getwork delay stored in pool_stats.
  1763. - Getwork delay in stats should include retries for each getwork call.
  1764. - Walk through the thread list instead of searching for them when disabling
  1765. threads for dynamic mode.
  1766. - Extend nrolltime to support the expiry= parameter. Do this by turning the
  1767. rolltime bool into an integer set to the expiry time. If the pool supports
  1768. rolltime but not expiry= then set the expiry time to the standard scantime.
  1769. - When disabling fanspeed monitoring on adl failure, remove any twin GPU
  1770. association. This could have been leading to hangs on machines with dual GPU
  1771. cards when ADL failed.
  1772. - modminer: Don't delay 2nd+ FPGAs during work restart
  1773. - Disable OpenCL code when not available.
  1774. - Fix openwrt crashing on regeneratehash() by making check_solve a noop.
  1775. - FPGA - allow device detect override without an open failure
  1776. - Fix sign warning.
  1777. Version 2.4.3 - June 14, 2012
  1778. - can_roll and should_roll should have no bearing on the cycle period within the
  1779. miner_thread so remove it.
  1780. - Check for strategy being changed to load balance when enabling LPs.
  1781. - Check that all threads on the device that called get_work are waiting on
  1782. getwork before considering the pool lagging.
  1783. - Iterate over each thread belonging to each device in the hashmeter instead of
  1784. searching for them now that they're a list.
  1785. - When using rotate pool strategy, ensure we only select from alive enabled
  1786. pools.
  1787. - Start longpoll from every pool when load balance strategy is in use.
  1788. - Add mandatory and block fields to the work struct. Flag any shares that are
  1789. detected as blocks as mandatory to submit, along with longpoll work from a
  1790. previously rejecting pool.
  1791. - Consider the fan optimal if fanspeed is dropping but within the optimal speed
  1792. window.
  1793. - Fix typo in some API messages (succeess/success)
  1794. - api.c MMQ stat bugs
  1795. - Bugfix: Fix warnings when built without libudev support
  1796. - Bugfix: slay a variety of warnings
  1797. - Bugfix: modminer: Fix unsigned/signed comparison and similar warnings
  1798. - API add ModMinerQuad support
  1799. - Bugfix: Honour forceauto parameter in serial_detect functions
  1800. - modminer: Temperature sensor improvements
  1801. - modminer: Make log messages more consistent in format
  1802. - Only adjust GPU speed up if the fanspeed is within the normal fanrange and
  1803. hasn't been turned to maximum speed under overheat conditions.
  1804. - ModMiner use valid .name
  1805. - New driver: BTCFPGA ModMiner
  1806. - Abstract generally useful FPGA code into fpgautils.c
  1807. - API add stats for pool getworks
  1808. - miner.php option to hide specific fields from the display
  1809. - miner.php add version numbers to the summary page
  1810. - Update debian configs to v2.4.2
  1811. - Add API and FPGA READMEs into Makefile to be included in source distribution.
  1812. - Icarus - fix unit64_t printf warnings
  1813. Version 2.4.2 - June 2, 2012
  1814. - API.class compiled with Java SE 6.0_03 - works with Win7x64
  1815. - miner.php highlight devs too slow finding shares (possibly failing)
  1816. - API update version to V1.11 and document changes
  1817. - API save default config file if none specified
  1818. - api.c save success incorrectly returns error
  1819. - api.c replace BUFSIZ (linux/windows have different values)
  1820. - Move RPC API content out of README to API-README
  1821. - Open a longpoll connection if a pool is in the REJECTING state as it's the
  1822. only way to re-enable it automatically.
  1823. - Use only one longpoll as much as possible by using a pthread conditional
  1824. broadcast that each longpoll thread waits on and checks if it's the current pool
  1825. before
  1826. - If shares are known stale, don't use them to decide to disable a pool for
  1827. sequential rejects.
  1828. - Restarting cgminer from within after ADL has been corrupted only leads to a
  1829. crash. Display a warning only and disable fanspeed monitoring.
  1830. - Icarus: fix abort calculation/allow user specified abort
  1831. - Icarus: make --icarus-timing hidden and document it in FPGA-README
  1832. - Icarus: high accuracy timing and other bitstream speed support
  1833. - add-MIPSEB-to-icarus-for-BIG_ENDIAN
  1834. - work_decode only needs swab32 on midstate under BIG ENDIAN
  1835. - add compile command to api-example.c
  1836. - save config bugfix: writing an extra ',' when no gpus
  1837. - Add dpkg-source commits
  1838. Version 2.4.1 - May 6, 2012
  1839. - In the unlikely event of finding a block, display the block solved count with
  1840. the pool it came from for auditing.
  1841. - Display the device summary on exit even if a device has been disabled.
  1842. - Use correct pool enabled enums in api.c.
  1843. - Import Debian packaging configs
  1844. - Ensure we test for a pool recovering from idle so long as it's not set to
  1845. disabled.
  1846. - Fix pool number display.
  1847. - Give cgminer -T message only if curses is in use.
  1848. - Reinit_adl is no longer used.
  1849. - API 'stats' allow devices to add their own stats also for testing/debug
  1850. - API add getwork stats to cgminer - accesable from API 'stats'
  1851. - Don't initialise variables to zero when in global scope since they're already
  1852. initialised.
  1853. - Get rid of unitialised variable warning when it's false.
  1854. - Move a pool to POOL_REJECTING to be disabled only after 3 minutes of
  1855. continuous rejected shares.
  1856. - Some tweaks to reporting and logging.
  1857. - Change FPGA detection order since BFL hangs on an ICA
  1858. - API support new pool status
  1859. - Add a temporarily disabled state for enabled pools called POOL_REJECTING and
  1860. use the work from each longpoll to help determine when a rejecting pool has
  1861. started working again. Switch pools based on the multipool strategy once a pool
  1862. is re-enabled.
  1863. - Removing extra debug
  1864. - Fix the benchmark feature by bypassing the new networking code.
  1865. - Reset sequential reject counter after a pool is disabled for when it is
  1866. re-enabled.
  1867. - Icarus - correct MH/s and U: with work restart set at 8 seconds
  1868. - ztex updateFreq was always reporting on fpga 0
  1869. - Trying harder to get 1.15y working
  1870. - Specifying threads on multi fpga boards extra cgpu
  1871. - Missing the add cgpu per extra fpga on 1.15y boards
  1872. - API add last share time to each pool
  1873. - Don't try to reap curls if benchmarking is enabled.
  1874. Version 2.4.0 - May 3, 2012
  1875. - Only show longpoll warning once when it has failed.
  1876. - Convert hashes to an unsigned long long as well.
  1877. - Detect pools that have issues represented by endless rejected shares and
  1878. disable them, with a parameter to optionally disable this feature.
  1879. - Bugfix: Use a 64-bit type for hashes_done (miner_thread) since it can overflow
  1880. 32-bit on some FPGAs
  1881. - Implement an older header fix for a label existing before the pthread_cleanup
  1882. macro.
  1883. - Limit the number of curls we recruit on communication failures and with
  1884. delaynet enabled to 5 by maintaining a per-pool curl count, and using a pthread
  1885. conditional that wakes up when one is returned to the ring buffer.
  1886. - Generalise add_pool() functions since they're repeated in add_pool_details.
  1887. - Bugfix: Return failure, rather than quit, if BFwrite fails
  1888. - Disable failing devices such that the user can attempt to re-enable them
  1889. - Bugfix: thread_shutdown shouldn't try to free the device, since it's needed
  1890. afterward
  1891. - API bool's and 1TBS fixes
  1892. - Icarus - minimise code delays and name timer variables
  1893. - api.c V1.9 add 'restart' + redesign 'quit' so thread exits cleanly
  1894. - api.c bug - remove extra ']'s in notify command
  1895. - Increase pool watch interval to 30 seconds.
  1896. - Reap curls that are unused for over a minute. This allows connections to be
  1897. closed, thereby allowing the number of curl handles to always be the minimum
  1898. necessary to not delay networking.
  1899. - Use the ringbuffer of curls from the same pool for submit as well as getwork
  1900. threads. Since the curl handles were already connected to the same pool and are
  1901. immediately available, share submission will not be delayed by getworks.
  1902. - Implement a scaleable networking framework designed to cope with any sized
  1903. network requirements, yet minimise the number of connections being reopened. Do
  1904. this by create a ring buffer linked list of curl handles to be used by getwork,
  1905. recruiting extra handles when none is immediately available.
  1906. - There is no need for the submit and getwork curls to be tied to the pool
  1907. struct.
  1908. - Do not recruit extra connection threads if there have been connection errors
  1909. to the pool in question.
  1910. - We should not retry submitting shares indefinitely or we may end up with a
  1911. huge backlog during network outages, so discard stale shares if we failed to
  1912. submit them and they've become stale in the interim.
  1913. Version 2.3.6 - April 29, 2012
  1914. - Shorten stale share messages slightly.
  1915. - Protect the freeing of current_hash under mutex_lock to prevent racing on it
  1916. when set_curblock is hit concurrently.
  1917. - Change default behaviour to submitting stale, removing the --submit-stale
  1918. option and adding a --no-submit-stale option.
  1919. - Make sure to start the getwork and submit threads when a pool is added on the
  1920. fly. This fixes a crash when a pool is added to running cgminer and then
  1921. switched to.
  1922. - Faster hardware can easily outstrip the speed we can get work and submit
  1923. shares when using only one connection per pool.
  1924. - Test the queued list to see if any get/submits are already queued and if they
  1925. are, start recruiting extra connections by generating new threads.
  1926. - This allows us to reuse network connections at low loads but recuit new open
  1927. connections as they're needed, so that cgminer can scale to hardware of any
  1928. size.
  1929. Version 2.3.5 - April 28, 2012
  1930. - Restarting cgminer leads to a socket that can't be bound for 60 seconds, so
  1931. increase the interval that API binding waits to 30 seconds to minimise the
  1932. number of times it will retry, spamming the logs.
  1933. - Give a longpoll message for any longpoll that detects a block change, primary
  1934. or backup, and also display which pool it was.
  1935. - Decrease utility display to one decimal place.
  1936. - Small cosmetic output alignment.
  1937. - Add pool number to stale share message.
  1938. - Add space to log output now that there is more screen real estate available.
  1939. - Indentation clean up.
  1940. - Merge branch 'master' of github.com:ckolivas/cgminer
  1941. - Remove thread id display from rejected shares as well.
  1942. - Merge pull request #185 from Diapolo/diakgcn
  1943. - add goffset support for diakgcn with -v 1 and update kernel version
  1944. - Set have_longpoll to true when there is at least one pool with longpoll.
  1945. - Don't display the thread ID since it adds no useful information over the
  1946. device number.
  1947. - Don't display the first 8 bytes of a share since they will always be zero at
  1948. >= 1 difficulty.
  1949. - work->longpoll is reset across test_work_current so we need to recheck what
  1950. pool it belongs to.
  1951. - Use longpolls from backup pools with failover-only enabled just to check for
  1952. block changes, but don't use them as work.
  1953. - Start longpoll only after we have tried to extract the longpoll URL.
  1954. - Check for submitold flag on resubmit of shares, and give different message for
  1955. stale shares on retry.
  1956. - Check for submitold before submitstale.
  1957. - Don't force fresh curl connections on anything but longpoll threads.
  1958. - Create one longpoll thread per pool, using backup pools for those pools that
  1959. don't have longpoll.
  1960. - Use the work created from the longpoll return only if we don't have
  1961. failover-enabled, and only flag the work as a longpoll if it is the current
  1962. pool.
  1963. - This will work around the problem of trying to restart the single longpoll
  1964. thread on pool changes that was leading to race conditions.
  1965. - It will also have less work restarts from the multiple longpolls received from
  1966. different pools.
  1967. - Remove the ability to disable longpoll. It is not a useful feature and will
  1968. conflict with planned changes to longpoll code.
  1969. - Remove the invalid entries from the example configuration file.
  1970. - Add support for latest ATI SDK on windows.
  1971. - Export missing function from libztex.
  1972. - miner.php change socktimeoutsec = 10 (it only waits once)
  1973. - Bugfix: Make initial_args a const char** to satisfy exec argument type warning
  1974. (on Windows only)
  1975. - miner.php add a timeout so you don't sit and wait ... forever
  1976. - Create discrete persistent submit and get work threads per pool, thus allowing
  1977. all submitworks belonging to the same pool to reuse the same curl handle, and
  1978. all getworks to reuse their own handle.
  1979. - Use separate handles for submission to not make getwork potentially delay
  1980. share submission which is time critical.
  1981. - This will allow much more reusing of persistent connections instead of opening
  1982. new ones which can flood routers.
  1983. - This mandated a rework of the extra longpoll support (for when pools are
  1984. switched) and this is managed by restarting longpoll cleanly and waiting for a
  1985. thread join.
  1986. - miner.php only show the current date header once
  1987. - miner.php also add current time like single rig page
  1988. - miner.php display rig 'when' table at top of the multi-rig summary page
  1989. - README - add some Ztex details
  1990. - api.c include zTex in the FPGA support list
  1991. - api.c ensure 'devs' shows PGA's when only PGA code is compiled
  1992. - cgminer.c sharelog code consistency and compile warning fix
  1993. - README correct API version number
  1994. - README spelling error
  1995. - api.c combine all pairs of sprintfs()
  1996. - api.c uncomment and use BLANK (and COMMA)
  1997. - Code style cleanup
  1998. - Annotating frequency changes with the changed from value
  1999. - README clarification of 'notify' command
  2000. - README update for API RPC 'devdetails'
  2001. - api.c 'devdetails' list static details of devices
  2002. - Using less heap space as my TP-Link seems to not handle this much
  2003. Version 2.3.4 - April 25, 2012
  2004. - Extensively document the cause of GPU device issues and the use of --gpu-map.
  2005. - Support for share logging
  2006. - Detect poorly performing combination of SDK and phatk kernel and add verbose
  2007. warning at startup.
  2008. - Icarus update to new add_cgpu()
  2009. - Icarus driver working with Linux and Windows
  2010. - api.c fix unused variable compile warning
  2011. - Display all OpenCL devices when -n is called as well to allow debugging of
  2012. differential mapping of OpenCL to ADL.
  2013. - Add a --gpu-map option which will allow arbitrarily mapping ADL devices to
  2014. OpenCL devices for instances where association by enumeration alone fails.
  2015. - Increase upper limit on number of extra items to queue as some FPGA code can't
  2016. yet reliably keep many devices busy.
  2017. - Display configuration file information when -c option is passed and only when
  2018. file exists on loading default config file.
  2019. - Display configuration file loaded, if any, and debug output if configuration
  2020. file parsing failed.
  2021. - Add missing ztex header to Makefile for distribution.
  2022. - Document long-form COM port device names on Windows, required to specify
  2023. serial ports above 9
  2024. - Include ztex bitstreams firmware in distribution and install if configured in.
  2025. - Style police on driver-ztex.c
  2026. - work_restart should only be changed by cgminer.c now
  2027. - Shut down the api cleanly when the api thread is cancelled. This should allow
  2028. the api socket to be closed successfully to next be reopened with app_restart.
  2029. - Make a union for cgpu device handles, and rename "device" to "device_ztex"
  2030. since it's Ztex-specific
  2031. - Initialise name variable.
  2032. - Remove unnecessary check for variable that always has memory allocated.
  2033. - Bugfix: Missing "break" no-op in default case
  2034. - Make the status window and log window as large as can fit on startup,
  2035. rechecking to see if it can be enlarged after the fact. This allows any number
  2036. of devices to be displayed provided the window is made long enough without
  2037. corrupting the output.
  2038. - Style police on libztex.c.
  2039. - API add removepool like the screen interface
  2040. - api.c escape required characters in return strings + pools returns the
  2041. username
  2042. - Set lp_path to NULL after free for consistency.
  2043. - Removing dmalloc import left behind by mistake
  2044. - Fixing leak in resp_hdr_cb
  2045. - miner.php warning highlight GPU stats if they are zero (e.g. ADL not enabled)
  2046. - miner.php highlight any device that isn't 'Enabled'
  2047. - miner.php highlight any Status that isn't 'Alive'
  2048. - miner.php optionally support multiple rigs
  2049. - Initial Ztex support 1.15x board.
  2050. Version 2.3.3 - April 15, 2012
  2051. - Don't even display that cpumining is disabled on ./configure to discourage
  2052. people from enabling it.
  2053. - Do a complete cgminer restart if the ATI Display Library fails, as it does on
  2054. windows after running for some time, when fanspeed reporting fails.
  2055. - Cache the initial arguments passed to cgminer and implement an attempted
  2056. restart option from the settings menu.
  2057. - Disable per-device status lines when there are more than 8 devices since
  2058. screen output will be corrupted, enumerating them to the log output instead at
  2059. startup.
  2060. - Reuse Vals[] array more than W[] till they're re-initialised on the second
  2061. sha256 cycle in poclbm kernel.
  2062. - Minor variable alignment in poclbm kernel.
  2063. - Make sure to disable devices with any status not being DEV_ENABLED to ensure
  2064. that thermal cutoff code works as it was setting the status to DEV_RECOVER.
  2065. - Re-initialising ADL simply made the driver fail since it is corruption over
  2066. time within the windows driver that's responsible. Revert "Attempt to
  2067. re-initialise ADL should a device that previously reported fanspeed stops
  2068. reporting it."
  2069. - Microoptimise poclbm kernel by ordering Val variables according to usage
  2070. frequency.
  2071. Version 2.3.2 - March 31, 2012
  2072. - Damping small changes in hashrate so dramatically has the tendency to always
  2073. make the hashrate underread so go back to gentle damping instead.
  2074. - Revert the crossover of variables from Vals to W in poclbm kernel now that
  2075. Vals are the first declared variables so they're used more frequently.
  2076. - Vals variables appearing first in the array in poclbm is faster.
  2077. - Change the preferred vector width to 1 for Tahiti only, not all poclbm
  2078. kernels.
  2079. - Use a time constant 0.63 for when large changes in hashrate are detected to
  2080. damp change in case the large change is an aliasing artefact instead of a real
  2081. chang
  2082. - Only increment stale counter if the detected stales are discarded.
  2083. - Attempt to re-initialise ADL should a device that previously reported fanspeed
  2084. stops reporting it.
  2085. - Move the ADL setup and clearing to separate functions and provide a reinit_adl
  2086. function to be used when adl fails while running.
  2087. - Use slightly more damping on the decay time function in the never-ending quest
  2088. to smooth off the hashmeter.
  2089. - Set the starting fanspeed to a safe and fairly neutral 50% when autofan is
  2090. enabled.
  2091. - Provide locking around updates of cgpu hashrates as well to prevent multiple
  2092. threads accessing data fields on the same device.
  2093. - Display the beginning of the new block in verbose mode in the logs.
  2094. - Reinstate old diablo kernel variable ordering from 120222, adding only goffset
  2095. and vector size hint. The massive variable ordering change only helped one SDK
  2096. on
  2097. - Change the version number on the correct kernels.
  2098. - api.c devicecode/osinfo incorrectly swapped for json
  2099. - Add extensive instructions on how to make a native windows build.
  2100. - Update version numbers of poclbm and diablo kernels as their APIs have also
  2101. changed.
  2102. - Use global offset parameter to diablo and poclbm kernel ONLY for 1 vector
  2103. kernels.
  2104. - Use poclbm preferentially on Tahiti now regardless of SDK.
  2105. - Remove unused constant passed to poclbm.
  2106. - Clean up use of macros in poclbm and use bitselect everywhere possible.
  2107. - Add vector type hint to diablo kernel.
  2108. - Add worksize and vector attribute hints to the poclbm kernel.
  2109. - Spaces for non-aligned variables in poclbm.
  2110. - More tidying of poclbm.
  2111. - Swap Vals and W variables where they can overlap in poclbm.
  2112. - More tidying of poclbm.
  2113. - Tidy up first half of poclbm.
  2114. - Clean up use of any() by diablo and poclbm kernels.
  2115. - Minor variable symmetry changes in poclbm.
  2116. - Put additions on separate lines for consistency in poclbm.
  2117. - Consolidate last use of W11 into Vals4 in poclbm.
  2118. - Change email due to SPAM
  2119. - api.c miner.php add a '*' to the front of all notify counters - simplifies
  2120. future support of new counters
  2121. - miner.php add display 'notify' command
  2122. - Small change to help arch's without processor affinity
  2123. - Fix bitforce compile error
  2124. - api.c notify should report disabled devices also - of course
  2125. - API returns the simple device history with the 'notify' command
  2126. - code changes for supporting a simple device history
  2127. - api.c Report an OS string in config to help with device issues
  2128. - api.c fix Log Interval - integer in JSON
  2129. - api.c config 'Device Code' to show list of compiled devices + README
  2130. - api.c increase buffer size close to current code allowable limit
  2131. - removed 8-component vector support from kernel, as this is not supported in
  2132. CGMINER anyway
  2133. - forgot to update kernel modification date, fixed ;)
  2134. - reordered an addition in the kernel, which results in less instructions used
  2135. in the GPU ISA code for GCN
  2136. - miner.php: option for readonly or check privileged access
  2137. - Ignore reduntant-with-build options --disable-gpu, --no-adl, and --no-restart
  2138. - miner.php: ereg_replace is DEPRECATED so use preg_replace instead
  2139. - Make curses TUI support optional at compile-time.
  2140. - Bugfix: AC_ARG_WITH provides withval instead of enableval
  2141. - miner.php split devs output for different devices
  2142. - api.c: correct error messages
  2143. - icarus.c modify (regular) timeout warning to only be debug
  2144. - icarus.c set the windows TODO timeout
  2145. - Allow specifying a specific driver for --scan-serial
  2146. - optimized nonce-check and output code for -v 2 and -v 4
  2147. - Bugfix: Check for libudev header (not just library) in configure, and document
  2148. optional dependency
  2149. - Add API support for Icarus and Bitforce
  2150. - Next API version is 1.4 (1.3 is current)
  2151. - README/api.c add "When" the request was processed to STATUS
  2152. - Bugfix: ZLX to read BitFORCE temp, not ZKX -.-
  2153. - Use libudev to autodetect BitFORCE GPUs, if available
  2154. - Use the return value of fan_autotune to set fan_optimal instead of passing it
  2155. as a pointer.
  2156. - Pass the lasttemp from the device we're using to adjust fanspeed in twin
  2157. devices.
  2158. - fix the name to 3 chars, fix the multi-icarus support
  2159. - Bugfix: "-S auto" is the default if no -S is specified, and there is no such
  2160. delay in using it
  2161. - README add information missing from --scan-serial
  2162. - Update README RPC API Version comment
  2163. - Bugfix: Allow enabling CPU even without OpenCL support
  2164. - Change failed-to-mine number of requested shares messge to avoid segfault on
  2165. recursive calling of quit().
  2166. - Get rid of extra char which is just truncated in poclbm kernel.
  2167. - only small code formating changes
  2168. - removed vec_step() as this could lead to errors on older SDKs
  2169. - unified code for generating nonce in kernel and moved addition of base to the
  2170. end -> faster
  2171. Version 2.3.1 - February 24, 2012
  2172. - Revert input and output code on diakgcn and phatk kernels to old style which
  2173. worked better for older hardware and SDKs.
  2174. - Add a vector*worksize parameter passed to those kernels to avoid one op.
  2175. - Increase the speed of hashrate adaptation.
  2176. - Only send out extra longpoll requests if we want longpolls.
  2177. - API implement addpool command
  2178. - API return the untouched Total MH also (API now version 1.3)
  2179. - Add enable/disablepool to miner.php example and reduce font size 1pt
  2180. Version 2.3.0 - February 23, 2012
  2181. - Consider extra longpoll work items as staged_extra so as to make sure we queue
  2182. more work if queueing regular work items as longpolls.
  2183. - Use diablo kernel on all future SDKs for Tahiti and set preferred vector width
  2184. to 1 on poclbm kernel only.
  2185. - Explicitly type the constants in diakgcn kernel as uint, to be in line with
  2186. poclbm kernel.
  2187. - Reset all hash counters at the same time as resetting start times to get
  2188. accurate hashrates on exiting which is mandatory for benchmarking.
  2189. - Report thread out before it starts to avoid being flagged as sick when waiting
  2190. for the first work item.
  2191. - Don't disable and re-enable devices as they may recover and in the meantime
  2192. have their status set to OFF.
  2193. - API new commands enablepool and disablepool (version already incremented)
  2194. - Tolerate new-format temperature readings for bitforce
  2195. - Modify cgminer.c pool control to allow API to call it
  2196. - Bugfix: Fix BitFORCE driver memory leak in debug logging
  2197. - Extra byte was being unused in poclbm leading to failure on some platforms.
  2198. - Explicitly type the constants in poclbm kernel as uint.
  2199. - Don't save 'include' when saving the configuration
  2200. - Allow configuration file to include another recursively
  2201. - Use the SDK and hardware information to choose good performing default
  2202. kernels.
  2203. - Move phatk kernel to offset vector based nonce bases as well.
  2204. - Add a --benchmark feature which works on a fake item indefinitely to compare
  2205. device performance without any server or networking influence.
  2206. - Allow writing of multiple worksizes to the configuration file.
  2207. - Allow writing of multiple vector sizes to the configuration file.
  2208. - Allow writing of multiple kernels to the configuration file.
  2209. - Allow multiple different kernels to be chosen per device.
  2210. - Allow the worksize to be set per-device.
  2211. - Allow different vectors to be set per device.
  2212. - If we're well below the target temperature, increase gpu engine speed back to
  2213. maximum in case we have gotten lost between profiles during an idle period.
  2214. - We should be setting the value of fan_optimal, not its address.
  2215. - As all kernels will be new versions it's an opportunity to change the .bin
  2216. format and make it simpler. Specifying bitalign is redundant and long can be l.
  2217. - Use any() in kernel output code.
  2218. - Put the nonce for each vector offset in advance, avoiding one extra addition
  2219. in the kernel.
  2220. - Reset times after all mining threads are started to make estimating hashrates
  2221. easier at startup.
  2222. - Bugfix: allow no-exec (NX) stack
  2223. - Fix minor warning.
  2224. - fix the bitforce.c code style follow 1TBS
  2225. - fix icarus.c compile warning
  2226. - small changes to speedup no vec for AMD 898.1 OCL runtime
  2227. - Update licensing to GPL V3.
  2228. - Reset the longpoll flag after it's been used once to prevent it restarting
  2229. work again.
  2230. - Begin import of DiabloMiner kernel.
  2231. - Modify API debug messages to say API instead of DBG
  2232. - When API shuts down cgminer don't kill itself
  2233. - Don't make rolled work from the longpoll be seen as other longpoll work items.
  2234. - API add 'privileged' command so can verify access level
  2235. - Set the lp_sent variable under lock since there will almost always be a race
  2236. on setting this variable, potentially leading to multiple LPs being sent out.
  2237. - API restrict access to all non display commands by default
  2238. - Update API version to 1.2 for new 'Log Interval'
  2239. - API add --log Interval to 'config' reply
  2240. - --api-allow special case 0/0 means all
  2241. Version 2.2.7 - February 20, 2012
  2242. - Send out extra longpolls when we have switched pools and the longpoll thread
  2243. is still bound to the old one. This is particularly useful with p2pool where
  2244. longpolls do not correlate with main bitcoin block change and would have led to
  2245. high reject rates on failover.
  2246. - Store whether a work item is the result of a longpoll or not in struct work
  2247. and use it to help determine block changes directly from the work longpoll bool.
  2248. - Keep track of when a longpoll has been sent for a pool and if the current pool
  2249. is requesting work but has not sent a longpoll request, convert one of the work
  2250. items to a longpoll.
  2251. - Store the longpoll url in the pool struct and update it from the pool_active
  2252. test in case it changes. This is to allow further changes to longpoll management
  2253. on switching pools.
  2254. - Re-check for a longpoll supporting pool every 30 seconds if none is found
  2255. initially.
  2256. - Report threads as busy waiting on getwork on startup to avoid them being
  2257. flagged sick on startup during slow networking.
  2258. - Allow devices that are disabled due to overheating to be flagged as recovering
  2259. instead of disabling them and re-enable them if they're below ideal temperatures
  2260. - Tahiti prefers worksize 64 with poclbm.
  2261. - No need to expressly retain the opencl program now that the zero binary issue
  2262. is fixed. This actually fixes cgminer to work with the latest SDK included with
  2263. the ATI catalyst driver 12.2.
  2264. - Show error code on any opencl failure status.
  2265. - Add detection for version 898.1 SDK as well but only give SDK 2.6 warning once
  2266. on startup instead of with each device initialisation.
  2267. - Always use a fresh connection for longpoll as prolonged persistent connections
  2268. can fail for many reasons.
  2269. - Keep track of intended engine clock speed and only adjust up if it's higher
  2270. than the last intended speed. This avoids setting the clock speed to one
  2271. relative to a lower profile one by mistake.
  2272. - Use gpu-memdiff on startup if an engine clockspeed is set and a memdiff value
  2273. is set.
  2274. - Revert "Adjust engine speed up according to performance level engine setting,
  2275. not the current engine speed." - ineffectual.
  2276. - Freeze the queues on all threads that are sent the pause message to prevent
  2277. them trying to start up again with saved pings in their queues.
  2278. - Updates to diakgcn kernel/
  2279. - Consolidate all screen updates to the watchdog thread and touch both windows
  2280. before refresh.
  2281. - Curses will be disabled in clean_up so don't do it early in kill_work, and
  2282. disable_adl so that GPU settings may be restored to normal in case shutting down
  2283. curses leads to instability on windows.
  2284. - Stop the mining threads before trying to kill them.
  2285. - Plain refresh() does not give reliably screen updates so get rid of all uses
  2286. of it.
  2287. - First release with working diakgcn kernel.
  2288. Version 2.2.6 - February 16, 2012
  2289. - Provide warning on each startup about sdk 2.6
  2290. - Fix unused warnings on win32.
  2291. - bitforce: Simplify BFopen WIN32 ifdef/else
  2292. - Fix initialization warning with jansson 1.3
  2293. - bitforce: Cleanup extraneous TODO that isn't needed
  2294. - Move tcsetattr (and new tcflush) into *nix BFopen to simplify things a bit
  2295. - Add message explaining 2nd thread disabling for dynamic mode and how to tune
  2296. it.
  2297. - Move logwindow down once number of devices is known.
  2298. - Automatically choose phatk kernel for bitalign non-gcn ATI cards, and then
  2299. only select poclbm if SDK2.6 is detected.
  2300. - Allow the refresh interval to be adjusted in dynamic intensity with a
  2301. --gpu-dyninterval parameter.
  2302. - Make curses display visible right from the beginning and fix the window sizes
  2303. so the initial messages don't get lost once the status window is drawn.
  2304. - The amount of work scanned can fluctuate when intensity changes and since we
  2305. do this one cycle behind, we increment the work more than enough to prevent
  2306. repeati
  2307. - bitforce: Set a 30 second timeout for serial port on Windows, since the
  2308. default is undefined
  2309. - Use PreVal4addT1 instead of PreVal4 in poclbm kernel.
  2310. - Import PreVal4 and PreVal0 into poclbm kernel.
  2311. - Import more prepared constants into poclbm kernel.
  2312. - Keep variables in one array but use Vals[] name for consistency with other
  2313. kernel designs.
  2314. - Replace constants that are mandatorily added in poclbm kernel with one value.
  2315. - Remove addition of final constant before testing for result in poclbm kernel.
  2316. - Hand optimise variable addition order.
  2317. - Hand optimise first variable declaration order in poclbm kernel.
  2318. - Radical reordering machine based first pass to change variables as late as
  2319. possible, bringing their usage close together.
  2320. - fix strcpy NULL pointer if env HOME unset.
  2321. - bitforce: Disable automatic scanning when at least one device is specified
  2322. manually
  2323. - Unroll all poclbm additions to enable further optimisations.
  2324. Version 2.2.5 - February 13, 2012
  2325. - Make output buffer write only as per Diapolo's suggestion.
  2326. - Constify nonce in poclbm.
  2327. - Use local and group id on poclbm kernel as well.
  2328. - Microoptimise phatk kernel on return code.
  2329. - Adjust engine speed up according to performance level engine setting, not the
  2330. current engine speed.
  2331. - Try to load a binary if we've defaulted to the poclbm kernel on SDK2.6
  2332. - Use the poclbm kernel on SDK2.6 with bitalign devices only if there is no
  2333. binary available.
  2334. - Further generic microoptimisations to poclbm kernel.
  2335. - The longstanding generation of a zero sized binary appears to be due to the
  2336. OpenCL library putting the binary in a RANDOM SLOT amongst 4 possible binary
  2337. locations. Iterate over each of them after building from source till the real
  2338. binary is found and use that.
  2339. - Fix harmless warnings with -Wsign-compare to allow cgminer to build with -W.
  2340. - Fix missing field initialisers warnings.
  2341. - Put win32 equivalents of nanosleep and sleep into compat.h fixing sleep() for
  2342. adl.c.
  2343. - Restore compatibility with Jansson 1.3 and 2.0 (api.c required 2.1)
  2344. - Modularized logging, support for priority based logging
  2345. - Move CPU chipset specific optimization into device-cpu
  2346. Version 2.2.4 - February 11, 2012
  2347. - Fix double definition of A0 B0 to zeroA zeroB.
  2348. - Retain cl program after successfully loading a binary image. May decrease
  2349. failures to build kernels at startup.
  2350. - Variable unused after this so remove setting it.
  2351. - BFI INT patching is not necessarily true on binary loading of files and not
  2352. true on ATI SDK2.6+. Report bitalign instead.
  2353. - Various string fixes for reject reason.
  2354. - Generalize --temp-cutoff and implement support for reading temperature from
  2355. BitFORCE FPGAs
  2356. - Change message from recovered to alive since it is used on startup as well as
  2357. when a pool has recovered.
  2358. - Start mining as soon as any pool is found active and rely on the watchpool
  2359. thread to bring up other pools.
  2360. - Delayed responses from testing pools that are down can hold up the watchdog
  2361. thread from getting to its device testing code, leading to false detection of
  2362. the GPU not checking in, and can substantially delay auto gpu/auto fan
  2363. management leading to overheating. Move pool watching to its own thread.
  2364. - Bugfix: BitFORCE index needs to be static to count correctly
  2365. - Space out retrieval of extra work according to the number of mining threads.
  2366. - Make shutdown more robust. Enable the input thread only after the other
  2367. threads exist. Don't kill off the workio thread and use it to exit main() only
  2368. if there is an unexpected problem. Use kill_work() for all anticipated shutdowns
  2369. where possible. Remove unused thread entry.
  2370. - Change poclbm version number.
  2371. - One array is faster than 2 separate arrays so change to that in poclbm kernel.
  2372. - Microoptimisations to poclbm kernel which increase throughput slightly.
  2373. - Import diablominer kernel. Currently disabled as not working.
  2374. - Import diapolo kernel. Currently disabled as not working.
  2375. - Conflicting entries of cl_kernel may have been causing problems, and
  2376. automatically chosen kernel type was not being passed on. Rename the enum to
  2377. cl_kernels and store the chosen kernel in each clState.
  2378. - Set cl_amd_media_ops with the BITALIGN flag and allow non-bitselect devices to
  2379. build.
  2380. - ALlow much longer filenames for kernels to load properly.
  2381. - Allow different kernels to be used by different devices and fix the logic fail
  2382. of overcorrecting on last commit with !strstr.
  2383. - Fix kernel selection process and build error.
  2384. - queue_phatk_kernel now uses CL_SET_VARG() for base-nonce(s), too
  2385. - added OpenCL >= 1.1 detection code, in preparation of OpenCL 1.1 global offset
  2386. parameter support
  2387. - Use K array explicitly to make it clear what is being added.
  2388. - Work items have a tendency to expire at exactly the same time and we don't
  2389. queue extra items when there are plenty in the queue, regardless of age. Allow
  2390. extra work items to be queued if adequate time has passed since we last
  2391. requested work even if over the limit.
  2392. - Discard work when failover-only is enabled and the work has come from a
  2393. different pool.
  2394. - Missing include to build on newer mingw32.
  2395. - Move from the thread safe localtime_r to regular localtime which is the only
  2396. one supported on newer pthread libraries on mingw32 to make it compile with the
  2397. newer ming. Thread safety is of no importance where localtime is used in this
  2398. code.
  2399. - Define in_addr_t in windows if required
  2400. - sys/wait.h not required in windows
  2401. - Allow API to restrict access by IP address
  2402. - Add pool switching to example miner.php
  2403. - Display X-Reject-Reason, when provided
  2404. - Remove the test for whether the device is on the highest profil level before
  2405. raising the GPU speed as it is ineffectual and may prevent raising the GPU
  2406. speed.
  2407. - Remove unnecessary check for opt_debug one every invocation of applog at
  2408. LOG_DEBUG level and place the check in applog().
  2409. Version 2.2.3 - February 6, 2012
  2410. - Revert "Rewrite the convoluted get_work() function to be much simpler and roll
  2411. work as much as possible with each new work item." This seems to cause a race on
  2412. work in free_work(). Presumably other threads are still accessing the structure.
  2413. Version 2.2.2 - February 6, 2012
  2414. - Provide support for the submitold extension on a per-pool basis based on the
  2415. value being detected in a longpoll.
  2416. - Don't send a ping to a dynamic device if it's not enabled as that will just
  2417. enable it for one pass and then disable it again.
  2418. - Rewrite the convoluted get_work() function to be much simpler and roll work as
  2419. much as possible with each new work item.
  2420. - Roll as much work as possible from the work returned from a longpoll.
  2421. - Rolling work on each loop through the mining thread serves no purpose.
  2422. - Allow to stage more than necessary work items if we're just rolling work.
  2423. - Replace divide_work with reuse_work function used twice.
  2424. - Give rolled work a new ID to make sure there is no confusion in the hashtable
  2425. lookups.
  2426. - Remove now-defunct hash_div variables.
  2427. - Remove unused get_dondata function.
  2428. - Silence ADL warnings.
  2429. - Silence unused parameter warnings.
  2430. - Stagger the restart of every next thread per device to keep devices busy ahead
  2431. of accessory threads per device.
  2432. - Deprecate the --donation feature. Needlessly complex, questionable usefulness,
  2433. depends on author's server and a central pool of some kind, and was not heavily
  2434. adopted.
  2435. - It's devices that report back now, not threads, update message.
  2436. - Continue auto-management of fan and engine speeds even if a device is disabled
  2437. for safety reasons.
  2438. - No need to check we're highest performance level when throttling GPU engine
  2439. speed.
  2440. - Abstract out tests for whether work has come from a block that has been seen
  2441. before and whether a string is from a previously seen block.
  2442. - Probe but don't set the timeout to 15 seconds as some networks take a long
  2443. time to timeout.
  2444. - Remove most compiler warnings from api.c
  2445. - Add last share's pool info in cgpu_info
  2446. - Allow the OpenCL platform ID to be chosen with --gpu-platform.
  2447. - Iterate over all platforms displaying their information and number of devices
  2448. when --ndevs is called.
  2449. - Deprecate main.c
  2450. - Some networks can take a long time to resolve so go back to 60 second timeouts
  2451. instead of 15.
  2452. - Only enable curses on failure if curses is desired.
  2453. - Fix warnings in bitforce.c
  2454. - Bugfix: Need to open BitForce tty for read-write
  2455. - Fix various build issues.
  2456. - Modularize code: main.c -> device-cpu + device-gpu
  2457. - Fix phatk kernel not working on non-bitalign capable devices (Nvidia, older
  2458. ATI).
  2459. - Update poclbm kernel for better performance on GCN and new SDKs with bitalign
  2460. support when not BFI INT patching. Update phatk kernel to work properly for non
  2461. BFI INT patched kernels, providing support for phatk to run on GCN and non-ATI
  2462. cards.
  2463. - Return last accepted share pool/time for devices
  2464. - Display accepted share pool/time for CPUs
  2465. - Bug intensity always shows GPU 0
  2466. - Update example web miner.php to use new API commands
  2467. Version 2.2.1 - January 30, 2012
  2468. NOTE - The GPU Device reordering in 2.2.0 by default was considered a bad idea
  2469. so the original GPU ordering is used by default again unless reordering is
  2470. explicitly requested.
  2471. - Fix bitforce failing to build into cgminer.
  2472. - Add missing options to write config function.
  2473. - Add a --gpu-reorder option to only reorder devices according to PCI Bus ID
  2474. when requested.
  2475. - Fix for midstate support being broken on pools that supported no-midstate
  2476. work by ensuring numbers are 32 bits in sha2.c
  2477. - Set virtual GPUs to work when ADL is disabled or all mining will occur on GPU
  2478. 0.
  2479. - Add information about paused threads in the menu status.
  2480. - Disable all but the first thread on GPUs in dynamic mode for better
  2481. interactivity.
  2482. - Set the latest network access time on share submission for --net-delay even if
  2483. we're not delaying that submission for further network access.
  2484. - Clear adl on exiting after probing values since it may attempt to overclock.
  2485. - As share submission is usually staggered, and delays can be costly, submit
  2486. shares without delay even when --net-delay is enabled.
  2487. - Display GPU number and device name when ADL is successfully enabled on it.
  2488. - Display GPU ordering remapping in verbose mode.
  2489. - Don't fail in the case the number of ADL and OpenCL devices do not match, and
  2490. do not attempt to reorder devices unless they match. Instead give a warning
  2491. about
  2492. - Display error codes should ADL not return ADL_OK in the more critical function
  2493. calls.
  2494. - Fix unused warning.
  2495. - Fix compile warnings in api.c
  2496. - Add extensive ADL based device info in debug mode.
  2497. - Make --ndevs display verbose opencl information as well to make debugging
  2498. version information easier.
  2499. - Display information about the opencl platform with verbose enabled.
  2500. - Explicitly check for nvidia in opencl platform strings as well.
  2501. Version 2.2.0 - January 29, 2012
  2502. NOTE: GPU Device order will change with this release with ATI GPUs as cgminer
  2503. now can enumerate them according to their Bus ID which means the values should
  2504. now correlate with their physical position on the motherboard.
  2505. - Default to poclbm kernel on Tahiti (7970) since phatk does not work, even
  2506. though performance is sub-standard so that at least it will mine successfully by
  2507. defau
  2508. - Retain cl program after every possible place we might build the program.
  2509. - Update ADL SDK URL.
  2510. - Fix potential overflow.
  2511. - Map GPU devices to virtual devices in their true physical order based on
  2512. BusNumber.
  2513. - Change the warning that comes with failure to init cl on a device to be more
  2514. generic and accurate.
  2515. - Advertise longpoll support in X-Mining-Extensions
  2516. - Detect dual GPU cards by iterating through all GPUs, finding ones without
  2517. fanspeed and matching twins with fanspeed one bus ID apart.
  2518. - Do not attempt to build the program that becomes the kernel twice. This could
  2519. have been leading to failures on initialising cl.
  2520. - Some opencl compilers have issues with no spaces after -D in the compiler
  2521. options.
  2522. - Allow intensity up to 14.
  2523. - Use calloced stack memory for CompilerOptions to ensure sprintf writes to the
  2524. beginning of the char.
  2525. - Whitelist 79x0 cards to prefer no vectors as they perform better without.
  2526. - Adjust fan speed gently while in the optimal range when temperature is
  2527. drifting to minimise overshoot in either direction.
  2528. - Detect dual GPU cards via the indirect information of - 1st card has a fan
  2529. controller. 2nd card does not have a fan controller, cards share the same device
  2530. name
  2531. - Instead of using the BFI_INT patching hack on any device reporting
  2532. cl_amd_media_ops, create a whitelist of devices that need it. This should enable
  2533. GCN architec
  2534. - Fixed API compiling issue on OS X
  2535. - Add more explanation of JSON format and the 'save' command
  2536. - Return an error if using ADL API commands when it's not available
  2537. - Read off lpThermalControllerInfo from each ADL device.
  2538. - Add ADL_Overdrive5_ThermalDevices_Enum interface.
  2539. - Add API commands: config, switchpool, gpu settings, save
  2540. - Implement socks4 proxy support.
  2541. - Fix send() for JSON strings
  2542. - Introduce a --net-delay option which guarantees at least 250ms between any
  2543. networking requests to not overload slow routers.
  2544. - Generalise locking init code.
  2545. - Allow invalid values to be in the configuration file, just skipping over them
  2546. provided the rest of the file is valid JSON. This will allow older configurat
  2547. - Allow CPU mining explicitly enable only if other mining support is built in.
  2548. - BitForce FPGA support
  2549. - Configure out building and support of all CPU mining code unless
  2550. --enable-cpumining is enabled.
  2551. - Allow parsed values to be zero which will allow 0 values in the config file to
  2552. work.
  2553. - Advertise that we can make our own midstate, so the pool can skip generating
  2554. it for us
  2555. - Refactor the CPU scanhash_* functions to use a common API. Fixes bugs.
  2556. - Don't consider a pool lagging if a request has only just been filed. This
  2557. should decrease the false positives for "pool not providing work fast enough".
  2558. - Invalidating work after longpoll made hash_pop return no work giving a false
  2559. positive for dead pool. Rework hash_pop to retry while finds no staged work u
  2560. - Remove TCP_NODELAY from curl options as many small packets may be contributing
  2561. to network overload, when --net-delay is enabled.
  2562. - Refactor miner_thread to be common code for any kind of device
  2563. - Simplify submit_nonce loop and avoid potentially missing FOUND - 1 entry.
  2564. Reported by Luke-Jr.
  2565. - Micro-optimisation in sha256_sse2 code courtesy of Guido Ascioti
  2566. guido.ascioti@gmail.com
  2567. - Refactor to abstract device-specific code
  2568. Version 2.1.2 - January 6, 2012
  2569. - If api-description is specified, save it when writing the config file
  2570. - Adjust utility width to be constant maximum as well.
  2571. - Add percent signs to reject ratio outputs
  2572. - Should the donation pool fail, don't make the fallover pool behave as though
  2573. the primary pool is lagging.
  2574. - Use an alternative pool should the donation getwork fail.
  2575. Version 2.1.1 - January 1, 2012
  2576. - Include API examples in distribution tarball.
  2577. - Don't attempt to pthread_join when cancelling threads as they're already
  2578. detached and doing so can lead to a segfault.
  2579. - Give more generic message if slow pool at startup is the donation pool.
  2580. - Continue to attempt restarting GPU threads if they're flagged dead at 1 min.
  2581. intervals.
  2582. - Don't attempt to restart sick flagged GPUs while they're still registering
  2583. activity.
  2584. - Make curl use fresh connections whenever there is any communication issue
  2585. in case there are dead persistent connections preventing further comms from
  2586. working.
  2587. - Display pool in summary if only 1 pool.
  2588. - Adjust column width of A/R/HW to be the maximum of any device and align them.
  2589. Version 2.1.0 - December 27, 2011
  2590. - Major infrastructure upgrade with RPC interface for controlling via sockets
  2591. encoded with/without JSON courtesy of Andrew Smith. Added documentation for
  2592. use of the API and sample code to use with it.
  2593. - Updated linux-usb-cgminer document.
  2594. - Rewrite of longpoll mechanism to choose the current pool wherever possible to
  2595. use for the longpoll, or any pool that supports longpoll if the current one
  2596. does not.
  2597. - Display information about longpoll when the chosen server has changed.
  2598. - Fix the bug where longpoll generated work may have been sent back to the
  2599. wrong pool, causing rejects.
  2600. - Fix a few race conditions on closing cgminer which caused some of the crashes
  2601. on exit.
  2602. - Only adjust gpu engine speed in autotune mode if the gpu is currently at the
  2603. performance level of that being adjusted.
  2604. - Various fixes for parsing/writing of configuration files.
  2605. - Do not add blank lines for threads of unused CPUs.
  2606. - Show which pool is unresponsive on startup.
  2607. - Only show GPU management menu item if GPUs are in use.
  2608. - Align most device columns in the curses display.
  2609. Version 2.0.8 - November 11, 2011
  2610. - Make longpoll do a mandatory flushing of all work even if the block hasn't
  2611. changed, thus supporting longpoll initiated work change of any sort and merged
  2612. mining.
  2613. - Byteswap computed hash in hashtest so it can be correctly checked. This fixes
  2614. the very rare possibility that a block solve on solo mining was missed.
  2615. - Add x86_64 w64 mingw32 target
  2616. - Allow a fixed speed difference between memory and GPU clock speed with
  2617. --gpu-memdiff that will change memory speed when GPU speed is changed in
  2618. autotune mode.
  2619. - Don't load the default config if a config file is specified on the command
  2620. line.
  2621. - Don't build VIA on apple since -a auto bombs instead of gracefully ignoring
  2622. VIA failing.
  2623. - Build fix for dlopen/dlclose errors in glibc.
  2624. Version 2.0.7 - October 17, 2011
  2625. - Support work without midstate or hash1, which are deprecated in bitcoind 0.5+
  2626. - Go to kernel build should we fail to clCreateProgramWithBinary instead of
  2627. failing on that device. This should fix the windows problems with devices not
  2628. initialising.
  2629. - Support new configuration file format courtesy of Chris Savery which can write
  2630. the config file from the menu and will load it on startup.
  2631. - Write unix configuration to .cgminer/cgminer.conf by default and prompt to
  2632. overwrite if given a filename from the menu that exists.
  2633. Version 2.0.6 - October 9, 2011
  2634. - Must initialise the donorpool mutex or it fails on windows.
  2635. - Don't make donation work interfere with block change detection allowing
  2636. donation to work regardless of the block chain we're mining on.
  2637. - Expire shares as stale with a separate timeout from the scantime, defaulting
  2638. to 120 seconds.
  2639. - Retry pools after a delay of 15 seconds if none can be contacted on startup
  2640. unless a key is pressed.
  2641. - Don't try to build adl features without having adl.
  2642. - Properly check shares against target difficulty - This will no longer show
  2643. shares when solo mining at all unless they're considered to be a block solve.
  2644. - Add altivec 4 way (cpu mining) support courtesy of Gilles Risch.
  2645. - Try to use SSL if the server supports it.
  2646. - Display the total solved blocks on exit (LOL if you're lucky).
  2647. - Use ADL activity report to tell us if a sick GPU is still busy suggesting it
  2648. is hard hung and do not attempt to restart it.
  2649. Version 2.0.5 - September 27, 2011
  2650. - Intensity can now be set to dynamic or static values per-device.
  2651. - New donation feature --donation sends a proportion of shares to author's
  2652. account of choice, but is disabled by default!
  2653. - The hash being displayed and block detection has been fixed.
  2654. - Devices not being mined on will not attempt to be ADL managed.
  2655. - Intensity is now displayed per GPU device.
  2656. - Make longpoll attempt to restart as often as opt_retries specifies.
  2657. - We weren't rolling work as often as we could.
  2658. - Correct some memory management issues.
  2659. - Build fixes.
  2660. - Don't mess with GPUs if we don't have them.
  2661. Version 2.0.4 - September 23, 2011
  2662. - Confused Longpoll messages should be finally fixed with cgminer knowing for
  2663. sure who found the new block and possibly avoiding a rare crash.
  2664. - Display now shows the actual hash and will say BLOCK! if a block is deemed
  2665. solved.
  2666. - Extra spaces, which would double space lines on small terminals, have been
  2667. removed.
  2668. - Fan speed change is now damped if it is already heading in the correct
  2669. direction to minimise overshoot.
  2670. - Building without opencl libraries is fixed.
  2671. - GPUs are autoselected if there is only one when in the GPU management menu.
  2672. - GPU menu is refreshed instead of returning to status after a GPU change.
  2673. Version 2.0.3 - September 17, 2011
  2674. - Various modes of failure to set fanspeeds and adl values have been addressed
  2675. and auto-fan should work now on most hardware, and possibly other values
  2676. which previously would not have worked.
  2677. - Fixed a crash that can occur on switching pools due to longpoll thread races.
  2678. - Use ATISTREAMSDKROOT if available at build time.
  2679. - Fanspeed management is returned to the driver default on exit instead of
  2680. whatever it was when cgminer was started.
  2681. - Logging of events deemed WARNING or ERR now will display even during
  2682. periods where menu input is being awaited on.
  2683. Version 2.0.2 - September 11, 2011
  2684. - Exit cleanly if we abort before various threads are set up or if they no
  2685. longer exist.
  2686. - Fix a rare crash in HASH_DEL due to using different mutexes to protect the
  2687. data.
  2688. - Flag devices that have never started and don't allow enabling of devices
  2689. without restarting them.
  2690. - Only force the adapter speed to high if we've flagged this device as being
  2691. managed.
  2692. - Flag any devices with autofan or autogpu as being managed.
  2693. - Use a re-entrant value to store what fanspeed we're trying to set in case the
  2694. card doesn't support small changes. Force it to a multiple of 10% if it
  2695. fails on trying to speed up the fan.
  2696. - Do not bother resetting values to old ones if changes to GPU parameters report
  2697. failure, instead returning a failure code only if the return value from get()
  2698. differs.
  2699. - Remove redundant check.
  2700. - Only display supported values from fanspeed on change settings.
  2701. - Missing bracket from output.
  2702. - Display fan percentage on devices that only support reporting percent and not
  2703. RPM.
  2704. - Properly substitute DLOPEN flags to build with ADL support when -ldl is needed
  2705. and not when opencl is not found.
  2706. Version 2.0.1 - September 9, 2011
  2707. - Fix building on 32bit glibc with dlopen with -lpthread and -ldl
  2708. - ByteReverse is not used and the bswap opcode breaks big endian builds. Remove
  2709. it.
  2710. - Ignore whether the display is active or not since only display enabled devices
  2711. work this way, and we skip over repeat entries anwyay.
  2712. - Only reset values on exiting if we've ever modified them.
  2713. - Flag adl as active if any card is successfully activated.
  2714. - Add a thermal cutoff option as well and set it to 95 degrees by default.
  2715. - Change the fan speed by only 5% if it's over the target temperature but less
  2716. than the hysteresis value to minimise overshoot down in temperature.
  2717. - Add a --no-adl option to disable ADL monitoring and GPU settings.
  2718. - Only show longpoll received delayed message at verbose level.
  2719. - Allow temperatures greater than 100 degrees.
  2720. - We should be passing a float for the remainder of the vddc values.
  2721. - Implement accepting a range of engine speeds as well to allow a lower limit to
  2722. be specified on the command line.
  2723. - Allow per-device fan ranges to be set and use them in auto-fan mode.
  2724. - Display which GPU has overheated in warning message.
  2725. - Allow temperature targets to be set on a per-card basis on the command line.
  2726. - Display fan range in autofan status.
  2727. - Setting the hysteresis is unlikely to be useful on the fly and doesn't belong
  2728. in the per-gpu submenu.
  2729. - With many cards, the GPU summaries can be quite long so use a terse output
  2730. line when showing them all.
  2731. - Use a terser device status line to show fan RPM as well when available.
  2732. - Define max gpudevices in one macro.
  2733. - Allow adapterid 0 cards to enumerate as a device as they will be non-AMD
  2734. cards, and enable ADL on any AMD card.
  2735. - Do away with the increasingly confusing and irrelevant total queued and
  2736. efficiency measures per device.
  2737. - Only display values in the log if they're supported and standardise device log
  2738. line printing.
  2739. Version 2.0.0 - September 6, 2011
  2740. Major feature upgrade - GPU monitoring, (over)clocking and fan control for ATI
  2741. GPUs.
  2742. New command line switches:
  2743. --auto-fan- Automatically adjust all GPU fan speeds to maintain a target
  2744. temperature
  2745. --auto-gpu- Automatically adjust all GPU engine clock speeds to maintain
  2746. a target temperature
  2747. --gpu-engine <arg> Set the GPU engine (over)clock in Mhz - one value for all or
  2748. separate by commas for per card.
  2749. --gpu-fan <arg> Set the GPU fan percentage - one value for all or separate
  2750. by commas for per card.
  2751. --gpu-memclock <arg> Set the GPU memory (over)clock in Mhz - one value for all
  2752. or separate by commas for per card.
  2753. --gpu-powertune <arg> Set the GPU powertune percentage - one value for all or
  2754. separate by commas for per card.
  2755. --gpu-vddc <arg> Set the GPU voltage in Volts - one value for all or separate
  2756. by commas for per card.
  2757. --temp-hysteresis <arg> Set how much the temperature can fluctuate outside
  2758. limits when automanaging speeds (default: 3)
  2759. --temp-overheat <arg> Set the overheat temperature when automatically managing
  2760. fan and GPU speeds (default: 85)
  2761. --temp-target <arg> Set the target temperature when automatically managing fan
  2762. and GPU speeds (default: 75)
  2763. - Implement ATI ADL support for GPU parameter monitoring now and setting later
  2764. (temp, fan, clocks etc.).
  2765. - Check for the presence of the ADL header files in ADL_SDK.
  2766. - Import adl_functions.h from amd overdrive ctrl.
  2767. - Implement a setup function that tries to detect GPUs that support the ADL and
  2768. link in the parameters into the gpus struct.
  2769. - Put a summary of monitoring information from the GPU menu.
  2770. - Implement changing memory speed and voltage on the fly.
  2771. - Implement fan speed setting.
  2772. - Minor corrections to set fan speed by percentage.
  2773. - Make sure to read off the value in RPM only.
  2774. - Implement auto fanspeed adjustment to maintain a target temperature and
  2775. fanspeed below 85%, with an overheat check that will speed the fan up to 100%.
  2776. - Add an --auto-fan command line option to allow all GPUs to have autofan
  2777. enabled from startup.
  2778. - Add a gpu autotune option which adjusts GPU speed to maintain a target
  2779. temperature within the bounds of the default GPU speed and any overclocking set.
  2780. - Avoid a dereference if the longpoll thread doesn't exist.
  2781. - Clean up by setting performance profiles and fan settings to startup levels on
  2782. exit.
  2783. - Add a small amount of hysteresis before lowering clock speed.
  2784. - Allow target, overheat and hysteresis temperatures to be set from command
  2785. line.
  2786. - Combine all stats collating into one function to avoid repeating function
  2787. calls on each variable.
  2788. - Add gpu statistics to debugging output via the watchdog thread.
  2789. - Implement menus to change temperature limits.
  2790. - Implement setting the GPU engine clock speed of all devices or each device as
  2791. a comma separated value.
  2792. - Implement setting the GPU memory clock speed of all devices or each device as
  2793. a comma separated value.
  2794. - Implement setting the GPU voltage of all devices or each device as a comma
  2795. separated value.
  2796. - Implement setting the GPU fan speed of all devices or each device as a comma
  2797. separated value.
  2798. - Add support for monitoring powertune setting.
  2799. - Implement changing of powertune value from the GPU change settings menu.
  2800. - Get the value of powertune in get_stats.
  2801. - Implement setting the GPU powertune value of all devices or each device as a
  2802. comma separated value.
  2803. - Remove the safety checks in speed setting since confirmation is done first in
  2804. the menu, then show the new current values after a short pause.
  2805. - Force the speed to high on startup and restore it to whatever the setting was
  2806. on exit.
  2807. - Add temperature to standard output where possible and use more compact output.
  2808. - Move and print at the same time in curses to avoid random trampling display
  2809. errors.
  2810. - Update the status window only from the watchdog thread, do not rewrite the top
  2811. status messages and only refresh once all the status window is complete,
  2812. clearing the window each time to avoid corruption.
  2813. - Set a safe starting fan speed if we're automanaging the speeds.
  2814. - Provide locking around all adl calls to prevent races.
  2815. - Lower profile settings cannot be higher than higher profile ones so link any
  2816. drops in settings.
  2817. - Add new needed text files to distribution.
  2818. - Queue requests ignoring the number of staged clones since they get discarded
  2819. very easily leading to false positives for pool not providing work fast enough.
  2820. - Include libgen.h in opt.c to fix win32 compilation warnings.
  2821. - Fix compilation warning on win32.
  2822. - Add the directory name from the arguments cgminer was called from as well to
  2823. allow it running from a relative pathname.
  2824. - Add a --disable-adl option to configure and only enable it if opencl support
  2825. exists.
  2826. - Retry before returning a failure to get upstream work as a failure to avoid
  2827. false positives for pool dead.
  2828. - Retry also if the decoding of work fails.
  2829. - Use the presence of X-Roll-Ntime in the header as a bool for exists unless N
  2830. is found in the response.
  2831. Version 1.6.2 - September 2, 2011
  2832. - Add --failover-only option to not leak work to backup pools when the primary
  2833. pool is lagging.
  2834. - Change recommendation to intensity 9 for dedicated miners.
  2835. - Fix the bouncing short term value by allowing it to change dynamically when
  2836. the latest value is very different from the rolling value, but damp the change
  2837. when it gets close.
  2838. - Use the curses_lock to protect the curses_active variable and test it under
  2839. lock.
  2840. - Go back to requesting work 2/3 of the way through the current scantime with
  2841. CPU mining as reports of mining threads running out of work have occurred with
  2842. only 5 seconds to retrieve work.
  2843. - Add start and stop time scheduling for regular time of day running or once off
  2844. start/stop options.
  2845. - Print summary on quit modes.
  2846. - Put some sanity checks on the times that can be input.
  2847. - Give a verbose message when no active pools are found and pause before
  2848. exiting.
  2849. - Add verbose message when a GPU fails to initialise, and disable the correct
  2850. GPU.
  2851. - Cryptopp asm32 was not correctly updated to the incremental nonce code so the
  2852. hash counter was bogus.
  2853. - Get rid of poorly executed curl check.
  2854. - If curl does not have sockopts, do not try to compile the
  2855. json_rpc_call_sockopt_cb function, making it possible to build against older
  2856. curl libraries.
  2857. - Most people expect /usr/local when an unspecified prefix is used so change to
  2858. that.
  2859. - Rename localgen occasions to getwork fail occasions since localgen is
  2860. unrelated now.
  2861. Version 1.6.1 - August 29, 2011
  2862. - Copy cgminer path, not cat it.
  2863. - Switching between redrawing windows does not fix the crash with old
  2864. libncurses, so redraw both windows, but only when the window size hasn't
  2865. changed.
  2866. - Reinstate minimum 1 extra in queue to make it extremely unlikely to ever have
  2867. 0 staged work items and any idle time.
  2868. - Return -1 if no input is detected from the menu to prevent it being
  2869. interpreted as a 0.
  2870. - Make pthread, libcurl and libcurses library checks mandatory or fail.
  2871. - Add a --disable-opencl configure option to make it possible to override
  2872. detection of opencl and build without GPU mining support.
  2873. - Confusion over the variable name for number of devices was passing a bogus
  2874. value which likely was causing the zero sized binary issue.
  2875. - cgminer no longer supports default url user and pass so remove them.
  2876. - Don't show value of intensity since it's dynamic by default.
  2877. - Add options to explicitly enable CPU mining or disable GPU mining.
  2878. - Convert the opt queue into a minimum number of work items to have queued
  2879. instead of an extra number to decrease risk of getting idle devices without
  2880. increasing risk of higher rejects.
  2881. - Statify tv_sort.
  2882. - Check for SSE2 before trying to build 32 bit SSE2 assembly version. Prevents
  2883. build failure when yasm is installed but -msse2 is not specified.
  2884. - Add some defines to configure.ac to enable exporting of values and packaging,
  2885. and clean up output.
  2886. - Give convenient summary at end of ./configure.
  2887. - Display version information and add --version command line option, and make
  2888. sure we flush stdout.
  2889. - Enable curses after the mining threads are set up so that failure messages
  2890. won't be lost in the curses interface.
  2891. - Disable curses after inputting a pool if we requested no curses interface.
  2892. - Add an option to break out after successfully mining a number of accepted
  2893. shares.
  2894. - Exit with a failed return code if we did not reach opt_shares.
  2895. - The cpu mining work data can get modified before we copy it if we submit it
  2896. async, and the sync submission is not truly sync anyway, so just submit it sync.
  2897. Version 1.6.0 - August 26, 2011
  2898. - Make restarting of GPUs optional for systems that hang on any attempt to
  2899. restart them. Fix DEAD status by comparing it to last live time rather than
  2900. last attempted restart time since that happens every minute.
  2901. - Move staged threads to hashes so we can sort them by time.
  2902. - Create a hash list of all the blocks created and search them to detect when a
  2903. new block has definitely appeared, using that information to detect stale work
  2904. and discard it.
  2905. - Update configure.ac for newer autoconf tools.
  2906. - Use the new hashes directly for counts instead of the fragile counters
  2907. currently in use.
  2908. - Update to latest sse2 code from cpuminer-ng.
  2909. - Allow LP to reset block detect and block detect lp flags to know who really
  2910. came first.
  2911. - Get start times just before mining begins to not have very slow rise in
  2912. average.
  2913. - Add message about needing one server.
  2914. - We can queue all the necessary work without hitting frequent stales now with
  2915. the time and string stale protection active all the time. This prevents a
  2916. pool being falsely labelled as not providing work fast enough.
  2917. - Include uthash.h in distro.
  2918. - Implement SSE2 32 bit assembly algorithm as well.
  2919. - Fail gracefully if unable to open the opencl files.
  2920. - Make cgminer look in the install directory for the .cl files making make
  2921. install work correctly.
  2922. - Allow a custom kernel path to be entered on the command line.
  2923. - Bump threshhold for lag up to maximum queued but no staged work.
  2924. - Remove fragile source patching for bitalign, vectors et. al and simply pass it
  2925. with the compiler options.
  2926. - Actually check the value returned for the x-roll-ntime extension to make sure
  2927. it isn't saying N.
  2928. - Prevent segfault on exit for when accessory threads don't exist.
  2929. - Disable curl debugging with opt protocol since it spews to stderr.
  2930. Version 1.5.8 - August 23, 2011
  2931. - Minimise how much more work can be given in cpu mining threads each interval.
  2932. - Make the fail-pause progressively longer each time it fails until the network
  2933. recovers.
  2934. - Only display the lagging message if we've requested the work earlier.
  2935. - Clean up the pool switching to not be dependent on whether the work can roll
  2936. or not by setting a lagging flag and then the idle flag.
  2937. - Only use one thread to determine if a GPU is sick or well, and make sure to
  2938. reset the sick restart attempt time.
  2939. - The worksize was unintentionally changed back to 4k by mistake, this caused a
  2940. slowdown.
  2941. Version 1.5.7 - August 22, 2011
  2942. - Fix a crash with --algo auto
  2943. - Test at appropriate target difficulty now.
  2944. - Add per-device statics log output with --per-device-stats
  2945. - Fix breakage that occurs when 1 or 4 vectors are chosen on new phatk.
  2946. - Make rolltime report debug level only now since we check it every work
  2947. item.
  2948. - Add the ability to enable/disable per-device stats on the fly and match
  2949. logging on/off.
  2950. - Explicitly tell the compiler to retain the program to minimise the chance of
  2951. the zero sized binary errors.
  2952. - Add one more instruction to avoid one branch point in the common path in the
  2953. cl return code. Although this adds more ALUs overall and more branch points, the
  2954. common path code has the same number of ALUs and one less jmp, jmps being more
  2955. expensive.
  2956. - Explicitly link in ws2_32 on the windows build and update README file on how
  2957. to compile successfully on windows.
  2958. - Release cl resources should the gpu mining thread abort.
  2959. - Attempt to restart a GPU once every minute while it's sick.
  2960. - Don't kill off the reinit thread if it fails to init a GPU but returns safely.
  2961. - Only declare a GPU dead if there's been no sign of activity from the reinit
  2962. thread for 10 mins.
  2963. - Never automatically disable any pools but just specify them as idle if they're
  2964. unresponsive at startup.
  2965. - Use any longpoll available, and don't disable it if switching to a server that
  2966. doesn't have it. This allows you to mine solo, yet use the longpoll from a pool
  2967. even if the pool is the backup server.
  2968. - Display which longpoll failed and don't free the ram for lp_url since it
  2969. belongs to the pool hdr path.
  2970. - Make the tcp setsockopts unique to linux in the hope it allows freebsd et. al
  2971. to compile.
  2972. Version 1.5.6 - August 17, 2011
  2973. - New phatk and poclbm kernels. Updated phatk to be in sync with latest 2.2
  2974. courtesy of phateus. Custom modified to work best with cgminer.
  2975. - Updated output buffer code to use a smaller buffer with the kernels.
  2976. - Clean up the longpoll management to ensure the right paths go to the right
  2977. pool and display whether we're connected to LP or not in the status line.
  2978. Version 1.5.5 - August 16, 2011
  2979. - Rework entirely the GPU restart code. Strike a balance between code that
  2980. re-initialises the GPU entirely so that soft hangs in the code are properly
  2981. managed, but if a GPU is completely hung, the thread restart code fails
  2982. gracefully, so that it does not take out any other code or devices. This will
  2983. allow cgminer to keep restarting GPUs that can be restarted, but continue
  2984. mining even if one or more GPUs hangs which would normally require a reboot.
  2985. - Add --submit-stale option which submits all shares, regardless of whether they
  2986. would normally be considered stale.
  2987. - Keep options in alphabetical order.
  2988. - Probe for slightly longer for when network conditions are lagging.
  2989. - Only display the CPU algo when we're CPU mining.
  2990. - As we have keepalives now, blaming network flakiness on timeouts appears to
  2991. have been wrong. Set a timeout for longpoll to 1 hour, and most other
  2992. network connectivity to 1 minute.
  2993. - Simplify output code and remove HW errors from CPU stats.
  2994. - Simplify code and tidy output.
  2995. - Only show cpu algo in summary if cpu mining.
  2996. - Log summary at the end as per any other output.
  2997. - Flush output.
  2998. - Add a linux-usb-cgminer guide courtesy of Kano.
  2999. Version 1.5.4 - August 14, 2011
  3000. - Add new option: --monitor <cmd> Option lets user specify a command <cmd> that
  3001. will get forked by cgminer on startup. cgminer's stderr output subsequently gets
  3002. piped directly to this command.
  3003. - Allocate work from one function to be able to initialise variables added
  3004. later.
  3005. - Add missing fflush(stdout) for --ndevs and conclusion summary.
  3006. - Preinitialise the devices only once on startup.
  3007. - Move the non cl_ variables into the cgpu info struct to allow creating a new
  3008. cl state on reinit, preserving known GPU variables.
  3009. - Create a new context from scratch in initCQ in case something was corrupted to
  3010. maximise our chance of succesfully creating a new worker thread. Hopefully this
  3011. makes thread restart on GPU failure more reliable, without hanging everything
  3012. in the case of a completely wedged GPU.
  3013. - Display last initialised time in gpu management info, to know if a GPU has
  3014. been re-initialised.
  3015. - When pinging a sick cpu, flush finish and then ping it in a separate thread in
  3016. the hope it recovers without needing a restart, but without blocking code
  3017. elsewhere.
  3018. - Only consider a pool lagging if we actually need the work and we have none
  3019. staged despite queue requests stacking up. This decreases significantly the
  3020. amount of work that leaks to the backup pools.
  3021. - The can_roll function fails inappropriately in stale_work.
  3022. - Only put the message that a pool is down if not pinging it every minute. This
  3023. prevents cgminer from saying pool down at 1 minute intervals unless in debug
  3024. mode.
  3025. - Free all work in one place allowing us to perform actions on it in the future.
  3026. - Remove the extra shift in the output code which was of dubious benefit. In
  3027. fact in cgminer's implementation, removing this caused a miniscule speedup.
  3028. - Test each work item to see if it can be rolled instead of per-pool and roll
  3029. whenever possible, adhering to the 60 second timeout. This makes the period
  3030. after a longpoll have smaller dips in throughput, as well as requiring less
  3031. getworks overall thus increasing efficiency.
  3032. - Stick to rolling only work from the current pool unless we're in load balance
  3033. mode or lagging to avoid aggressive rolling imitating load balancing.
  3034. - If a work item has had any mining done on it, don't consider it discarded
  3035. work.
  3036. Version 1.5.3 - July 30, 2011
  3037. - Significant work went into attempting to make the thread restart code robust
  3038. to identify sick threads, tag them SICK after 1 minute, then DEAD after 5
  3039. minutes of inactivity and try to restart them. Instead of re-initialising the
  3040. GPU completely, only a new cl context is created to avoid hanging the rest of
  3041. the GPUs should the dead GPU be hung irrevocably.
  3042. - Use correct application name in syslog.
  3043. - Get rid of extra line feeds.
  3044. - Use pkg-config to check for libcurl version
  3045. - Implement per-thread getwork count with proper accounting to not over-account
  3046. queued items when local work replaces it.
  3047. - Create a command queue from the program created from source which allows us
  3048. to flush the command queue in the hope it will not generate a zero sized binary
  3049. any more.
  3050. - Be more willing to get work from the backup pools if the work is simply being
  3051. queued faster than it is being retrieved.
  3052. Version 1.5.2 - July 28, 2011
  3053. - Restarting a hung GPU can hang the rest of the GPUs so just declare it dead
  3054. and provide the information in the status.
  3055. - The work length in the miner thread gets smaller but doesn't get bigger if
  3056. it's under 1 second. This could end up leading to CPU under-utilisation and
  3057. lower and lower hash rates. Fix it by increasing work length if it drops
  3058. under 1 second.
  3059. - Make the "quiet" mode still update the status and display errors, and add a
  3060. new --real-quiet option which disables all output and can be set once while
  3061. running.
  3062. - Update utility and efficiency figures when displaying them.
  3063. - Some Intel HD graphics support the opencl commands but return errors since
  3064. they don't support opencl. Don't fail with them, just provide a warning and
  3065. disable GPU mining.
  3066. - Add http:// if it's not explicitly set for URL entries.
  3067. - Log to the output file at any time with warnings and errors, instead of just
  3068. when verbose mode is on.
  3069. - Display the correct current hash as per blockexplorer, truncated to 16
  3070. characters, with just the time.
  3071. Version 1.5.1 - July 27, 2011
  3072. - Two redraws in a row cause a crash in old libncurses so just do one redraw
  3073. using the main window.
  3074. - Don't adjust hash_div only up for GPUs. Disable hash_div adjustment for GPUs.
  3075. - Only free the thread structures if the thread still exists.
  3076. - Update both windows separately, but not at the same time to prevent the double
  3077. refresh crash that old libncurses has. Do the window resize check only when
  3078. about to redraw the log window to minimise ncurses cpu usage.
  3079. - Abstract out the decay time function and use it to make hash_div a rolling
  3080. average so it doesn't change too abruptly and divide work in chunks large enough
  3081. to guarantee they won't overlap.
  3082. - Sanity check to prove locking.
  3083. - Don't take more than one lock at a time.
  3084. - Make threads report out when they're queueing a request and report if they've
  3085. failed.
  3086. - Make cpu mining work submission asynchronous as well.
  3087. - Properly detect stale work based on time from staging and discard instead of
  3088. handing on, but be more lax about how long work can be divided for up to the
  3089. scantime.
  3090. - Do away with queueing work separately at the start and let each thread grab
  3091. its own work as soon as it's ready.
  3092. - Don't put an extra work item in the queue as each new device thread will do so
  3093. itself.
  3094. - Make sure to decrease queued count if we discard the work.
  3095. - Attribute split work as local work generation.
  3096. - If work has been cloned it is already at the head of the list and when being
  3097. reinserted into the queue it should be placed back at the head of the list.
  3098. - Dividing work is like the work is never removed at all so treat it as such.
  3099. However the queued bool needs to be reset to ensure we *can* request more work
  3100. even if we didn't initially.
  3101. - Make the display options clearer.
  3102. - Add debugging output to tq_push calls.
  3103. - Add debugging output to all tq_pop calls.
  3104. Version 1.5.0 - July 26, 2011
  3105. - Increase efficiency of slow mining threads such as CPU miners dramatically. Do
  3106. this by detecting which threads cannot complete searching a work item within the
  3107. scantime and then divide up a work item into multiple smaller work items.
  3108. Detect the age of the work items and if they've been cloned before to prevent
  3109. doing the same work over. If the work is too old to be divided, then see if it
  3110. can be time rolled and do that to generate work. This dramatically decreases the
  3111. number of queued work items from a pool leading to higher overall efficiency
  3112. (but the same hashrate and share submission rate).
  3113. - Don't request work too early for CPUs as CPUs will scan for the full
  3114. opt_scantime anyway.
  3115. - Simplify gpu management enable/disable/restart code.
  3116. - Implement much more accurate rolling statistics per thread and per gpu and
  3117. improve accuracy of rolling displayed values.
  3118. - Make the rolling log-second average more accurate.
  3119. - Add a menu to manage GPUs on the fly allowing you to enable/disable GPUs or
  3120. try restarting them.
  3121. - Keep track of which GPUs are alive versus enabled.
  3122. - Start threads for devices that are even disabled, but don't allow them to
  3123. start working.
  3124. - The last pool is when we are low in total_pools, not active_pools.
  3125. - Make the thread restart do a pthread_join after disabling the device, only
  3126. re-enabling it if we succeed in restarting the thread. Do this from a separate
  3127. thread so as to not block any other code.This will allow cgminer to continue
  3128. even if one GPU hangs.
  3129. - Try to do every curses manipulation under the curses lock.
  3130. - Only use the sockoptfunction if the version of curl is recent enough.
  3131. Version 1.4.1 - July 24, 2011
  3132. - Do away with GET for dealing with longpoll forever. POST is the one that works
  3133. everywhere, not the other way around.
  3134. - Detect when the primary pool is lagging and start queueing requests on backup
  3135. pools if possible before needing to roll work.
  3136. - Load balancing puts more into the current pool if there are disabled pools.
  3137. Fix.
  3138. - Disable a GPU device should the thread fail to init.
  3139. - Out of order command queue may fail on osx. Try without if it fails.
  3140. - Fix possible dereference on blank inputs during input_pool.
  3141. - Defines missing would segfault on --help when no sse mining is built in.
  3142. - Revert "Free up resources/stale compilers." - didn't help.
  3143. - Only try to print the status of active devices or it would crash.
  3144. - Some hardware might benefit from the less OPS so there's no harm in leaving
  3145. kernel changes that do that apart from readability of the code.
  3146. Version 1.4.0 - July 23, 2011
  3147. - Feature upgrade: Add keyboard input during runtime to allow modification of
  3148. and viewing of numerous settings such as adding/removing pools, changing
  3149. multipool management strategy, switching pools, changing intensiy, verbosity,
  3150. etc. with a simple keypress menu system.
  3151. - Free up resources/stale compilers.
  3152. - Kernels are safely flushed in a way that allows out of order execution to
  3153. work.
  3154. - Sometimes the cl compiler generates zero sized binaries and only a reboot
  3155. seems to fix it.
  3156. - Don't try to stop/cancel threads that don't exist.
  3157. - Only set option to show devices and exit if built with opencl support.
  3158. - Enable curses earlier and exit with message in main for messages to not be
  3159. lost in curses windows.
  3160. - Make it possible to enter server credentials with curses input if none are
  3161. specified on the command line.
  3162. - Abstract out a curses input function and separate input pool function to allow
  3163. for live adding of pools later.
  3164. - Remove the nil arguments check to allow starting without parameters.
  3165. - Disable/enable echo & cbreak modes.
  3166. - Add a thread that takes keyboard input and allow for quit, silent, debug,
  3167. verbose, normal, rpc protocol debugging and clear screen options.
  3168. - Add pool option to input and display current pool status, pending code to
  3169. allow live changes.
  3170. - Add a bool for explicit enabling/disabling of pools.
  3171. - Make input pool capable of bringing up pools while running.
  3172. - Do one last check of the work before submitting it.
  3173. - Implement the ability to live add, enable, disable, and switch to pools.
  3174. - Only internally test for block changes when the work matches the current pool
  3175. to prevent interleaved block change timing on multipools.
  3176. - Display current pool management strategy to enable changing it on the fly.
  3177. - The longpoll blanking of the current_block data may not be happening before
  3178. the work is converted and appears to be a detected block change. Blank the
  3179. current block be
  3180. - Make --no-longpoll work again.
  3181. - Abstract out active pools count.
  3182. - Allow the pool strategy to be modified on the fly.
  3183. - Display pool information on the fly as well.
  3184. - Add a menu and separate out display options.
  3185. - Clean up the messy way the staging thread communicates with the longpoll
  3186. thread to determine who found the block first.
  3187. - Make the input windows update immediately instead of needing a refresh.
  3188. - Allow log interval to be set in the menu.
  3189. - Allow scan settings to be modified at runtime.
  3190. - Abstract out the longpoll start and explicitly restart it on pool change.
  3191. - Make it possible to enable/disable longpoll.
  3192. - Set priority correctly on multipools. Display priority and alive/dead
  3193. information in display_pools.
  3194. - Implement pool removal.
  3195. - Limit rolltime work generation to 10 iterations only.
  3196. - Decrease testing log to info level.
  3197. - Extra refresh not required.
  3198. - With huge variation in GPU performance, allow intensity to go from -10 to +10.
  3199. - Tell getwork how much of a work item we're likely to complete for future
  3200. splitting up of work.
  3201. - Remove the mandatory work requirement at startup by testing for invalid work
  3202. being passed which allows for work to be queued immediately. This also
  3203. removes the requirem
  3204. - Make sure intensity is carried over to thread count and is at least the
  3205. minimum necessary to work.
  3206. - Unlocking error on retry. Locking unnecessary anyway so remove it.
  3207. - Clear log window from consistent place. No need for locking since logging is
  3208. disabled during input.
  3209. - Cannot print the status of threads that don't exist so just queue enough work
  3210. for the number of mining threads to prevent crash with -Q N.
  3211. - Update phatk kernel to one with new parameters for slightly less overhead
  3212. again. Make the queue kernel parameters call a function pointer to select
  3213. phatk or poclbm.
  3214. - Make it possible to select the choice of kernel on the command line.
  3215. - Simplify the output part of the kernel. There's no demonstrable advantage from
  3216. more complexity.
  3217. - Merge pull request #18 from ycros/cgminer
  3218. - No need to make leaveok changes win32 only.
  3219. - Build support in for all SSE if possible and only set the default according to
  3220. machine capabilities.
  3221. - Win32 threading and longpoll keepalive fixes.
  3222. - Win32: Fix for mangled output on the terminal on exit.
  3223. Version 1.3.1 - July 20, 2011
  3224. - Feature upgrade; Multiple strategies for failover. Choose from default which
  3225. now falls back to a priority order from 1st to last, round robin which only
  3226. changes pools when one is idle, rotate which changes pools at user-defined
  3227. intervals, and load-balance which spreads the work evenly amongst all pools.
  3228. - Implement pool rotation strategy.
  3229. - Implement load balancing algorithm by rotating requests to each pool.
  3230. - Timeout on failed discarding of staged requests.
  3231. - Implement proper flagging of idle pools, test them with the watchdog thread,
  3232. and failover correctly.
  3233. - Move pool active test to own function.
  3234. - Allow multiple strategies to be set for multipool management.
  3235. - Track pool number.
  3236. - Don't waste the work items queued on testing the pools at startup.
  3237. - Reinstate the mining thread watchdog restart.
  3238. - Add a getpoll bool into the thread information and don't restart threads stuck
  3239. waiting on work.
  3240. - Rename the idlenet bool for the pool for later use.
  3241. - Allow the user/pass userpass urls to be input in any order.
  3242. - When json rpc errors occur they occur in spits and starts, so trying to limit
  3243. them with the comms error bool doesn't stop a flood of them appearing.
  3244. - Reset the queued count to allow more work to be queued for the new pool on
  3245. pool switch.
  3246. Version 1.3.0 - July 19, 2011
  3247. - Massive infrastructure update to support pool failover.
  3248. - Accept multiple parameters for url, user and pass and set up structures of
  3249. pool data accordingly.
  3250. - Probe each pool for what it supports.
  3251. - Implement per pool feature support according to rolltime support as
  3252. advertised by server.
  3253. - Do switching automatically based on a 300 second timeout of locally generated
  3254. work or 60 seconds of no response from a server that doesn't support rolltime.
  3255. - Implement longpoll server switching.
  3256. - Keep per-pool data and display accordingly.
  3257. - Make sure cgminer knows how long the pool has actually been out for before
  3258. deeming it a prolonged outage.
  3259. - Fix bug with ever increasing staged work in 1.2.8 that eventually caused
  3260. infinite rejects.
  3261. - Make warning about empty http requests not show by default since many
  3262. servers do this regularly.
  3263. Version 1.2.8 - July 18, 2011
  3264. - More OSX build fixes.
  3265. - Add an sse4 algorithm to CPU mining.
  3266. - Fix CPU mining with other algorithms not working.
  3267. - Rename the poclbm file to ensure a new binary is built since.
  3268. - We now are guaranteed to have one fresh work item after a block change and we
  3269. should only discard staged requests.
  3270. - Don't waste the work we retrieve from a longpoll.
  3271. - Provide a control lock around global bools to avoid racing on them.
  3272. - Iterating over 1026 nonces when confirming data from the GPU is old code
  3273. and unnecessary and can lead to repeats/stales.
  3274. - The poclbm kernel needs to be updated to work with the change to 4k sized
  3275. output buffers.
  3276. - longpoll seems to work either way with post or get but some servers prefer
  3277. get so change to httpget.
  3278. Version 1.2.7 - July 16, 2011
  3279. - Show last 8 characters of share submitted in log.
  3280. - Display URL connected to and user logged in as in status.
  3281. - Display current block and when it was started in the status line.
  3282. - Only pthread_join the mining threads if they exist as determined by
  3283. pthread_cancel and don't fail on pthread_cancel.
  3284. - Create a unique work queue for all getworks instead of binding it to thread 0
  3285. to avoid any conflict over thread 0's queue.
  3286. - Clean up the code to make it clear it's watchdog thread being messaged to
  3287. restart the threads.
  3288. - Check the current block description hasn't been blanked pending the real
  3289. new current block data.
  3290. - Re-enable signal handlers once the signal has been received to make it
  3291. possible to kill cgminer if it fails to shut down.
  3292. - Disable restarting of CPU mining threads pending further investigation.
  3293. - Update longpoll messages.
  3294. - Add new block data to status line.
  3295. - Fix opencl tests for osx.
  3296. - Only do local generation of work if the work item is not stale itself.
  3297. - Check for stale work within the mining threads and grab new work if
  3298. positive.
  3299. - Test for idle network conditions and prevent threads from being restarted
  3300. by the watchdog thread under those circumstances.
  3301. - Make sure that local work generation does not continue indefinitely by
  3302. stopping it after 10 minutes.
  3303. - Tweak the kernel to have a shorter path using a 4k buffer and a mask on the
  3304. nonce value instead of a compare and loop for a shorter code path.
  3305. - Allow queue of zero and make that default again now that we can track how
  3306. work is being queued versus staged. This can decrease reject rates.
  3307. - Queue precisely the number of mining threads as longpoll_staged after a
  3308. new block to not generate local work.
  3309. Version 1.2.6 - July 15, 2011
  3310. - Put a current system status line beneath the total work status line
  3311. - Fix a counting error that would prevent cgminer from correctly detecting
  3312. situations where getwork was failing - this would cause stalls sometimes
  3313. unrecoverably.
  3314. - Limit the maximum number of requests that can be put into the queue which
  3315. otherwise could get arbitrarily long during a network outage.
  3316. - Only count getworks that are real queue requests.
  3317. Version 1.2.5 - July 15, 2011
  3318. - Conflicting -n options corrected
  3319. - Setting an intensity with -I disables dynamic intensity setting
  3320. - Removed option to manually disable dynamic intensity
  3321. - Improve display output
  3322. - Implement signal handler and attempt to clean up properly on exit
  3323. - Only restart threads that are not stuck waiting on mandatory getworks
  3324. - Compatibility changes courtesy of Ycros to build on mingw32 and osx
  3325. - Explicitly grab first work item to prevent false positive hardware errors
  3326. due to working on uninitialised work structs
  3327. - Add option for non curses --text-only output
  3328. - Ensure we connect at least once successfully before continuing to retry to
  3329. connect in case url/login parameters were wrong
  3330. - Print an executive summary when cgminer is terminated
  3331. - Make sure to refresh the status window
  3332. Versions -> 1.2.4
  3333. - Con Kolivas - July 2011. New maintainership of code under cgminer name.
  3334. - Massive rewrite to incorporate GPU mining.
  3335. - Incorporate original oclminer c code.
  3336. - Rewrite gpu mining code to efficient work loops.
  3337. - Implement per-card detection and settings.
  3338. - Implement vector code.
  3339. - Implement bfi int patching.
  3340. - Import poclbm and phatk ocl kernels and use according to hardware type.
  3341. - Implement customised optimised versions of opencl kernels.
  3342. - Implement binary kernel generation and loading.
  3343. - Implement preemptive asynchronous threaded work gathering and pushing.
  3344. - Implement variable length extra work queues.
  3345. - Optimise workloads to be efficient miners instead of getting lots of extra
  3346. work.
  3347. - Implement total hash throughput counters, per-card accepted, rejected and
  3348. hw error count.
  3349. - Staging and watchdog threads to prevent fallover.
  3350. - Stale and reject share guarding.
  3351. - Autodetection of new blocks without longpoll.
  3352. - Dynamic setting of intensity to maintain desktop interactivity.
  3353. - Curses interface with generous statistics and information.
  3354. - Local generation of work (xroll ntime) when detecting poor network
  3355. connectivity.
  3356. Version 1.0.2
  3357. - Linux x86_64 optimisations - Con Kolivas
  3358. - Optimise for x86_64 by default by using sse2_64 algo
  3359. - Detects CPUs and sets number of threads accordingly
  3360. - Uses CPU affinity for each thread where appropriate
  3361. - Sets scheduling policy to lowest possible
  3362. - Minor performance tweaks
  3363. Version 1.0.1 - May 14, 2011
  3364. - OSX support
  3365. Version 1.0 - May 9, 2011
  3366. - jansson 2.0 compatibility
  3367. - correct off-by-one in date (month) display output
  3368. - fix platform detection
  3369. - improve yasm configure bits
  3370. - support full URL, in X-Long-Polling header
  3371. Version 0.8.1 - March 22, 2011
  3372. - Make --user, --pass actually work
  3373. - Add User-Agent HTTP header to requests, so that server operators may
  3374. more easily identify the miner client.
  3375. - Fix minor bug in example JSON config file
  3376. Version 0.8 - March 21, 2011
  3377. - Support long polling: http://deepbit.net/longpolling.php
  3378. - Adjust max workload based on scantime (default 5 seconds,
  3379. or 60 seconds for longpoll)
  3380. - Standardize program output, and support syslog on Unix platforms
  3381. - Suport --user/--pass options (and "user" and "pass" in config file),
  3382. as an alternative to the current --userpass
  3383. Version 0.7.2 - March 14, 2011
  3384. - Add port of ufasoft's sse2 assembly implementation (Linux only)
  3385. This is a substantial speed improvement on Intel CPUs.
  3386. - Move all JSON-RPC I/O to separate thread. This reduces the
  3387. number of HTTP connections from one-per-thread to one, reducing resource
  3388. usage on upstream bitcoind / pool server.
  3389. Version 0.7.1 - March 2, 2011
  3390. - Add support for JSON-format configuration file. See example
  3391. file example-cfg.json. Any long argument on the command line
  3392. may be stored in the config file.
  3393. - Timestamp each solution found
  3394. - Improve sha256_4way performance. NOTE: This optimization makes
  3395. the 'hash' debug-print output for sha256_way incorrect.
  3396. - Use __builtin_expect() intrinsic as compiler micro-optimization
  3397. - Build on Intel compiler
  3398. - HTTP library now follows HTTP redirects
  3399. Version 0.7 - February 12, 2011
  3400. - Re-use CURL object, thereby reuseing DNS cache and HTTP connections
  3401. - Use bswap_32, if compiler intrinsic is not available
  3402. - Disable full target validation (as opposed to simply H==0) for now
  3403. Version 0.6.1 - February 4, 2011
  3404. - Fully validate "hash < target", rather than simply stopping our scan
  3405. if the high 32 bits are 00000000.
  3406. - Add --retry-pause, to set length of pause time between failure retries
  3407. - Display proof-of-work hash and target, if -D (debug mode) enabled
  3408. - Fix max-nonce auto-adjustment to actually work. This means if your
  3409. scan takes longer than 5 seconds (--scantime), the miner will slowly
  3410. reduce the number of hashes you work on, before fetching a new work unit.
  3411. Version 0.6 - January 29, 2011
  3412. - Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
  3413. - BeeCee1's sha256 4way optimizations
  3414. - lfm's byte swap optimization (improves via, cryptopp)
  3415. - Fix non-working short options -q, -r
  3416. Version 0.5 - December 28, 2010
  3417. - Exit program, when all threads have exited
  3418. - Improve JSON-RPC failure diagnostics and resilience
  3419. - Add --quiet option, to disable hashmeter output.
  3420. Version 0.3.3 - December 27, 2010
  3421. - Critical fix for sha256_cryptopp 'cryptopp_asm' algo
  3422. Version 0.3.2 - December 23, 2010
  3423. - Critical fix for sha256_via
  3424. Version 0.3.1 - December 19, 2010
  3425. - Critical fix for sha256_via
  3426. - Retry JSON-RPC failures (see --retry, under "minerd --help" output)
  3427. Version 0.3 - December 18, 2010
  3428. - Add crypto++ 32bit assembly implementation
  3429. - show version upon 'minerd --help'
  3430. - work around gcc 4.5.x bug that killed 4way performance
  3431. Version 0.2.2 - December 6, 2010
  3432. - VIA padlock implementation works now
  3433. - Minor build and runtime fixes
  3434. Version 0.2.1 - November 29, 2010
  3435. - avoid buffer overflow when submitting solutions
  3436. - add Crypto++ sha256 implementation (C only, ASM elided for now)
  3437. - minor internal optimizations and cleanups
  3438. Version 0.2 - November 27, 2010
  3439. - Add script for building a Windows installer
  3440. - improve hash performance (hashmeter) statistics
  3441. - add tcatm 4way sha256 implementation
  3442. - Add experimental VIA Padlock sha256 implementation
  3443. Version 0.1.2 - November 26, 2010
  3444. - many small cleanups and micro-optimizations
  3445. - build win32 exe using mingw
  3446. - RPC URL, username/password become command line arguments
  3447. - remove unused OpenSSL dependency
  3448. Version 0.1.1 - November 24, 2010
  3449. - Do not build sha256_generic module separately from cpuminer.
  3450. Version 0.1 - November 24, 2010
  3451. - Initial release.