NEWS 193 KB

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