NEWS 203 KB

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