NEWS 279 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624
  1. BFGMiner Version 3.2.4 - November 6, 2013
  2. - Bugfix: test_work_current: Make hexstr buffer large enough for blkhashstr
  3. later on (issuing old work msg)
  4. - Bugfix: SGW: Add missing include stdbool.h
  5. - Bugfix: scrypt: Add missing include stdbool.h
  6. - Bugfix: Explicitly cast uses of be32toh to uint32_t
  7. - Bugfix: Add missing includes of config.h, stdbool.h, and stdint.h
  8. - Bugfix: FTDI autodetect: Add missing parameter values and remove unused buffer
  9. BFGMiner Version 3.2.3 - October 26, 2013
  10. - Bugfix: Set status to LIFE_DEAD2 when killing threads at shut off, to avoid
  11. calling driver code
  12. - miner.php mcast ignore duplicate replies
  13. - Bugfix: Add SGW driver to --help list
  14. - Bugfix: Zero stats: cgpu->diff_stale
  15. - fpgautils: serial_close: Explicitly release advisory lock before closing, in
  16. case fd has been inherited by a process forked by system()
  17. - Use serial_close to pair with every serial_open
  18. - Workaround bug in Plibc by resetting locale to "C" at startup
  19. - Bugfix: DevAPI: Reduce race-collision delay to 1ms so thread_shutdown actually
  20. gets called before threads are killed forcefully
  21. - Bugfix: configure: Use AC_SYS_LARGEFILE to ensure nonce/share log files can
  22. safely grow bigger than 2 GB
  23. - Bugfix: Correct argument type for --submit-threads option
  24. - Bugfix: write_config: Make intensity list writing more readable, and avoid
  25. extraneous argument in dynamic intensity case
  26. - DevAPI: Trigger mt_disable_start after init, if a device is disabled before
  27. minerloop starts
  28. - icarus: Skip sending new work if entering DEV_RECOVER* modes
  29. - icarus: When disabling, close device fd and stop sending new work
  30. BFGMiner Version 3.2.2 - October 11, 2013
  31. - RPC: Add missing SGW driver to Device Code
  32. - RPC: Always build pga* and proc* methods
  33. - Bugfix: icarus: Check for valid fd before all usage
  34. - Bugfix: Stratum initiate: Clear json var after freeing it, to avoid a
  35. potential double-free if retry fails before new JSON is parsed
  36. - Bugfix: Correct --log-file error message
  37. - SGW: Initialise user variable to NULL to avoid potential mis-free on error
  38. conditions
  39. - Bugfix: configure: Disable httpsrv if not available
  40. - README: Mention free GPU mining dependencies
  41. - json_rpc_call_completed: Silence incorrect type cast warning
  42. - icarus: Silence warning about (never really) uninitalised variable use in
  43. icarus_scanhash
  44. - fpgautils: Check for fgets error
  45. - Silence warning about (never really) uninitalised variable use in
  46. multi_format_unit
  47. - ft232r: Silence warning about (never really) uninitalised variable use
  48. - Silence unused result warnings for notifier_{read,wake}
  49. - Log a warning if --cmd-* returns a non-zero exit code
  50. - Stratum: Clear unused extranonce2 space
  51. - Don't even show 'Attempting to restart' for devices that don't support it
  52. - Workaround bug in PDCurses wresize
  53. - Bugfix: Include config.h in sha2.c first
  54. - Bugfix: Stratum: Dereference pool swork coinbase buffer inside data lock
  55. - Bugfix: miner.php: Check $dototal[$name] is set before comparing its value
  56. - Bugfix: RPC: Use bad_nonces in Hardware% instead of generic hw_errors
  57. - Bugfix: RPC: Handle LIFE_DEAD2 case
  58. - Bugfix: Correct timestamp in sharelog
  59. - Bugfix: Repurpose "diff1" numbers to refer to only good nonces
  60. - OpenWrt: Support for building with libmicrohttpd support
  61. - Remove autogen.sh from source distributions since it only works with git
  62. working trees
  63. - Bugfix: Target FD_SETSIZE for fd soft limit (to avoid buffer overflows),
  64. rather than raising it as high as possible
  65. - Bugfix: Stratum: Avoid FD_SETting INVSOCK
  66. - Bugfix: dynclock: Never try to clock below 1x
  67. BFGMiner Version 3.2.1 - September 19, 2013
  68. - Only show long-poll message in pool summary if it's not using stratum.
  69. - README.ASIC: Clarify syntax of --scan-serial usage for USB Erupters
  70. - Bugfix: RPC: Defer allocation of apisock until after we check for --api-listen
  71. - make-release: Only try to include libmicrohttpd if bfgminer.exe depends on it
  72. - Bugfix: make-release: Include libplibc-1.dll if available
  73. - SGW: For Windows builds, include winsock2.h instead of POSIX networking
  74. headers
  75. - configure: Display getwork proxy server support in summary
  76. - Bugfix: SGW: Pass actual cgpu_info to prune_worklog_thread instead of silently
  77. casting one from getwork_client
  78. - Bugfix: Get total_staged with lock for TS stat, before getting console lock
  79. - Bugfix: bitforce: Correct fanmode RPC help
  80. - bitforce: Hide fan control when disabled in firmware
  81. - Bugfix: bitforce: Correct fanspeed TUI setting
  82. - Bugfix: logging: Allow up to 4 KB for log lines
  83. - Bugfix: icarus: Ensure last2_work exists before trying to check nonces fit it
  84. - README.OpenWrt: Include serialusb drivers
  85. - README: Include OpenWrt serialusb driver package names
  86. - Bugfix: Initialise notifier (as invalid) for no-thread devices (SGW)
  87. - Bugfix: Free temporary kernel path copy when writing config file
  88. - Bugfix: Put kernel path on the (main) stack after initialisation from
  89. commandline/config, to avoid appending an argv or jansson string
  90. - Bugfix: Always allow startup with curses enabled (since the user can use
  91. Manage devices to add new ones, and display Ctrl-C for text-only quit help
  92. - Bugfix: Ignore/reject libmicrohttpd before 0.9.5, which introduced symbols we
  93. need
  94. - README: Elaborate on format of BW
  95. - Bugfix: Try to initialise libusb later, so any mutexes applog might need are
  96. initialised
  97. - Bugfix: Implicitly initialise timer_set_now when it is first called
  98. - util: Eliminate unsafe const-removing casts
  99. - configure: Cleanup CFLAGS/LDFLAGS display
  100. - Show RT_LIBS in ./configure output.
  101. BFGMiner Version 3.2.0 - August 29, 2013
  102. - cpu: sse2_64: Rename sha256_init to sha256_init_sse2 to avoid conflict with
  103. new sha2.c
  104. - httpsrv: Some older versions of libmicrohttpd need stdint.h included first
  105. - make-release: Include libmicrohttpd-10.dll if it exists
  106. - Fixes column alignment in decimal fields. Workaround for printf rounding up
  107. when formatting decimals into limited width.
  108. - New hidden --unittest option. No longer runs unit tests at startup by default,
  109. for faster startup. Added unit test for width printing of decimal numbers.
  110. - Bugfix: configure: More fixing BSD sed syntax for curses header search
  111. - Bugfix: configure: More fixing BSD sed syntax for libusb header search
  112. - README: Update solo mining docs
  113. - erupter: Continue searching a job until the end, even if an earlier result is
  114. found
  115. - icarus: Do hwerror-triggered reopen before sending the next job the first
  116. time, to avoid having to resend it later
  117. - icarus: Avoid sending a new job if the nonce found was for one before the
  118. current job anyway
  119. - icarus: Double-buffer work to solve nonces found before work change takes
  120. effect
  121. - icarus: Abstract nonce processing
  122. - Bugfix: icarus: Avoid trying to submit 0 on comms error
  123. - icarus: Skip unnecessary nonce memcpy
  124. - icarus: Make state->last_work a pointer and store it on the heap
  125. - miner.php fix missing global
  126. - Bugfix: erupter: After identify, skip starting work if next scanhash is
  127. already decided to be a "first run" (eg, device errors)
  128. - Bugfix: erupter: Fix identify following hw error
  129. - Bugfix: icarus: Don't try to send work if device open failed
  130. - Debug log when zeroing stats
  131. - Upgrade libblkmaker to 0.3.2
  132. - Bugfix: GBT: Advertise coinbasevalue capability
  133. - Bugfix: Always compile add_serial now that it's somewhat generic
  134. - icarus: Avoid sending a new job if the nonce found was for one before the
  135. current job anyway
  136. - icarus: Double-buffer work to solve nonces found before work change takes
  137. effect
  138. - icarus: Abstract nonce processing
  139. - Bugfix: icarus: Avoid trying to submit 0 on comms error
  140. - icarus: Skip unnecessary nonce memcpy
  141. - icarus: Make state->last_work a pointer and store it on the heap
  142. - README.RPC: Remove usbstats mention
  143. - README: Add FAQ regarding cgminer messing up drivers
  144. - README.RPC: Fix miner name
  145. - README.RPC: Correct to mention other supported devices for pgaidentify
  146. - api.c fix mcast debug message bug
  147. - README.RPC: break all lines at most 80 characters
  148. - Update the API Multicast documentation
  149. - miner.php implement API Multicast handling to automatically find your local
  150. net miners
  151. - Bugfix: RPC: Fix log format types in io_flush
  152. - Set RT_LIBS correctly from autoconf detection
  153. - Explicitly check for clock_nanosleep and only use it when available
  154. - Further integrate cgsleep API into BFGMiner's timer system, so clock_nanosleep
  155. is only used on platforms with CLOCK_MONOTONIC
  156. - Convert cgtimer_t to struct timeval
  157. - Bugfix: Fix BSD sed syntax for curses header search
  158. - Bugfix: configure: Really fix BSD sed syntax for libusb header search
  159. - README.RPC: Mention multicast detection
  160. - README: Include --mcast-* options in usage
  161. - Use ccan's standard char* set/show functions for --api-mcast-{addr,code}
  162. - Bugfix: RPC: Use the same mcast code in reply, and log it correctly
  163. - API mcast only reply to remote IP's that are allowed access
  164. - Initial API Multicast response v0.1 to find cgminer APIs
  165. - Check for cnx_needed on each loop through wait_lp_current.
  166. - Return positive for cnx_needed when no_work is true.
  167. - Add no_work bool to set when we are in an underrun situation
  168. - Reorder support names alphabetically.
  169. - We don't want to continue into the hash_pop function if the getq is frozen.
  170. - Carve out the unused portions of sha2 implementation.
  171. - Import Aaron D. Gifford's fast sha256 implementation.
  172. - Use cloned work when finding avalon results since another thread can discard
  173. the work item while it's in use.
  174. - Provide a variant of find_work_bymidstate that returns a clone of the found
  175. work.
  176. - Use timespecs on windows as cgtimer_t to capitalise on the higher resolution
  177. clock changes.
  178. - Abstract out the conversion of system time to an lldiv_t in decimicroseconds.
  179. - Use our own gettimeofday implementation on windows for it to be consistent
  180. across ming builds and higher resolution.
  181. - Provide cgtimer_sub helper functions.
  182. - Provide cgtimer_to_ms helper functions.
  183. - Rename cgsleep_prepare_r as cgtimer_time to get time in cgtimer_t format and
  184. call cgsleep_prepare_r as a macro for cgtimer_time
  185. - TimeBeginPeriod and TimeEndPeriod do not add significant overhead when run the
  186. entire time for cgminer so avoid trying to maintain balanced numbers of them for
  187. specific time calls to simplify code.
  188. - Replace all references to the old n*sleep functions with the equivalent
  189. cgsleep_*s replacements.
  190. - timeGetTime uses huge resources on windows so revert to using timevals for its
  191. implementation of cgtimer_t
  192. - Quotient/remainder error in ms division.
  193. - Provide cgtimer_to_timeval helper functions.
  194. - Provide a timeval_to_cgtime helper function to reuse values.
  195. - Simplify cgsleep code for windows by using a typedef for cgtimer_t that
  196. resolves to clock resolution, using that internally.
  197. - On windows use the higher accuracy timegettime function to really get 1ms
  198. clock and timer accuracy.
  199. - Fix missed endtimeperiod in overrun timer on windows.
  200. - Make cgsleep_us_r take an int64_t for us.
  201. - Make the cgsleep functions build on windows.
  202. - Set high resolution timing on windows within the cgsleep functions.
  203. - Provide reentrant versions of cgsleep functions to allow start time to be set
  204. separately from the beginning of the actual sleep, allowing scheduling delays to
  205. be counted in the sleep.
  206. - Make the nmsleep and nusleep functions use the new cgsleep functions internally
  207. till functions are migrated to the new cgsleep API.
  208. - Add a ms_to_timespec helper function, and create a cgsleep_ms function that
  209. uses absolute timers with clock_nanosleep to avoid overruns.
  210. - Add rt lib linkage to enable use of clock_nanosleep functions with older
  211. glibc.
  212. - Add a timeraddspec helper function.
  213. - Provide a us_to_timespec helper function.
  214. - Provide a us_to_timeval helper function.
  215. - Add helper functions to convert timespec to timeval and vice versa.
  216. - Bugfix: SGW: Discard work from log only by expiry, so post-startup hardware
  217. errors are truly only hardware errors
  218. - bitforce: Make voltages available to RPC
  219. - bitforce: Save voltages as array of longs internally
  220. - Bugfix: Clear device bad nonces when zeroing stats
  221. - cpu & opencl: Defer RUNONCE to actual autodetection, so they can be added once
  222. after startup
  223. - Bugfix: Avoid crash activating [M]anage devices with no currently defined
  224. devices
  225. - TUI: Support for adding new devices using the plus key from [M]anage devices
  226. - Bugfix: Use add_serial function for scan_serial, so that "all" keyword works
  227. correctly
  228. - SGW: Add support for new X-Hashes-Done header to allow devices to more
  229. accurately report their work
  230. - SGW: Add X-Mining-Identifier header to inform devices what they are
  231. represented by in BFGMiner
  232. - SGW: Use JSON for 401 response; add Server HTTP header
  233. - AUTHORS: Add contributor Josh Lehan
  234. - Changed comparison constants to allow for floating-point rounding
  235. - Install README.ASIC for Block Erupter related drivers as well as Avalon
  236. - make-release: Windows users don't need README.Debian
  237. - README.OpenWrt: Import from BFGMiner downloads
  238. - Silence Windows warning about send data signedness
  239. - Fix block info
  240. - API/miner.php add some % fields
  241. - Don't yield on grabbing the read lock variant of cglocks.
  242. - util.c expand quit to show file/func/line
  243. - We should be using a cg_wlock initially in generating stratum work before
  244. downgrading the lock.
  245. - Add the ability to downgrade a write variant of the cglocks.
  246. - Yield after releasing a lock in case we are on a device with limited CPU
  247. resources.
  248. - Fix --scrypt being required before scrypt intensities on command line or not
  249. working at all via config files.
  250. - Limit intensity range according to whether scrypt is in use or not.
  251. - Do not allow benchmark mode to be used with scrypt.
  252. - miner.php format Best Share
  253. - README.ASIC block erupter USB brief
  254. - Check for negative wait time in socket_full.
  255. - Adjust socket wait timeout in recv_line according to how long we've already
  256. waited to avoid a 60 second wait dropping to 1 second due to a blocked socket.
  257. - force type checking on curses
  258. - logging - size check sprintf
  259. - Only use length-counted variants of format_unit and percentf
  260. - Implement snprintf-like versions of format_unit and percentf
  261. - miner - size check all sprintf
  262. - size check get_datestamp/get_timestamp and remove unused cgpu->init
  263. - make all statline overflow safe
  264. - Convert the decay_time function into one that truly creates an exponentially
  265. decaying average over opt_log_interval.
  266. - GPU fan rpm display 9999 when it overflows
  267. - Change mode on python file.
  268. - Only update hashmeter if we have done hashes or haven't updated longer than
  269. the log interval, fixing a us/ms error.
  270. - README.ASIC: Document usage with Block Erupter Blades
  271. - README: Add mention of libmicrohttpd to dependencies
  272. - SGW: Include hash1 in work
  273. - SGW: Include application/json Content-Type header
  274. - Fix build without libmicrohttpd
  275. - Allow startup to proceed with no devices, as long as RPC or HTTP are listening
  276. - SGW: Refuse to issue new work to disabled devices
  277. - SGW: Respond with stale rejection if share is known to be immediately stale
  278. - Expose HTTP getwork username in Manage TUI and devdetails RPC
  279. - Add --cmd-idle notification command for REST/WAIT conditions
  280. - bfgminer-rpc: Accept unlimited size replies
  281. - api-example.py: Accept unlimited size replies
  282. - RPC: Rewrite io_data to cleanly handle unlimited sized responses
  283. - Configure options to build --without-libmicrohttpd support
  284. - RPC: setconfig can now change http-port (enabling or disabling the http
  285. service included)
  286. - Embedded HTTP server to handle getwork-based mining devices
  287. - inc_hw_errors2 function can handle a bad nonce without a known work
  288. - Split up scan_serial function to enable internally adding ad-hoc cgpu
  289. - Helper functions bfg_json_obj_string and share __json_array_string
  290. - bytes_t: Add bytes_shift and bytes_nullterminate
  291. - Fix configure help for --without-sensors
  292. - README: Document --with-system-libblkmaker
  293. - Bugfix: Use BSD-friendly sed syntax for libusb header search
  294. - Bugfix: Handle bitstreams properly
  295. - Bugfix: Skip search for addwstr since it breaks --with-curses=preference
  296. - Bugfix: configure: Find correct curses include path without *-config
  297. - README.FPGA: Further clarify ZTEX setup
  298. - Display a friendly error directing to README.FPGA when bitstream cannot be
  299. loaded
  300. - Remove bitstreams from BFGMiner distribution entirely, and include pointers
  301. where to find them in README.FPGA
  302. - ztex: Use load_bitstream_bytes for .bin files
  303. - fpgautils: load_bitstream_bytes support for Intel HEX format (.ihx) files
  304. - Add missing 16-bit byteswap macros
  305. - fpgautils: load_bitstream_bytes function to load a bitstream into a bytes_t
  306. - bytes_t functions: bytes_init, bytes_append, bytes_reset
  307. - Look for bitstreams in /usr/share/bitstreams
  308. - Disable Unicode support by default (use --unicode to enable)
  309. - make-release: Skip stripping debug info from Windows EXEs, for now
  310. - Bugfix: Ensure work variable is assigned before checking its thr_id
  311. - Bugfix: notifier_init (Windows): setsockopt needs an int for SO_REUSEADDR
  312. - Bugfix: Avoid turning totals red just because a processor is idle
  313. - Enable notifications for sick/dead with --cmd-sick and --cmd-dead options that
  314. execute commands when the event occurs
  315. - RPC: Add cpu enable/disable/restart
  316. - windows-build: Update to use libpdcursesw.dll
  317. - Ensure socket error messages are used for socket errors on Windows
  318. - fpgautils: Attempt to use Linux advisory locks on serial devices
  319. - Bugfix: README: --temp-cutoff sets the maximum temperature before cutoff, not
  320. temperature that triggers cutoff
  321. - Bugfix: Avoid incrementing dev_thermal_cutoff_count when just updating
  322. timestamp on status
  323. - Detect curses support for wide characters during configure
  324. - configure: Check for more variants of curses library names
  325. - Bugfix: ztex: Avoid trying to format non-libusb error with libusb error name
  326. - Bugfix: Avoid trying to assign const use_unicode variable with --no-unicode
  327. option
  328. - Remove long-unused opt_time variable
  329. - RPC: Avoid exposing Coinbase-Sig when it isn't supported
  330. - Bugfix: Fix build with libblkmaker < 0.2
  331. - Attempt stratum mining.suggest_target before mining.subscribe, if
  332. --request-diff is used
  333. - Retry stratum if initiation fails for any reason after we have sent something
  334. (assuming there is more older variants we can try)
  335. - Bugfix: Restore delay for authorization on stratum mining.get_transactions
  336. - Bugfix: Fix TUI-only build
  337. - bitforce: Extend pgaset _cmd to variable-length commands
  338. - Bugfix: Use red for total processor count
  339. - bitforce: Undocumented _cmd1 pgaset for experimenting with firmware
  340. - Bugfix: curses: use_default_colors() when possible
  341. - Bugfix: Calculate scrolling range with new cursor lines
  342. - Bugfix: Ensure use_unicode and have_unicode_degrees constants are defined for
  343. curses-less builds
  344. - Bugfix: Replace block_timeval with (time_t) block_time
  345. - README: Update for --no-unicode option
  346. BFGMiner Version 3.1.4 - August 2, 2013
  347. - Windows: Rebuild pdcurses with UTF-8 and wide character support
  348. - Bugfix: Avoid using wide curses symbols/macros when USE_UNICODE is not defined
  349. - Unicode: Use line drawing in TUI Help
  350. - Use bfg_waddstr even with Unicode disabled, since it's needed for red
  351. highlight
  352. - Colour bad conditions in red
  353. - Unicode: Cross-tee intersecting lines
  354. - Unicode: Use WACS_VLINE for vertical lines
  355. - Unicode: If degrees symbol is available, add it to temperatures
  356. - Unicode: bfg_waddstr wrapper to handle non-ASCII characters, currently used
  357. only by logging and statlines
  358. - Unicode: Use WACS_HLINE for horizontal lines
  359. - Add framework for using Unicode in TUI (can be disabled with --no-unicode)
  360. - Avoid using potentially locale-dependent ctype functions in locale-independent
  361. contexts
  362. - Refactor temperature in TUI statlines to share code nicer
  363. - Bugfix: avalon: Fix applog formatting
  364. - Bugfix: Align totals columns in per-processor view
  365. - Bugfix: Fix curses-less build
  366. - configure: Workaround buggy autoconf versions
  367. - Bugfix: erupter: Include headers in order necessary for Windows
  368. - Bugfix: Reimplement get_intrange using strtol instead of sscanf (which is
  369. broken on Windows)
  370. - Bugfix: get_intrange: Check for extra garbage at the end, only after we know
  371. we have an end-position
  372. - Bugfix: Fix Enter key in TUI on Windows
  373. - erupter: Split identify-handling logic into handle_identify function
  374. - Bugfix: erupter: Ensure identify is handled during no-once or firstrun
  375. - erupter: After identify, check if a work restart is needed immediately
  376. - erupter: Implement identify function by pausing hashing for 3 seconds
  377. - Bugfix: icarus: Remember firstrun state in case it gets changed for the next
  378. run
  379. - icarus: Move actual dynclock updates to icarus_job_start
  380. - icarus: Split out icarus_job_prepare, and rename icarus_job_start
  381. - Bugfix: ZeroStats: Reset column widths to 1
  382. - miner.php: Include max temperature in device totals line
  383. - Bugfix: Stratum Fix debug logging of initial mining.subscribe command
  384. - Bugfix: Call pool_set_opaque from work_decode, so block content hiding/
  385. providing messages work for getwork/GBT
  386. - Split block contents hiding/providing notices out from stratum code
  387. - Add test suite for get_intrange
  388. - Bugfix: Check for error conditions in get_intrange to not have weird --device
  389. behaviour when bad values are provided
  390. - Bugfix: erupter: Take advantage of detectone_meta_info to handle Emerald
  391. autodetection
  392. - TUI Help describing the various status fields (contributed by midnightmagic)
  393. - Bugfix: ManageTUI: Allow 'I' key to be used by devices not supporting identify
  394. - Bugfix: Prefer Sapphire over Emerald for -S erupter:*
  395. - Bugfix: Clear total_bad_nonces when zeroing statistics
  396. - Bugfix: modminer: Since we are not searching iManuf string for needles, only
  397. look for "ModMiner"
  398. - Bugfix: sysfs autodetect: Recurse into tty/ subdirectory (necessary for
  399. CDC/ACM ttys)
  400. - sysfs autodetect: Split tty* directory search into new _sysfs_find_tty
  401. function
  402. - modminer: Reduce default clock to 190 MHz
  403. - README: Update driver info to include Erupter driver
  404. - README: FAQ about scrypt and difficulty
  405. - Include count of working devices/processors in totals statline
  406. - Format totals statline the same way as individual device/processor statlines
  407. - Rearrange TUI a bit, including menu at the top (+1 log line) and hashrate
  408. total closer to device summaries
  409. - Bugfix: setup_stratum_curl: Need to release stratum lock on connection failure
  410. too
  411. - Bugfix: Avoid unnecessary locks inside curses_print_status, which is called
  412. with the console lock held
  413. - Bugfix: setup_stratum_curl: Hold stratum lock until connection completes, to
  414. avoid potential races
  415. - Bugfix: stratum_works: If stratum is already active, it works (avoid trying to
  416. initialise it again)
  417. - Replace hashrate_to_bufstr/ti_hashrate_bufstr with format_unit/
  418. multi_format_unit_array
  419. - New multi_format_unit_array to fill multiple buffers instead of building a
  420. delimited string
  421. - multi_format_unit: Skip recounting length of fixed-length strings
  422. - Shrink status line to fit in 80 columns
  423. - Add network bandwidth rate to TUI
  424. - New multi_format_unit variadic macro to handle formatting multiple numbers at
  425. once
  426. - format_unit: Option to choose 3-digit integer display vs 5-character floating-
  427. point display
  428. - Optimization: format_unit: Handle number first, to avoid having to restore
  429. suffix later
  430. - Generalise hashrate_pick_unit/hashrate_to_bufstr into pick_unit/format_unit
  431. - Extend hashrate_pick_unit/hashrate_to_bufstr to handle sub-kilo units
  432. - Split total_bytes_xfer to total_bytes_rcvd and total_bytes_sent
  433. - Bugfix: _decode_udev_enc_dup: Allocate enough space for full string
  434. - Bugfix: Never use waddstr for logwin, since it would bypass special newline
  435. handling
  436. - Bugfix: bitforce: Set kname on chip processors
  437. - bitforce: Include voltages in Manage device TUI
  438. - Defer newlines going to curses logwin, to avoid a useless blank line at the
  439. bottom of the window
  440. - Ensure printing to logwin always goes through _wlog
  441. - Remove blank line above log window
  442. - bitforce: Identify parallel queue protocol distinctly from mere bulk queue
  443. - ManageTUI: Include kernel name, when available
  444. - Stratum: Roll ntime as we generate work
  445. - Stratum: Make swork.ntime native-endian
  446. - Stratum: Treat ntime as uint32_t (as it should be), still always big endian
  447. - Debuglog ManageTUI actions/responses
  448. - ManageTUI: Add generic Identify support
  449. - Bugfix: Move serial_detect* and open_bitstream to DevAPI code so CPU/OpenCL
  450. can build properly without fpgautils
  451. - Short-circuit logging sooner in quiet mode
  452. - Write to both stderr and console within same console lock "session"
  453. - Bugfix: Also hold the console lock when writing to stderr
  454. - Use common console locking function for stdout in logging.c
  455. - Move console lock and unlock functions (which also handle thread cancelstate)
  456. to miner.h
  457. - Bugfix: bitforce: Only try to clear queues of SC devices, since FPGA MR boards
  458. interpret ZQX/ZOX differently
  459. - Timer-based gettimeofday substitute for systems with poor time-of-day clocks
  460. (Windows)
  461. - Use clock_gettime(CLOCK_MONOTONIC) for timers when available
  462. - Use QueryPerformanceCounter for timers on Windows
  463. - Generic refactoring for timer_set_now
  464. - Replace all remaining uses of gettimeofday for timers, with timer_set_now (aka
  465. cgtime)
  466. - Don't mix timers with timestamps (visual only)
  467. - Always use struct timeval for timers, and don't mix timers with timestamps
  468. (functional only)
  469. - get_datestamp: Change timeval parameter to time_t, and implement
  470. get_now_datestamp for common "current time" use case
  471. - Use get_datestamp for (non-microsecond) log timestamps
  472. - Bugfix: ztex: Allocate final processor names on the heap, so they survive when
  473. the stack for ztex_prepare is gone
  474. - Bugfix: ztex: Copy serial number to device "name" before cloning it for other
  475. processors
  476. - Bugfix: x6500: Use cgpu->temp directly since there is only one sensor per
  477. processor
  478. - Bugfix: Actually show the highest temperature, not just calculate it
  479. - x6500: Allow changing clock speed from TUI Manage device
  480. - x6500: Port pgaset clock from modminer driver at
  481. 66d2a3ab072fcdbc3c7ed41a97f265afa917bbee
  482. - modminer: Allow changing clock speed from TUI Manage device
  483. - bitforce: Flush job and result queues at startup to avoid unnecessary warnings
  484. - x6500: Reduce default clock to 190 MHz
  485. - Bugfix: fpgautils: Close libusb handle after copying USB strings
  486. - use BSD sed syntax to generate iospeed_local.h
  487. BFGMiner Version 3.1.3 - July 11, 2013
  488. - Bugfix: Reset staged_full flag when discarding (stale) popped work, or
  489. increasing the queue minimum
  490. - Bugfix: Only trigger staged work underrun if a mining thread was actually
  491. waiting for it (and do so sooner, before it has the work made)
  492. - bytes_cpy: avoid malloc and memcpy when size is zero
  493. - fix infinite loop in bytes_cpy when size is zero
  494. - Bugfix: Generate iospeeds_local.h based on termios.h defines, and only try to
  495. use POSIX standard if that fails
  496. BFGMiner Version 3.1.2 - July 8, 2013
  497. - When not compiling with optimizations, initialize unused nonce2 space to avoid
  498. warnings from memory checking tools
  499. - TUI Manage devices: Support PgUp/PgDn keys to skip over processors within the
  500. same device
  501. - Bugfix: bitforce: Prefer 2nd temperature if higher than 1st
  502. - When displaying device summary statlines, use the highest temperature reported
  503. by any processor
  504. - Stratum: Fix nonce2 sizes greater than 4 and (on big-endian) smaller than 4
  505. - bitforce: Manage TUI: Display both temperatures (if two), and enable changing
  506. fan speed
  507. - opencl: Add fan speed to Manage device TUI now that it's been removed from
  508. statline
  509. - DevAPI: Remove old statline APIs entirely, and add new override_statline_temp
  510. (used by modminer/x6500 for upload %)
  511. - README: Update statlines
  512. - TUI: Replace DevAPI statline_before with a predefined temperature column to
  513. free up statline space
  514. - Refactor and simplify bin2hex to speed up and avoid unnecessary heap use
  515. - stratum: Refactor work generation to do hex2bin conversions once, rather than
  516. every single header generated
  517. - Implement bytes_t for generic binary data storage (including smart realloc-
  518. based resize)
  519. - Bugfix: fpgautils: Only try to change baud rate when requested
  520. - x6500: Provide manuf/product/serial to cgpu interface
  521. - ztex: Provide manuf/product/serial to cgpu interface
  522. - erupter: Use baud 115200 by default
  523. - List valid baud rates once in iospeeds.h and standardize conversions
  524. - TUI: Display device manufacturer/product/serial in Manage device screen, when
  525. available
  526. - DevAPI: Store manufacturer/product/serial for each device
  527. - fpgautils: detectone_meta_info to provide metainformation (manufacturer,
  528. product, serial) on devices to detectone functions
  529. - Bugfix: fpgautils: Close product string file from sysfs (autodetect)
  530. - erupter: New icarus-based driver to handle autodetection of Block Erupter
  531. devices
  532. - Add --log-file option which redirects stderr to a file, but valid anywhere in
  533. the commandline or config file
  534. - Detect staged work underruns and increase queue to avoid them
  535. - Rewrite hex2bin to perform much faster (reduces minirig CPU usage by more than
  536. half!)
  537. - README: Add condensed list of dependencies
  538. - Enable "maintainer mode" by default
  539. - Bugfix: opencl: TUI manage: "Change settings" must not be compiled in with
  540. no-ADL builds
  541. - Bugfix: Detect whether the linker accepts -zorigin before attempting to use it
  542. - opencl: ADL: ADL_Adapter_ID_Get fails with newer drivers, so tolerate its
  543. failure best we can
  544. - opencl: Don't try to use BFI_INT patching with APP-SDK newer than 1084
  545. (Catalyst 13.1), since it doesn't work
  546. - fpgautils: Elaborate that bitstream open failures are probably due to missing
  547. bitstream package
  548. - fpgautils: s/firmware/bitstream/
  549. - Bugfix: Cleanup handling of complete device/driver failure
  550. - Deprecate -C (enable CPU) and -G (disable GPU) options, now that -S
  551. drv:[no]auto can be used for the same purposes
  552. - Bugfix: Since at least one of unix (or __APPLE__) or WIN32 is required by
  553. util.h, make sure unix is defined if WIN32 is not
  554. - Bugfix: Set ELF rpath for bundled libblkmaker to use $ORIGIN so it can be run
  555. from other directories
  556. - Bugfix: Cleanup needs to happen before printing the final quit message, or it
  557. gets lost in TUI mode
  558. - Bugfix: fpgautils: Initialize my_dev_t instances with null bytes, to ensure
  559. random unused data cannot influence hash keys
  560. - opencl: ManageTUI: Clear log cleanly for changing settings
  561. - Remove "GPU management" TUI entirely
  562. - opencl: Use new "Manage device" interface to do everything "GPU management"
  563. used to be used for
  564. - DevAPI: Add interface for drivers to define custom "Manage device" options
  565. - DevAPI: New function called to display additional processor information for
  566. "Manage devices"
  567. - TUI: Add enable/disable commands to device management
  568. - TUI: Implement beginnings of generic device management interface
  569. - Bugfix: avalon: Fix LIFE_INIT2 setting
  570. - Add LIFE_INIT2 status (safe to call functions, but not mining yet) for devices
  571. that want to report initialization status in their statline
  572. - Bugfix: modminer: Only program once for --force-dev-init
  573. - Bugfix: x6500: Only program once for --force-dev-init
  574. - fpgautils: Workaround and document Xcode clang bug
  575. - Bugfix: avalon: Correctly claim serial port
  576. - Bugfix: -S all: Mac OS X needs to probe /dev/cu.*, not just /dev/cu.usb*
  577. - cpu & opencl: Refuse to detect more than once
  578. - cpu & opencl: Respect scan-serial auto/noauto instructions
  579. - ft232r & libztex: Skip probe of claimed devices
  580. - fpgautils: Check for devices being claimed before calling detectone from autodetectors
  581. - x6500 & ztex: Claim USB devices
  582. - fpgautils: Implement bfg_claim_usb for claiming devices by USB bus number and
  583. address
  584. - fpgautils: Replace serial_claim with bfg_claim_serial using a more cleanly
  585. extensible interface and implementation
  586. - fpgautils: serial_claim: Include a bus enum in hash key
  587. - Add serial port claiming logic to avalon, bitforce, and modminer drivers
  588. - RPC: "devscan" command to probe for new devices
  589. - New (internal) scan_serial function to probe for new devices at runtime
  590. - Split out per-cgpu temperature configuration code to load_temp_config_cgpu
  591. - DevAPI: Modify add_cgpu to use temporary devices_new array, so detection can
  592. be done without touching live variables
  593. - Move more cgpu initialization to allocate_cgpu
  594. - Move devtype default assignment to allocate_cgpu
  595. - Move cgpu startup routine to new start_cgpu function
  596. - Move cgpu_info allocation to new allocate_cgpu function
  597. - Move *.drv_detect calls to a new drv_detect_all function
  598. - DevAPI: add_cgpu: There is no need to hold mutexes while creating devices
  599. - Bugfix: cpu: Update device "kernel name" with auto-selected algorithm
  600. - usbtest: Improve portability to at least 2.7 and 3.2
  601. - usbtest: Avoid messing up the display by escaping weird bytes via repr()
  602. - usbtest: Skip last 2 optional parameters, since we use the defaults and they
  603. are not in older versions of pyserial
  604. - Bugfix: bitforce: ZOX limits results to 16 results per call, so repeat ZOX
  605. until there are fewer
  606. - Bugfix: Initialization for bfgtls needs to be done in each thread
  607. - Bugfix: stratum: Be patient with stratum lines that come in slower than we can
  608. process them
  609. - Use bfg_strerror in locations previously just logging raw error numbers
  610. - Bugfix: stratum: Log WSAGetLastError() for error number on recv failures on
  611. Windows
  612. - Use bfg_strerror where it is already needed (for thread-safety)
  613. - New thread-safe bfg_strerror function to portably stringify error codes
  614. - Bugfix: bitforce_queue: Initialize buf2 so errors don't cause the work queue
  615. to flush
  616. - TUI: Display percentage invalid of found nonces with hw errors
  617. - Bugfix: modminer & x6500: Increment *->diff1 for all bad nonces
  618. - percentf2 that takes t as precalculated total
  619. - Keep track of bad nonces independently from generic hw errors
  620. - inc_hw_errors: Resolve cgpu outside of mutex
  621. - Use inc_hw_errors function at every site which increases hw_errors
  622. BFGMiner Version 3.1.1 - June 22, 2013
  623. - stratum: Deliver exact socket-error within the debug error message
  624. - Don't install docs for (compile-time) disabled functionality
  625. - Bugfix: Handle make dependencies on subdirectory files properly
  626. - Bugfix: Use EXTRA_*_DEPENDENCIES for Cygwin workaround, to fix program make
  627. dependencies
  628. - Support new overclocking speeds for avalon: 325, 350 and 375
  629. - Bugfix: logging: Since we are inlining snprintf, stdio.h is needed
  630. - Bugfix: serial_autodetect_ftdi: Debuglog FTDI COM port mappings returned, fix
  631. type of FT_HANDLE
  632. - Bugfix: Allow starting non-libusb devices if libusb_init fails
  633. - Bugfix: Add missing newline to libusb_init failure message
  634. - Bugfix: opencl: Remove unnecessary casts from rot() macro, which created type
  635. issues
  636. - Bugfix: Remove unused variables
  637. - Suspend stratum connections when we know they've failed and don't try to recv
  638. data from them once the socket no longer exists.
  639. - applog/quit fix GPU errors created
  640. - logging remove extra added <LF>
  641. - remove varargs from logging/quit/in general as much as possible
  642. - compile unix code on Mac OS X fixes not finding the config file in $HOME
  643. - Create a pool_localgen bool function for testing when a pool can generate work
  644. locally.
  645. - Use mining start time for device MH/U calculations
  646. - Bugfix: Save start time for stats to correct "Elapsed" key on "stats" RPC
  647. request
  648. - modminer: tidy up free in device detect function
  649. - bitforce: RPC pgaset fanmode 9 for auto fan control
  650. - Bugfix: usbtest: Correct obvious typos
  651. - Initial import of usbtest.py script
  652. - Include microseconds in log output with new --log-microseconds option
  653. - bitforce: Workaround chip ids not necessarily being in order by choosing
  654. processor count based on expected chip ids rather than parallelization
  655. - serial_autodetect_ftdi: Debuglog FTDI COM port mappings returned
  656. - Bugfix: On stratum disconnect, clear stratum_active and stratum_notify
  657. atomically along with sock
  658. - Windows: Use backtrace.dll to print usable backtraces to stderr on crash
  659. - Bugfix: bitforce: parallelized: Properly handle parallelized protocol with
  660. only 1 chip
  661. - Bugfix: bitforce: XLINK: Increment boardno when moving on to the next board
  662. - bitforce: XLINK: Update to use actual length,xlinkid header order
  663. - Bugfix: bitforce: XLINK: Avoid trying to send 0 bytes after each write
  664. - Bugfix: opencl: Build fpgautils even if OpenCL is the only driver, now that it
  665. uses it for kernel-finding
  666. - Bugfix: Do not try to call get_stats or get_statline* if device is still
  667. initializing
  668. - Bugfix: opencl: Add missing include for fpgautils.h (needed for
  669. open_bitstream)
  670. BFGMiner Version 3.1.0 - June 13, 2013
  671. - Bugfix: openwrt: Expect fixed bitstream path for input
  672. - Improve Makefile organization and fix "make install"
  673. - icarus: Upgrade work division autodetection probe to be faster and also detect
  674. 8 core
  675. - Calculate rejection percentage based on weighed shares, not absolute counts
  676. - Count weighed discarded (stale) shares per cgpu
  677. - Bugfix: Cleanly count discarded (stale) shares without overlapping
  678. devices/sshare locks within clear_stratum_shares
  679. - configure: Enable Avalon support by default now that it behaves reasonably
  680. - avalon: Since detection is not really implemented, only probe devices when the
  681. driver is specified to -S by name (eg, "avalon:/dev/ttyUSB0")
  682. - Bugfix: bitforce_queue: Never try to reinitialize a slave processor
  683. - Bugfix: bitforce_queue: Use work_list_del everywhere we remove from work_list
  684. to ensure work gets freed properly when done
  685. - Reduce HW error logging to debug level, so it doesn't clutter the TUI log by
  686. default
  687. - DevAPI: When a device has more than 26 processors, represent them as aa-zz
  688. - bitforce: bitforce: Fix TUI display of slave processors on parallelized boards
  689. - bitforce: Only display temperature in TUI for the first chip on parallelized
  690. boards
  691. - Bugfix: bitforce: Set temperature for all processors on the board
  692. - Bugfix: bitforce_queue: Initialize proc->device_data to board data for
  693. parallelized chip processors
  694. - Bugfix: bitforce_queue: Defer nonce count check until after thiswork has been
  695. identified (or handled as NULL)
  696. - avalon: avalon_clear_readbuf can simply wait for a single read timeout on
  697. Windows to avoid select
  698. - avalon: Simplify avalon_get_result by using avalon_gets
  699. - avalon: Go back to good old serial timeouts for gets, since select() is for
  700. sockets (only, on Windows)
  701. - Updated api.c to return the hashrate with 3 decimal places
  702. - Change hashrate display to never display 3 fractional digits, because it looks
  703. a bit ugly
  704. - bitforce: Credit hashrate to the correct chip on parallelized devices
  705. - Re-set work thr_id on share submissions, to ensure the result gets credited to
  706. the correct device in case of shared job queues (as in BitForce long boards)
  707. - bitforce: Turn parallelization into separate logical processors for more
  708. details on each, including working with XLink
  709. - bitforce_queue: Implement job sanity checks using new "ZqX" for devices using
  710. parallelization
  711. - bitforce_queue: Minimal support for parallelization
  712. - Add --device-protocol-dump option to debuglog low-level bitforce protocol
  713. details
  714. - When shutting down, set work restart flag (and trigger notifier) to help
  715. mining threads escape to their main minerloop (and check for shutdown)
  716. - Document and check for uthash version 1.9.2+
  717. - Bugfix: Don't report failure for graceful mining thread shutdown
  718. - Name devices in mining thread failures
  719. - Warn about killing mining threads
  720. - Bugfix: Wake up mining threads when asking them to shutdown
  721. - Disable pthread cancel within curses locking
  722. - Shorten the avalon statline to fit in the curses interface and show the lowest
  723. speed fan cooling the asic devices.
  724. - Change switch_compact function name to switch_logsize to be used for other
  725. changes.
  726. - Only adjust cursor positions with curses locked.
  727. - devs display - fix GPU duplicate bug
  728. - basic copyright statement in API.java
  729. - Change the --device parameter parsing and configuration to accept ranges and
  730. comma separated values.
  731. - Modify scrypt kernel message.
  732. - Check for pool_disabled in wait_lp_current
  733. - Check for pool enabled in cnx_needed.
  734. - Add README.ASIC to debian packaging and make-release
  735. - Document avalon options in ASIC-README
  736. - Create README.ASIC with basic summary of supported ASIC devices.
  737. - Do avalon driver detection last as it will try to claim any similar device and
  738. they are not reliably detected.
  739. - Set the fanspeed to the nominal chosen for GPUs.
  740. - Clamp initial GPU fanspeed to within user specified range.
  741. - Avalon fan factor is already multiplied into the info values.
  742. - Get rid of zeros which corrupt display.
  743. - Logic fail on minimum fanspeed reporting.
  744. - Provide a workaround for fan0 sensor not being used on avalon and pad fan RPM
  745. with zeros.
  746. - Add ambient temp and lowest fan RPM information to avalon statline.
  747. - Display max temperature and fanspeed data for avalon.
  748. - Set devices to disabled after they exit the hashing loops to prevent the
  749. watchdog thread from trying to act on them.
  750. - Scanhash functions perform driver shutdown so don't repeat it.
  751. - Change the opencl shutdown sequence.
  752. - Send the shutdown message to threads and do the thread shutdown functions
  753. before more forcefully sending pthread_cancel to threads.
  754. - Icarus report data direction with comms errors
  755. - Execute driver shutdown sequence during kill_work.
  756. - Provide an nusleep equivalent function to nmsleep.
  757. - Set avalon_info to device data void struct.
  758. - Make submit_nonce return a bool for whether it's a valid share or not.
  759. - Do a non-blocking read of anything in the avalon buffer after opening the
  760. device.
  761. - Assign the avalon info data to the device_data in cgpu_info.
  762. - Rename cgpu_data to use new device_data
  763. - miner.h remove unused device_file and add device_data
  764. - Must unlock curses as well in logwin_update.
  765. - icarus report usb write error information
  766. - Make mining threads report out during work submission.
  767. - submit_work_async is no longer used directly by driver code.
  768. - Create a logwin_update function which mandatorily updates the logwin and use
  769. it when input is expected to prevent display refresh delays.
  770. - All stratum calls to recv_line are serialised from the one place so there is
  771. no need to use locking around recv().
  772. - Only allow the mining thread to be cancelled when it is not within driver
  773. code, making for cleaner shutdown and allowing us to pthread_join the miner
  774. threads on kill_work().
  775. - Implement pthread_testcancel replacement for BIONIC
  776. - Attribute whatever stats we can get on untracked stratum shares based on
  777. current pool diff.
  778. - Downgrade OpenCL headers to 1.0, which work fine for our purposes and are more
  779. compatible
  780. - icarus: If work_division autodetect fails, just use the old default of 2
  781. - avalonhost-raminst script to help with installing to RAM on Avalon-host
  782. routers
  783. - Attempt to probe /dev/cu.usb* for fallback "-S all"
  784. - openwrt: Download uthash dependency
  785. - Bugfix: openwrt: Always build with libsensors support disabled
  786. - configure: Check for uthash headers
  787. - Bugfix: ztex: Only destroy libztex device after the last handle to it has been
  788. released
  789. - ztex: Remove libztex slave device interface, simply passing fpgaNum to
  790. selectFpga
  791. - Bugfix: cpu: Fix yasm and sse2 detection
  792. - cpu: Check for SSE2 support independently from yasm
  793. - Bugfix: cpu: Make sure to link libsse2cpuminer.a before x86_32/libx8632.a
  794. - Bugfix: cpu: Only build libsse2cpuminer iff yasm is available and targetting
  795. x86_32
  796. - Bugfix: Free work only after deleting it from list
  797. - Remove embedded uthash.h and utlist.h from Makefile
  798. - windows-build.txt: Update for system uthash
  799. - Remove embedded uthash (and add dependency on system uthash)
  800. - Replace elist.h with utlist.h
  801. - Bugfix: Fix build with CPU mining and *without* yasm
  802. - cpu: Be explicit about size of sha256_init address
  803. - cpu: Add --algo fastauto (new default) to detect a usable algorithm without
  804. taking over a minute
  805. - cpu: Default to --algo auto
  806. - cpu: Support all platform-applicable assembly algorithms, even if used CFLAGS
  807. don't support them
  808. - Ubuntu: Updated changelog, added scrypt support.
  809. - cpu: Set fixed symbol names for stuff shared with assembly
  810. - cpu: Create Mach-O asm binaries on Darwin-based systems
  811. - Bugfix: cpu: Use COFF yasm binfmt on Cygwin
  812. - Bugfix: cpu: Get correct nonce from data, where the CPU sub-drivers leave it
  813. - Remove redundant "Reject ratio" in exit-time summary
  814. - Apply "R+S(%)" formatting to long-form statistics
  815. - Group stale shares in with rejects (but still distinctly counted) and make the
  816. percentage be (reject+stale)/total
  817. - Include rejected shares as a percentage
  818. - Move Utility and Best Share to status line
  819. - Remove LW from status line, since it is basically useless
  820. - ztex: Clean up a lot of ugly casting
  821. - Bugfix: Correctly avoid SIGPIPE on Mac
  822. - Make set_work_target a function to set a specified char as target for use
  823. elsewhere.
  824. - Minor typo.
  825. - Support more shares to be returned for scrypt mining.
  826. - Set all stratum sockets to nonblocking to avoid trying to use MSG_DONTWAIT on
  827. windows.
  828. - Only use MSG_NOSIGNAL for !win32 since it doesn't exist on windows.
  829. - Use MSG_NOSIGNAL on stratum send()
  830. - Set TCP_NODELAY for !linux for raw sockets.
  831. - Use TCP_NODELAY with raw sockets if !opt_delaynet
  832. - Recheck select succeeds on EWOULDBLOCK for stratum.
  833. - Don't use TCP_NODELAY if opt_delaynet is enabled with stratum.
  834. - Fix warnings in avalon driver.
  835. - correct applog typing
  836. - Simplify the many lines passed as API data in the avalon driver now that the
  837. API does not need persistent storage for the name.
  838. - Duplicate the name string always in api_add_data_full to not need persistent
  839. storage for names passed to it.
  840. - Add extra matching work count data in API for Avalon with 4 modules.
  841. - Clean up summary slightly better on exit.
  842. - opencl: Disable using binary kernels on Apple by default
  843. - Use sock_blocks in api.c
  844. - Fix build and distdir.
  845. - compile on win32
  846. - Update README.scrypt with improved hashrates for 7970.
  847. - Use copy_time helper throughout miner.c
  848. - Provide wrappers for commonly used timer routines with API stats.
  849. - Use flip32 function instead of open coding it in gen_stratum_work.
  850. - Move util.c exports to util.h
  851. - Replace gettimeofday usage with cgtime
  852. - Adopt gettimeofday wrapper from cgminer (cgtime) that is always called with tz
  853. set to NULL and increases the resolution on windows.
  854. - Add high resolution to nmsleep wrapper on windows.
  855. - Bugfix: Export stats_lock for deviceapi
  856. - Set default ocl work size for scrypt to 256.
  857. - fliter out the wrong result from adjust fan code
  858. - Set last device valid work on adding device.
  859. - Make scrypt submission use the submit_nonce code, with nonces matching
  860. endianness.
  861. - Increment hardware error count from the one site.
  862. - compile avalon driver on win32 and win64
  863. - build out of source dir
  864. - Rename scrypt regenhash function for consistency.
  865. - Add Mac FAQ.
  866. - Further driver FAQs.
  867. - Check for work restart after disable in the hash queued work loop since it may
  868. be a long time before we re-enable a device.
  869. - Unconditionally test for many wrong results on avalon and reset to avoid
  870. passing a corrupt avalon result to temperature code.
  871. - Only reset an avalon device with no results when there are no results
  872. consecutively.
  873. - More FAQs.
  874. - Avoid applog in recalloc_sock.
  875. - Avoid applog under cg_wlock.
  876. - Put spacing around locking code for clarity.
  877. - Avoid applog under pool_lock.
  878. - Avoid more recursive locks.
  879. - Avoid applog while ch_lock is held.
  880. - Avoid recursive locks in fill_queue.
  881. - Variable is already initialised in global scope.
  882. - More GPU FAQs.
  883. - More README faqs.
  884. - Yet more README faqs.
  885. - Add more FAQs to README.
  886. - Wrap result wrong tests in avalon scanhash in unlikely() and only consider a
  887. hash count of zero wrong if a restart wasn't issued.
  888. - avalon: if result_wrong >= get_work_count jump out the read loop
  889. - Fix warning on 32bit.
  890. - fix the fan control on max temp2/3
  891. - for some reason network down. one simple bfgminer command: "bfgminer -o
  892. 127.0.0.1:8888 -O fa:ke --avalon-options 115200:32:10:50:256" can idle the
  893. avalon for safe power and protect chip
  894. - if hash_count == 0; reinit avalon, fix the 0MHS bug use the max value of temp1
  895. and temp2 for fan control
  896. - Reinstate the matching_work_count per subdevice on avalon based on the work
  897. subid.
  898. - Rationalise and simplify the share diff and block solve detection to a common
  899. site.
  900. - subid field for devices that do not yet support the distinct device/processor
  901. interface
  902. - Make the avalon array size a macro.
  903. - Use replacement of work items in the avalon buffer as needed instead of
  904. flushing them.
  905. - Reinstate wrong work count to reset avalon regardless and display number of
  906. wrong results.
  907. - select() on serial usb in avalon does not work properly with zero timeout.
  908. - Use no timeout on further reads in avalon_gets
  909. - Do sequential reads in avalon_get_reset to cope with partial reads.
  910. - Show read discrepancy in avalon_get_reset.
  911. - Reuse avalon_get_work_count variable.
  912. - Check for AVA_GETS_RESTART when deciding if avalon has messed up.
  913. - Make the detection of all wrong results on avalon much more conservative to
  914. avoid false positives on work restarts.
  915. - Show error codes on select and read fail in avalon.
  916. - If we get a restart message in avalon_gets still check if there's a receive
  917. message to parse first without a timeout before returning AVA_GETS_RESTART.
  918. - avalon_gets is always called from the one call site so inline it.
  919. - The read_count is unused by the avalon get result code and no longer required
  920. for avalon reset so simplify code removing it.
  921. - Use a separate avalon_get_reset function for resetting avalon instead of using
  922. avalon_get_result.
  923. - The current hash count returned by avalon scanhash is just an obfuscated
  924. utility counter so make it explicit.
  925. - Check for a restart before a timeout in message parsing code in avalon.
  926. - We should check for a restart message before checking for a timeout in avalon
  927. scanhash.
  928. - Store the subid for the work item in avalon.
  929. - Fix record_temp_fan function in avalon driver.
  930. - Remove inappropriate memset of struct avalon result which was corrupting fan
  931. values.
  932. - Only do_avalon_close once on multiple errors.
  933. - Reset the result_wrong count on block change in avalon scanhash to prevent
  934. false positives for all nonces failed.
  935. - Small timeouts on select() instead of instant timeout increase reliability of
  936. socket reads and writes.
  937. - Rotate the avalon work array and free work on AVA_SEND_BUFFER_EMPTY as well.
  938. - Only get extra work in fill_queue if we don't have any unqueued work in the
  939. list.
  940. - Don't get any work if our queue is already full in avalon_fill.
  941. - Free avalon->works in the event we call avalon_prepare on failure to
  942. initialise.
  943. - Fix warnings.
  944. - Create an array of 4 lots of work for avalon and cycle through them.
  945. - Remove unused per unit matching work count for avalon.
  946. - Rename the confusing avalon_info pointer.
  947. - Simplify avalon scanhash code using the new find_queued_work_bymidstate
  948. function.
  949. - Members of cgpu_info for avalon are not meant to be in the union.
  950. - Use correct struct device_drv for avalon_drv.
  951. - Check enough work is queued before queueing more in avalon_fill.
  952. - Actually put the work in the avalon queue.
  953. - Rename avalon_api to avalon_drv.
  954. - First draft of port of avalon driver to new cgminer queued infrastructure.
  955. - Minor README updates.
  956. - README.GPU: Properly warn about overclocking damage
  957. - Add example 7970 tuning for scrypt in readme.
  958. - Update driver recommendations.
  959. - Add extensive GPU FAQs for the flood of new Scrypt miners.
  960. - Bugfix: Expect bitstreams and kernels to be in the srcdir, not build dir
  961. - cpu: Prefer sse4_64 algorithm if supported
  962. - cpu: sse2_32: Force bare symbols for cross-asm/C symbols
  963. - Compile CPU mining for win32 and win64
  964. - configure: Check for pthread in -lwinpthread
  965. - Use has_pth flag instead of trying to mess with pthread internals
  966. - configure: Explicitly check for nanosleep
  967. - configure: Include "no" response in BFG_PTHREAD_FLAG_CHECK
  968. - miner.h missing extern
  969. - Update links and recommended SDKs.
  970. - Bugfix: README.GPU: Fix some typos
  971. - Update README to match changes to display.
  972. - Remove increasingly irrelevant discarded work from status lines.
  973. - Remove increasingly irrelevant GW value from status.
  974. - README.GPU: Correct terminology
  975. - Update README about intensity.
  976. - Bugfix: Restore always autodetecting stratum as non-scrypt
  977. - icarus: Replace default of 2 work_division/fpga_count with autodetection of 1,
  978. 2, or 4
  979. - Update scrypt readme with newer information and to match changes in code.
  980. - Set default GPU threads to 1 for scrypt.
  981. - Connect backup stratum pools if the primary pool cannot deliver work.
  982. - Use a new algorithm for choosing a thread concurrency when none or no shader
  983. value is specified for scrypt.
  984. - Do not round up the bufsize to the maximum allocable with scrypt.
  985. - Remove the rounding-up of the scrypt padbuffer which was not effectual and
  986. counter-productive on devices with lots of ram, limiting thread concurrencies
  987. and intensities.
  988. - Make pool adding while running asynchronous, using the pool test thread
  989. functionality.
  990. - Only curl easy cleanup a stratum curl if it exists.
  991. - Add intermediate variants of cglocks that can be up or downgraded to read or
  992. write locks and use them for stratum work generation.
  993. - Move the stratum data to be protected under a new cg_lock data_lock.
  994. - Convert the ch_lock to cg_lock.
  995. - Convert the control_lock to a cg_lock.
  996. - Remove unused qd_lock.
  997. - Implement cg_lock write biased rwlocks.
  998. - Don't start testing any pools with the watchpool thread if any of the test
  999. threads are still active.
  1000. - Set sockd to false should curl setup fail on stratum.
  1001. - Reopen the socket whenever we're retrying stratum.
  1002. - Set pool died on failed testing to allow idle flag and time to be set.
  1003. - Remove unused pthread_t typedefs from struct pool.
  1004. - Perform pool_resus on all pools that are found alive with the test pool
  1005. threads.
  1006. - Use pool_unworkable in select_balanced as well.
  1007. - Differentiate pool_unusable from pool_unworkable.
  1008. - Keep a connection open on higher priority stratum pools to fail back to them.
  1009. - Set the wrong bool in pool_active
  1010. - Only bypass unusable pools if they're not the selected ones.
  1011. - Find the first usable pool in preference to the current pool in select_pool
  1012. for work.
  1013. - Add a pool_unusable function which checks if a pool is stratum but not active
  1014. to use within switch_pools.
  1015. - API no longer ignore send() status
  1016. - API make the main socket non-static
  1017. - Start the stratum thread only if we successfully init and authorise it,
  1018. otherwise unset the init flag.
  1019. - Make the initialisation of the stratum thread more robust allowing the
  1020. watchpool thread safe access to it after the stratum thread is started.
  1021. - Shorten the time before keepalive probes are sent out and how frequently
  1022. they're sent with stratum curls.
  1023. - Display select return value on select fail in stratum thread.
  1024. - Clear the socket of anything in the receive buffer if we're going to retry
  1025. connecting.
  1026. - Perform pool resus on pools that were not set as the initial pool at startup.
  1027. - Allow pools to be resuscitated on first startup by the watchpool thread.
  1028. - Check all pools simultaneously at startup switching to the first alive one to
  1029. speed up startup.
  1030. - Close any sockets opened if we fail to initiate stratum but have opened the
  1031. socket.
  1032. - API use control_lock when switching pools
  1033. - Clear last pool work on switching pools if the current pool supports local
  1034. work generation or we are in failover only mode.
  1035. - make rw locks: mining_thr_lock and devices_lock
  1036. - work queues - remove new but unnecessary functions
  1037. - functions for handling work queues
  1038. - find_work() to find work in devices work queue
  1039. - Add a get_queued function for devices to use to retrieve work items from the
  1040. queued hashtable.
  1041. - Add the choice of hash loop to the device driver, defaulting to hash_sole_work
  1042. if none is specified.
  1043. - Add a driver specific flush_work for queued devices that may have work items
  1044. already queued to abort working on them on the device and discard them.
  1045. - Flush queued work on a restart from the hash database and discard the work
  1046. structs.
  1047. - Create a central point for removal of work items completed by queued device
  1048. drivers.
  1049. - Create a fill_queue function that creates hashtables of as many work items as
  1050. is required by the device driver till it flags the queue full.
  1051. - Create the hash queued work variant for use with devices that are fast enough
  1052. to require a queue.
  1053. - Make sure to do full avalon_init if the device_fd is invalid.
  1054. - Document extra zero byte in avalon_reset.
  1055. - Microoptimise likely paths in avalon_gets.
  1056. - Make sure to set timeout to 100ms instead of 1ms in avalon read loop for
  1057. select.
  1058. - Make sure to get time of first response in avalon read loop.
  1059. - Use select for a reliable timeout in avalon read and don't read 1 byte at a
  1060. time, optimising read loop.
  1061. - We should break on the loop on a work restart in avalon, and only consider all
  1062. errors if we actually have gotten some results.
  1063. - Avalon init on comms error as well.
  1064. - Reinit avalon device in case of FPGA controller mess up.
  1065. - Increase reliability of avalon startup by only opening and resetting the
  1066. device once, looking for the id sequence offset by one byte as well, and still
  1067. ignoring if it's wrong, assuming it is an avalon.
  1068. - Nest avalon_decode functions to avoid doing unnecessary lookups once we have
  1069. found the nonce.
  1070. - Use htole32 wrapper for nonce encoding in avalon.
  1071. - Remove unused rev8 function from avalon driver.
  1072. - Remove const qualifier from driver structs
  1073. - rename device_api -> device_drv and all related api -> drv
  1074. - rename get_proc_by_id() to get_devices()
  1075. - Wrap access to devices array under a mutex
  1076. - Provide wrappers for grabbing of thr value under the mining_thr_lock.
  1077. - mutex all access to mining_thr
  1078. - Split thr_info array into control_thr and mining_thr pointers so more mining
  1079. threads can be added later
  1080. - Update the hashmeter at most 5 times per second.
  1081. - Speed up watchdog interval and therefore display updates to 2 seconds.
  1082. - Add README.GPU to EXTRA_DIST.
  1083. - Split out the GPU specific information from the README into a README.GPU file.
  1084. - Update docs and reorder README to show executive summary near top.
  1085. - Add more FAQs about crossfire.
  1086. - Convert error getting device IDs in ocl code to info log level only since
  1087. multiple platforms may be installed and the error is harmless there.
  1088. - Unnecessary extra array in ocl code.
  1089. - Cope with the highest opencl platform not having usable devices.
  1090. - Update kernel file names signifying changes.
  1091. - Use constants from the array of __constants throughout the diablo kernel.
  1092. - Create a __constant array for use within diablo kernel.
  1093. - Use global constant arrays for all other constants used in scrypt kernel.
  1094. - Use global __constants for sha functions in scrypt kernel.
  1095. - Use constants for endian swap macros.
  1096. - Revise scrypt kernel copyright notice.
  1097. - Separate out additions in scrypt kernel.
  1098. - Reuse some Vals[] variables that can be assigned to constants earlier in the
  1099. poclbm kernel, making for fewer ops.
  1100. - Put all constants used in poclbm kernel into __const memory array to speed up
  1101. concurrent reads on the wavefront.
  1102. - opencl: Support for reading temperature from free software radeon drivers via
  1103. libsensors
  1104. BFGMiner Version 3.0.3 - June 13, 2013
  1105. - make-release: Include all submodules, recursively
  1106. - Remove API.java example (no copyright license)
  1107. - Minimally fix "make install" to ignore bitstream sources
  1108. - Add submodule for ZtexBTCMiner (aka ztex_ufm1_*)
  1109. - Add submodule for X6000_ztex_comm4 (aka x6500-overclocker-0402)
  1110. - ztex: Use standard file header/comment formatting, and update license to GPLv3
  1111. - bitforce: Allow a longer timeout (1250ms) for ZCX (Device Information)
  1112. commands
  1113. - Bugfix: pdcurses doesn't like changing logwin size without clearing it also,
  1114. so do that in display options
  1115. - -S all: Start QueryDosDevices probe with 256-byte buffer
  1116. - Use common code to ensure the prefix of -S *:all remains in all
  1117. implementations of it (/dev glob was removing prefixes)
  1118. - bitforce_queue: Ensure comma following nonce count is there, to error cleanly
  1119. - bitforce: Report queue send failures, and count as hw errors
  1120. - Bugfix: bitforce_queue: Don't try to send ready-to-queue work to device, when
  1121. there is no ready-to-queue work
  1122. - Bugfix: bitforce: Clear want_to_send_queue flag when flushing queue, since we
  1123. can't send an empty queue
  1124. - bitforce: Include new total queued count in flush debugging
  1125. - Bugfix: bitforce_queue: Implement a minimum wait time of 10ms
  1126. - README: Document serial device format for Mac OS X
  1127. - Bugfix: cairnsmore1: Enable building with libudev autodetection even if only
  1128. icarus drivers are enabled
  1129. - Bugfix: sysfs autodetect: Continue searching even after finding one tty (fixes
  1130. multiple ttys per device, such as some Cairnsmore1s)
  1131. - Bugfix: ztex: Avoid destroying libztex device in case other processors are
  1132. still in use (fixes crash when 1.15y becomes unavailable)
  1133. - Update windows-build.txt
  1134. - ccan: Add missing copyright comment headers
  1135. - Remove obsolete mknsis.sh
  1136. - Add missing copyright sections to files that may need them
  1137. - Standard copyright format (including year) for adl_functions.h
  1138. - Bugfix: When disabling device, ensure its prev_work (if any) gets freed
  1139. properly
  1140. - Check stratum socket exists and is writable before even considering whether
  1141. the sessionid is the same or not
  1142. - Bugfix: Check that the stratum_share struct for a failed submission is still
  1143. in the submission hashtable before trying to delete it
  1144. - README: Add missing documentation for CPU algorithms cryptopp_asm32, sse2_32,
  1145. and altivec_4way
  1146. - Bugfix: icarus: Check work restart before timeout
  1147. - Bugfix: icarus: Debuglog the correct read timeout (and omit from work restart
  1148. since there's no trivial way to get it)
  1149. - README: Update links
  1150. - Bugfix: cpu: Fix warning on Win64
  1151. - Bugfix: avalon: Strict formatting
  1152. - Bugfix: Cleanup trivial warnings
  1153. - Bugfix: bitforce: Seek to end of nonce counter to find nonces, in case there
  1154. are more than 9
  1155. - Bugfix: Build hexdump.c into the project normally like everything else
  1156. - Bugfix: Really fix device entries in saved config file
  1157. - Update the write config to properly record device entries and remove disabled
  1158. option.
  1159. - avalon: Really fix applog formatting
  1160. - va_copy is meant to be matched by a va_end in log_generic.
  1161. - Further fix distdir for hexdump.c
  1162. - Fulltest is true if value is <= target.
  1163. - Fix warning with no curses built in.
  1164. - Bugfix: configure: Check NEED_FPGAUTILS correctly
  1165. - configure: Better grammar for --enable-cpumining help
  1166. - Bugfix: Check for SSE 4.1 support before building sse4_64 asm CPU miner (uses
  1167. MOVNTDQA instruction)
  1168. - Bugfix: elist: Use uintptr_t for member offset
  1169. - Bugfix: opencl/adl: Fix format string
  1170. - Bugfix: opencl: Correct usage of formatted prints
  1171. - Increase fd limits as much as possible at startup
  1172. - Bugfix: bitforce: bulk queue: Cleanly retry for high temperature recovery
  1173. - Fixed deps for raring, which has newer libudev1.
  1174. - bitforce: debuglog actual result data
  1175. - Bugfix: Missing 'else' can result in null pointer dereference in race
  1176. - Minor grammo in avalon driver.
  1177. - Make avalon temperature reading LOG_INFO level.
  1178. - Fix the problem of seting up termio of ttyUSB0 for icarus. the CSIZE is the
  1179. mask of CS2/4/8
  1180. - bufsize is an unsigned integer, make it so for debug.
  1181. - Bugfix: bitforce: Include get_api_stats in BQUEUE mode
  1182. - Bugfix: Always compile support for commandline --temp-target and
  1183. --temp-cutoff, and write them in the config for all devices
  1184. - Bugfix: Ensure cURL timers get set correctly in submission thread
  1185. - Bugfix: modminer: Remove unused parameter to sprintf
  1186. - Bugfix: modminer: Use correct format for bytes left in bitstream upload
  1187. message
  1188. - Bugfix: Access strategy name string directly instead of accidentally
  1189. - Add printf-format syntax checks to more functions that should use it
  1190. - AUTHORS: Add more contributors
  1191. - Support configure flag --with-system-libblkmaker to allow building without the
  1192. bundled copy
  1193. - Bugfix: Use HTTP/1.1 compatible product token for User-Agent header
  1194. BFGMiner Version 3.0.2 - April 28, 2013
  1195. - Receive failures in recv_line should unconditionally fail.
  1196. - Use sock_blocks function for stratum send and receive.
  1197. - Avoid applog under stratum_lock in __stratum_send.
  1198. - Create an OS specific sock_blocks function.
  1199. - There should be no error response code with return value 0 in recv_line.
  1200. - Check for errors on stratum recv for any recv return value less than 1 and
  1201. only parse the response if it's positive.
  1202. - Avoid applog under stratum_lock in recv_line.
  1203. BFGMiner Version 3.0.1 - April 24, 2013
  1204. - Bugfix: configure: Move actual roundl macro back to miner.h after math.h
  1205. should be included
  1206. - Bugfix: configure: Use dummy pointer to correctly detect roundl when conftest
  1207. main is missing argc parameter
  1208. - Bugfix: configure: Use variable argument to roundl to prevent compilers from
  1209. optimizing it out entirely
  1210. - Remove bitstreams from Windows binary distributions (README directs users to
  1211. download source and copy them)
  1212. - make-release: Remove autom4te.cache from distributed source
  1213. - Bugfix: Omit --no-opencl-binaries option from build if OpenCL is not being
  1214. compiled
  1215. - Bugfix: Check that all pools have URIs set before starting
  1216. - Bugfix: bitforce: Make noncebuf large enough for max qresults +1 (for OK line)
  1217. - opencl: Ability to avoid using binary kernels with new --no-opencl-binaries
  1218. option
  1219. - README: Include jansson PKG_CONFIG_PATH in example for Mac
  1220. - Include trailing \0 with coinbase sigs if there's room
  1221. - Differentiate socket closed from socket error in recv_line.
  1222. - Add new best share info to verbose logging.
  1223. - Add notice for when network diff is changed.
  1224. - convert sleep(const) to nmsleep()
  1225. - Rename longpoll threads according to what pool they're associated with
  1226. - miner.php report 'Last Valid Work' as time before request
  1227. - API V1.25 - add 'Last Valid Work' time for each device
  1228. - add 'count' to customsummarypage 'calc'
  1229. - Bugfix: ztex: Initialize fw_buf pointer to NULL so a free before allocation is
  1230. safe
  1231. - Cleanup when stratum curl fails to initialise.
  1232. - LTC text typo
  1233. - Recreate cURL for new stratum connections, and clear stratum_notify on
  1234. suspending them
  1235. - clear_stratum_shares: Rename diff_stale variable to diff_cleared
  1236. - MMQ it's a bitstream
  1237. - Update a pool's last work time when the work is popped as well as staged.
  1238. - Extend stratum connections another minute (total 2 minutes) after the last
  1239. work item was staged, and maintain last_work_time for non-stratum pools.
  1240. - Fix --benchmark generating valid work for cgminer.
  1241. - Bugfix: Correct pdbuilder result directory
  1242. - Omit add_serial_all code when serial support is not wanted
  1243. - Use configure to detect presence of roundl to avoid redefining an actual
  1244. function (possibly inline)
  1245. - Bugfix: roundl: Add needed parenthesis to perform ?: before +
  1246. - Bugfix: ft232r: Defer allocating structure until after USB endpoint is
  1247. successfully opened, so it won't leak in case of failure
  1248. - Bugfix: ztex: Free bitstream in memory when done with it
  1249. - Bugfix: Safely handle all-space cURL debug messages, should they ever happen
  1250. - Silence warnings about poor format usage for quit()
  1251. - Apply noreturn and printf-format attributes to quit() function definition
  1252. - Bugfix: set_serial_rts get flags to manipulate them correctly
  1253. - Bugfix: Missing return for /dev globbing
  1254. - Bugfix: Free unused work when retrying failed lp request
  1255. - Display processor name with thread disabled/re-enabled messages
  1256. - Move best share to top summary line, and add network difficulty to block line
  1257. - opencl: Default to phatk kernel for Mesa platform
  1258. - opencl: Default to single thread with Mesa OpenCL
  1259. - opencl: Check for Mesa OpenCL and avoid using binary kernels with it
  1260. - bitforce: Never increase bulkqueue poll wait time during queue underruns
  1261. - bitforce: Start off polling bulk queue every 100ms
  1262. - bitforce: Log device queue size after getting bulk results
  1263. - bitforce: Ensure bulkqueue polling occurs at least once a second
  1264. - opencl: Include OpenCL platform in kernel binary filenames
  1265. - bitforce: Use bulk queue mode for all SC devices
  1266. - Bugfix: bitforce: When reinitializing, free all known works to avoid
  1267. decrementing reset queued counter
  1268. - bitforce: Handle timeout during ZOX as cleanly as possible
  1269. - Bugfix: bitforce: Make reinitialization more complete and safe
  1270. - Bugfix: bitforce: Close opened fd if reinit fails
  1271. - Bugfix: bitforce: Retry ZGX until device is NOT busy
  1272. - bitforce: Log when zero queued results are received
  1273. BFGMiner Version 3.0.0 - April 5, 2013
  1274. - Update libblkmaker to 0.3.0
  1275. - debian: Include new api-example.py in docs
  1276. - added example for Python using the RPC API
  1277. - added SPEC file for SUSE distributions
  1278. - Bugfix: bitforce: Free initialization data to avoid trivial one-time memory
  1279. leak
  1280. - Support for local submission of found blocks (GBT only)
  1281. - bitforce: RPC pgaset fanmode 0-5 for manual fan control
  1282. - bitforce: More debugging information
  1283. - Bugfix: modminer: Since RPC always includes the temperature, we don't need to
  1284. add it specially
  1285. - bitforce: Expose dual temperature sensors to RPC
  1286. - bitforce: Support for up to 2 temperature sensors per processor
  1287. - Bugfix: bitforce: BFP_QUEUE: Attempt to recover from extra queue results, or
  1288. the next job finishing early
  1289. - bitforce: Always send a new job ASAP after flushing the queue
  1290. - bitforce: Implement "Queue Job Pack" (ZWX) and use it for XLINK devices to
  1291. avoid USB latency issues
  1292. - bitforce: Ignore INPROCESS added to ZOX response
  1293. - Implement minerloop_queue for devices that process work items too fast to keep
  1294. track of which one they're currently working on
  1295. - bitforce: Split ZOX command into its own function
  1296. - Bugfix: DevAPI: Free work when preparing it fails
  1297. - DevAPI: Abstract get_and_prepare_work for minerloops
  1298. - DevAPI: Move select() logic from minerloop_async to do_notifier_select
  1299. - Clarify stratum mining.set_difficulty debug log message
  1300. - No longer call configure from autogen.sh
  1301. - Bugfix: bitforce: Ensure result_busy_polled gets set for queue mode to avoid
  1302. unnecessary 10ms wait times
  1303. - Bugfix: bitforce: Use common code for end of job_get_results, so queue results
  1304. don't short-circuit timing code
  1305. - Bugfix: bitforce: Ensure "OK" doesn't remain in queued results buffer
  1306. - Bugfix: bitforce: next_line needs to increment beyond the newline character
  1307. - Update README for x970 memdiff values.
  1308. - Do not scan other gpu platforms if one is specified.
  1309. - Update README for sync objects on windows.
  1310. - Add information for setting gpu max alloc and sync parameters for windows with
  1311. scrypt.
  1312. - Whitelist AMD APP SDK 2.8 for diablo kernel.
  1313. - Show pool number in switch message
  1314. - Clear just the socket buffer when we don't care what is left in a stratum
  1315. socket.
  1316. - Clear the stratum socket whenever we are closing it since the buffer is going
  1317. to be reused.
  1318. - Do not continue work from a stratum pool where the connection has been
  1319. interrupted.
  1320. - Close any existing stratum socket if we are attempting to restart stratum so
  1321. the pool knows the connection has gone.
  1322. - Show mechanism of stratum interruption if select times out.
  1323. - Make stratum connection interrupted message higher priority to be visible at
  1324. normal logging levels.
  1325. - API add 'Network Difficulty' to 'coin'
  1326. - avalon: if all result are wrong in one batch read. reinit the avalon
  1327. - avalon: record the last result temperature info
  1328. - delay when close avalon; only record matched result
  1329. - avalon: fix no_matching_work only count when debug
  1330. - avalon: minor change
  1331. - avalon: add idle code
  1332. - avalon: fliter the temp_max >= 100, print the result for debug.
  1333. - avalon: export more data to API stats
  1334. - avalon: add default chip frequency
  1335. - avalon: fix the work_i3 init
  1336. - avalon: add reinit_device
  1337. - avalon: the temp_history_count base on timeout
  1338. - avalon: fix mistake on adjest_fan
  1339. - avalon.c: fix the copyright
  1340. - bfgminer-rpc: add -o option: no format, only the result
  1341. - avalon: update fan pwm
  1342. - avalon: update the FAN_PWM MAX/MIN
  1343. - avalon: minor change
  1344. - avalon: overclock code
  1345. - avalon: fix the display
  1346. - avalon: minor change
  1347. - avalon: fix the fan/temp control
  1348. - avalon: fix the temp_avg
  1349. - avalon: fix temp
  1350. - avalon: add fan/temp control
  1351. - avalon: add FAN speed factor
  1352. - avalon: add TODO on fan/temp control. cleanup detect
  1353. - avalon: add the gate_miner bits
  1354. - avalon: only send one byte on reset
  1355. - avalon: add support on send 2 bulk taskes at begin
  1356. - avalon: fix the hash_count return
  1357. - avalon: fix the LOG_WARNING
  1358. - avalon: add comment on hash_count
  1359. - avalon: WORKAROUND on hashrate
  1360. - avalon: update max miner_num
  1361. - avalon: add more info on api
  1362. - avalon: add nonce_elf and more info on match miner_num
  1363. - avalon: change reset to 300ms
  1364. - avalon: move bulk buffer to it's info structrue
  1365. - avalon: more work on hashrate and read_count
  1366. - avalon: add baud 38400 support
  1367. - avalon: fix nonce_range EB
  1368. - avalon: fix the hashrate wrong
  1369. - more info on avalon API
  1370. - avalon: fix the nonce_range EL
  1371. - avalon: fix the read count
  1372. - avalon: more work on nonce_range
  1373. - avalon: read() times and send delay fixed
  1374. - avalon: add the send delay option
  1375. - avalon: print out fan/temp info
  1376. - avalon: add the result info (fan/temp etc)
  1377. - avalon: more check on hardware error
  1378. - avalon: more work on get_work_count
  1379. - avalon: now we have dynamic get_work_count
  1380. - avalon: more work on parameters
  1381. - avalon: add timeout parameter
  1382. - avalon: baud as parameter now
  1383. - avalon: send work pitch should be : (15*(8+2)*4/19200)s
  1384. - avalon: more work on match work
  1385. - avalon: fix free_work
  1386. - avalon: continue on reset work. wait for buffer empty
  1387. - avalon: add options, if write() error. sleep(1) before reset()
  1388. - avalon: more cleanup
  1389. - avalon: finish read when Buffer empty
  1390. - avalon: fix the nonce EB issue
  1391. - avalon: MORE work
  1392. - avalon: fix the EB/LB issue
  1393. - avalon: some cleanup
  1394. - avalon: fix the first configure task
  1395. - more work on the avalon buffer
  1396. - avalon: fix the BIG_ENDIAN issue
  1397. - avalon: Fix the buffer statu
  1398. - change defines to avalon parameters
  1399. - fix the cts return
  1400. - avalon: change the data to uint8_t, add some test temp code
  1401. - avalon: fix task init
  1402. - avalon: more data format work
  1403. - change to avalon data format
  1404. - debug: add a debug hexdump.c
  1405. - avalon: add some code on match work
  1406. - avalon: try to correct the pool_status and dev_status
  1407. - avalon: more work on multi-works
  1408. - avalon: more work on read
  1409. - avalon: more work on get results
  1410. - more RTS code on avalon.c/h
  1411. - more RTS code
  1412. - avalon: some cleanup
  1413. - avalon: more work on new work queue structrue
  1414. - fpgautils.c: use lancelot as target
  1415. - avalon: since we submit task as bulk data. modify again
  1416. - add scanhash_queue
  1417. - renmae avalon.h to driver-avalon.h
  1418. - fpgautils.c: add get_serial_cts
  1419. - understand the avalon protocol more
  1420. - avalon: new software structrue but target as lancelot
  1421. - add avalon.h
  1422. - avalon: fix warning
  1423. - avalon: add TODO comments
  1424. - more AVALON defines
  1425. - avalon: more work
  1426. - add driver-avalon.c
  1427. - add avalon support to automake
  1428. - Default to work queue mode on BitForce SC devices
  1429. - bitforce: Implement support for non-contiguous XLINK slave addressing
  1430. - gnulib: stdint: fix build with Android's Bionic fox x86
  1431. - gnulib: stdint: Improve support for Android.
  1432. - gnulib: stdint: Add support for Android.
  1433. - Check for ?e##toh macros independently from hto?e##
  1434. - If pthread_cancel is missing/emulated, set asynchronous thread cancel type on
  1435. stage, watchdog, watchpool, and longpoll threads since the emulation cannot
  1436. support deferred cancellation
  1437. - If pthread_cancel is missing (Bionic/Android), emulate it using pthread_kill
  1438. and pthread_exit
  1439. - configure: Intelligently detect what flags/libs get us working pthread, and
  1440. define HAVE_PTHREAD_CANCEL if pthread_cancel is available
  1441. - Bugfix: Initialize mutex_request to invalid so devices that don't use it
  1442. (bitforce) don't try to
  1443. - RPC: pools: Add "Message" to show last client.show_message received over
  1444. stratum
  1445. - Stratum: Support client.show_message method
  1446. - Don't retry without resume support, if the first attempt just timed out
  1447. - Bugfix: minerloop_async: Intelligently handle work updates and device disables
  1448. during transitions
  1449. - Bugfix: minerloop_async: Free old (unused) prepared work when replacing it
  1450. with an upgraded one
  1451. - Bugfix: Free pool sessionid before replacing it
  1452. - Bugfix: Stratum: Address dereference-after-free and memory leak introduced in
  1453. resume support
  1454. - Stratum: If old protocol fails as well, try to resume again next time around
  1455. - Bugfix: Stratum: Only failover to old mining.subscribe protocol if the
  1456. previous attempt was the new one (fixes a flood of retries)
  1457. - Try to extract the sessionid associated with mining.notify on 3rd level array
  1458. and submit it along with the userid to support mining resume, failing gracefully
  1459. and restarting if the pool rejects it.
  1460. - Cope with misread sessionid on stratum for now.
  1461. - Use the sessionid as passed on stratum connect to attempt to resume a
  1462. connection once and then clear it if it fails, to use a new connection.
  1463. - Move to storing the nonce1 in the work struct instead of the sessionid for the
  1464. now defunct first draft mining.resume protocol.
  1465. - Only continue submitting shares with mining.resume support on stratum when the
  1466. session id matches.
  1467. - Provide support for mining.resume with stratum, currently re-authorising after
  1468. successful resumption pending finalising of the protocol process.
  1469. - Provide basic framework for restarting stratum depending on whether resume
  1470. support exists or not.
  1471. - Abstract out the setting up of the stratum curl socket.
  1472. - Remove redundant setting of strings to NULL since the whole work struct is
  1473. zeroed.
  1474. - Only clear stratum shares mandatorily on stratum dropouts when the pool does
  1475. not support resume.
  1476. - Stratum: Keep trying to submit shares, even across reconnects
  1477. - Use new select loop primitives in submission thread
  1478. - Bugfix: Missing pool_no parameter to applog for no-stratum-sessionid debug
  1479. message
  1480. - Do as much outside of mutex locking of sshare_lock as possible.
  1481. - Remove last reference to struct work used outside the sshare_lock in
  1482. submit_work_thread
  1483. - Unlock the sshare_lock in submit_work_thread when all references to work and
  1484. sshare are complete.
  1485. - Bugfix: Copy and free sessionid on work objects
  1486. - Add timestamps to stratum_share structs as they're generated and copy the
  1487. stratum sessionid if it exists to stratum work generated.
  1488. - Store session id for stratum if the pool supports it for future mining.resume
  1489. support.
  1490. - Keep the unique id of each work item across copy_work to prevent multiple work
  1491. items having the same id.
  1492. - x6500: Never consider processors idle if they're enabled
  1493. - x6500: Make mutex management cleaner by blocking device select loop during
  1494. idle get_stats
  1495. - Bugfix: minerloop_async: Always refer to real thread for select loop
  1496. - Bugfix: Initialize work_restart_notifier[1] to INVSOCK instead of -1 to be
  1497. portable
  1498. - ztex: Use restart_wait to react quicker to work updates
  1499. - Handy TIMEVAL_USECS macro
  1500. - Restore blocking restart_wait function with nearly identical semantics as old
  1501. one
  1502. - Bugfix: bitforce: Rework sleep delay adjustment logic to properly deal with
  1503. more accurate timing readings (added in device API update)
  1504. - Hidden --force-rollntime option for getwork pools (use like --pool-priority,
  1505. after each pool definition)
  1506. - Include processor id in get_work logging
  1507. - Support for BIP23 BPE request target extension via new --request-diff option
  1508. - Hidden option to reduce "work update" messages to debug level:
  1509. --quiet-work-updates
  1510. - Change "work restart" to "work update" in messages to reflect reality more
  1511. accurately (no work is lost), and normalize case of "longpoll"
  1512. - HACK: Since get_work still blocks, reportin all processors dependent on this
  1513. thread
  1514. - Move FD_SETSIZE definition to configure so it affects everywhere it needs to
  1515. - Move absolute_uri function to util.c
  1516. - Remove now-unused blocking-wait code (restart_cond, restart_wait, and
  1517. stale_wait)
  1518. - Bugfix: bitforce: Zero hashes complete if we get an invalid response
  1519. - HACK: Since get_work still blocks, reportout all processors dependent on this
  1520. thread
  1521. - bitforce: Support for work queue protocol on BitForce SC devices
  1522. - Use new double-stage format for SC devices
  1523. - modminer+x6500: Expose frequencies to API in terms of MHz to be consistent
  1524. with ztex driver and cgminer
  1525. - bitforce: Replace (bool)cgpu->nonce_range with (enum)bitforce_data->proto
  1526. - bitforce: XLINK support for multiple processors
  1527. - bitforce: Prepare log messages for XLINK by separating into proc and dev
  1528. messages
  1529. - bitforce: Always use fd/mutex pointers on actual device, to prepare for XLINK
  1530. support
  1531. - bitforce: Get fd/mutex pointers only once per function
  1532. - bitforce: Abstract commands to bitforce_cmd1 (single-stage) and bitforce_cmd2
  1533. (double-stage) functions
  1534. - bitforce: Debuglog device information during detection
  1535. - Bugfix: Missing includes needed on Windows
  1536. - Bugfix: Use waddstr instead of wprintw to display completed device summary
  1537. line, so literal %s don't get interpreted as formatting options
  1538. - Bugfix: bitforce: Avoid polling continuously between work restart and job
  1539. completion
  1540. - bitforce: Use poll device API when job_get_results needs to wait
  1541. - bitforce: Use poll device API when job_start needs to wait
  1542. - stale_work_future function to determine in advance if a work/share will be
  1543. stale at some future time
  1544. - bitforce: Minimally refactor to adapt to new minerloop_async
  1545. - minerloop_async: Break out of select on work_restart_notifier
  1546. - Replace UNIX-only work_restart_fd pipe with portable work_restart_notifier
  1547. - Bugfix: Clean out unused variables from minerloop_async
  1548. - Move new device API code to new deviceapi.c source file
  1549. - Make minerloop_async more async, using some callbacks to handle event
  1550. completions
  1551. - Split part of minerloop_async into do_get_results, and a bit other
  1552. reorganization
  1553. - Abstract select_timeout function to convert a realtime timeval to a timeout
  1554. pointer for select()
  1555. - Split part of minerloop_async into do_process_results, and don't allow
  1556. api->job_get_results to return hashes
  1557. - Split part of minerloop_async into do_job_prepare and do_job_start
  1558. - Initialize thr->tv_poll to -1 (disabled)
  1559. - Update the hashmeter one last time before disabling a device
  1560. - minerloop_async: Break out of select for wakeup notifications
  1561. - Replace mining thread queues (which were only used for wakeup pings) with
  1562. notifiers (which can be used with select and co)
  1563. - Unify all mining thread wakeup to mt_enable (simplifying code)
  1564. - Bugfix: get_statline: Correct device summary status, only showing DEAD or OFF
  1565. if it affects all processors
  1566. - Working processor disable/enable with new async minerloop (currently gets
  1567. stuck if all processors disabled)
  1568. - Bugfix: get_statline: Only care about the processor status if
  1569. --show-processors is set
  1570. - Bugfix: watchdog: Use processor thr_info even if it isn't a real thread
  1571. - Only support thread-per-device or N-threads-per-processor; simplify
  1572. work_restart check
  1573. - x6500: Remove mutex, since driver is single-threaded now
  1574. - Bugfix: Update utility every get_statline call, and include every processor
  1575. involved
  1576. - HACKING: New text file to document the internal workings of (currently) the
  1577. device API
  1578. - Bugfix: mining_threads is now a total of thr_info objects, not necessarily
  1579. actual running threads
  1580. - x6500: Working (but incomplete) asynchronous/single-threaded driver
  1581. - Incomplete (but workable) asynchronous minerloop
  1582. - Core support for managing multiple processors from a single thread
  1583. - Allow device drivers to implement their own minerloop
  1584. - Move cgpu_info and thr_info initialization to main, and ensure all get
  1585. initialized before starting any threads
  1586. - Refactor and simplify miner_thread (no major behavioural changes)
  1587. - Move difficulties to end of share result message, so they can be made to line
  1588. up nicely
  1589. - Bugfix: Consolidate share result message code (including fixing displayed
  1590. hash portion for stratum)
  1591. - miner.php: Include ProcID in Device column as a letter
  1592. - Show summaries per-device unless --show-processors is used (also available on
  1593. Display TUI menu)
  1594. - Order next_proc linked list in processor id order
  1595. - Consolidate processor summary line generation for TUI and text-only modes
  1596. - RPC: Update to include ProcID so multiprocessor devices can be understood
  1597. correctly
  1598. - RPC: Common function for adding device-identifying fields
  1599. - modminer: Make single-processor statline look like other temperature-only
  1600. statlines
  1601. - modminer: Split each FPGA into its own logical processor (in the same device
  1602. still)
  1603. - modminer: Get mutex pointer only once per function
  1604. - ztex: Combine master+slave devices into a single multiprocessor device
  1605. - Preformat dev_repr (device representation) and proc_repr (processor
  1606. representation) once for use everywhere
  1607. - x6500: Split each FPGA into its own logical processor (in the same device
  1608. still)
  1609. - x6500: Get mutex pointer only once per function
  1610. - Minimal support for defining devices with multiple logical processors
  1611. - Rename all README files to standard README.* style
  1612. BFGMiner Version 2.10.6 - April 5, 2013
  1613. - Bugfix: Restore missing variable
  1614. - Bugfix: openwrt: Never include _ in platform name
  1615. - Bugfix: Fixed typo in bfgminer-rpc usage
  1616. - pool_active: Ensure temporary curl is always cleaned up
  1617. - Try to find jansson via pkg-config first, and fall back to checking system
  1618. defaults if that fails
  1619. - Attempt to find libjansson via pkg-config if AC_CHECK_LIB fails
  1620. - Update scrypt readme re drivers and sdk.
  1621. - Bugfix: README: Move --device out of GPU only options
  1622. - Update .gitignore
  1623. - Added bfgminer-rpc binary to .gitignore
  1624. - Bugfix: Actually change to the newly selected pool when statum is inactive and
  1625. it decides to change
  1626. - Bugfix: modminer: Properly fail on dynclock error
  1627. - Bugfix: opencl: Clean pc_data->work before freeing pc_data
  1628. - Bugfix: Correct order of libblkmaker libraries so static builds work
  1629. - Bugfix: Need to ensure __BIG_ENDIAN__ is defined before including uthash.h
  1630. - Bugfix: Stratum: When destroying cURL easy handle, be sure to clear pool
  1631. stratum_curl pointer
  1632. - Bugfix: bitforce: Fix warning
  1633. - Bugfix: Stratum: Properly handle non-integer "id" for client.get_version
  1634. requests
  1635. - json_dumps_ANY utility function to portably implement json_dumps(..., ... |
  1636. JSON_ENCODE_ANY)
  1637. - Bugfix: bitforce: Free old name when updating it on reinitialization
  1638. - Stratum: Include pool number in send/recv protocol logging
  1639. - Include pool number in stratum thread name
  1640. - API always report failed send() replies
  1641. - API.java allow partial reads
  1642. - Bugfix: Stratum: Use curl_easy_cleanup to close connection, so cURL
  1643. understands what is going on
  1644. - Bugfix: hash_pop: If a work should be rolled, use a clone of it rather than
  1645. consume a rollable work
  1646. - openwrt: Move Makefile into a bfgminer subdirectory to avoid symlinking issues
  1647. - openwrt: Use --with-curses=ncurses to avoid ncursesw dependency
  1648. - configure: Support --with-curses=FOO to look for curses implementation in
  1649. libFOO
  1650. - Set pool socket to INVSOCK after closing connection, just in case
  1651. - Clean up compiler warnings
  1652. - Bugfix: Check that pool is active one last time before selecting it
  1653. - Bugfix: Trim whitespace (like newlines) off the end of debug info from
  1654. libcurl
  1655. - Bugfix: submit_nonce: Backup the original work->blk.nonce since the miner
  1656. code uses it to track work consumption
  1657. - Bugfix: Scheduler needs to unpause disabled devices, even if it isn't waking
  1658. them up
  1659. - Bugfix: Use SOCKETTYPE for notifiers, to avoid potential overflow on Win64
  1660. - Bugfix: Some versions of MingW define localtime_r, but don't handle the
  1661. timeval.tv_sec case that we use; so undef any preexisting one and use our own
  1662. - Bugfix: reinit_gpu: Remember the selected device to correctly change
  1663. properties of
  1664. - Bugfix: cpu: reinit_device hasn't worked since 93b284d, so just remove it
  1665. entirely instead of letting it screw with thread 0
  1666. - Document necessity to run ldconfig and possibly configure ld.so
  1667. - Bugfix: Complete startup after just one pool is found active, no need to wait
  1668. for the rest
  1669. - Bugfix: Update links
  1670. - miner.php: Replace PGA dev number with concatenated device ID
  1671. - Bugfix: miner.php: Display devices with aligned columns instead of assuming
  1672. they come out of the RPC aligned
  1673. - Bugfix: miner.php: Silence PHP "local timezone" warning
  1674. - Bugfix: api-example: Try to use BSD sockets on any non-Windows platform
  1675. - Bugfix: stratum: Delay mining.get_transactions request until after auth has
  1676. succeeded, so its failure doesn't abort the connection (also avoids any delay
  1677. from a large result)
  1678. - --no-getwork option to disable getwork protocol support
  1679. - Clarify dependencies with Debian/Ubuntu package names
  1680. BFGMiner Version 2.10.5 - February 8, 2013
  1681. - Bugfix: Actually increment template_nonce when we use it
  1682. - Change file modes.
  1683. - Fix logic fail on partial writes with stratum send that was leading to corrupt
  1684. message submissions.
  1685. BFGMiner Version 2.10.4 - February 7, 2013
  1686. - New platform ports: OpenWrt and Win64
  1687. - Update official Windows build compiler and libraries:
  1688. - - Upgrade GCC from 4.6.3 to 4.7.2
  1689. - - Upgrade libusbx from 1.0.10 to 1.0.14
  1690. - - Upgrade jansson from 2.3.1 to 2.4
  1691. - - Upgrade libcurl from 7.26.0 to 7.28.1
  1692. - - Upgrade pthreads-win32 from 2.8.0 to 2.9.1
  1693. - Bugfix: Release libudev handle when ID_MODEL doesn't match what we're looking
  1694. for
  1695. - openwrt: Script to build for multiple platforms easily
  1696. - openwrt: Bitstreams should be "all" arch
  1697. - Working OpenWrt Buildroot Makefile
  1698. - Do not enable the pool disable on reject feature unless explicitly enabled
  1699. with --disable-rejecting.
  1700. - Check for calloc failure for completeness in gen_stratum_work.
  1701. - Cache the coinbase length to speed up stratum work generation.
  1702. - Cache the header length when generating stratum work to avoid calculating it
  1703. on every work generation, and to only need one alloc+sprintf, speeding up work
  1704. generation.
  1705. - Use heap ram for coinbase in gen_stratum_work, zeroing it before use.
  1706. - Provide a wrapper for aligning lengths of size_t to 4 byte boundaries.
  1707. - Bugfix: ztex: While 1.15y can finish highspeed FPGA config immediately, at
  1708. least 1.15x needs some delay
  1709. - Use CURLOPT_OPENSOCKETFUNCTION to intercept the socket being created for
  1710. stratum, in order to workaround CURLINFO_LASTSOCKET breakage on Win64
  1711. - make-release: Update for Win64 and bfgminer-rpc.exe
  1712. - Use localtime_r instead of localtime, including a Windows implementation that
  1713. handles Win64's broken struct timeval.tv_sec
  1714. - Use standard execv arg type on Win64
  1715. - Bugfix: Correct various size mismatches
  1716. - Ensure winsock2.h is always included before windows.h
  1717. - Bugfix: Add necessary Winsock library to bfgminer-rpc linking
  1718. - Bugfix: Remove dependencies of compat.h on miner.h for Windows (moves
  1719. timersub/timeradd to compat.h where it belongs)
  1720. - modminer: Raise default/maximum clocks to 210 and 250 respectively
  1721. - modminer: Use better-performing X6500 overclocker bitstream
  1722. - Disable libusb linkage/usage when neither X6500 nor ZTEX support is desired
  1723. - Add support for "--scan-serial all" via simply globbing /dev
  1724. - fpgautils: serial_autodetect implementation using sysfs
  1725. - fpgautils: Unified serial_autodetect function to find a serial device
  1726. regardless of the underlying method
  1727. - fpgautils: Look for bitstreams in ../share/bfgminer/ too
  1728. - Bugfix: Ensure curses library is always linked in NCURSES_LIBS, to avoid
  1729. unnecessary dependencies for (non-curses) tools
  1730. - Bugfix: GBT: work->data is always little-endian, but libblkmaker wants the
  1731. nonce in native-endian
  1732. - Bugfix: cpu: Corrections necessary to get 'c' and 'cryptopp' algorithms
  1733. working on big endian
  1734. - Bugfix: Sanity check for bits exponent in real_block_target
  1735. - Bugfix: cpu: Increment nonce after checking (rather than before), to avoid
  1736. skipping the first nonce of each scanhash call
  1737. - cpu: via: Only swap back the nonce, rather than all data
  1738. - cpu: Minor optimization by checking H==0 before calling fulltest
  1739. - Bugfix: Skip yasm check when building for non-x86 platforms
  1740. - Allow --scantime alias to --scan-time
  1741. - Build bfgminer-rpc program from api-example.c
  1742. - Bugfix: Remove miner.h include from api-example.c since it isn't needed and
  1743. pulls in libblkmaker
  1744. - Make wrapping consistent at 79-80 characters per line
  1745. - Bugfix: Correct numerous misspellings, typos, etc
  1746. - Bugfix: Prefer using a non-frozen mining thread for watchdog
  1747. - Bugfix: x6500: Expose x6500_fpga_data even if JTAG reset/detect fail, since
  1748. it is still used to store temperature info if the other FPGA initializes
  1749. - Adding ZTEX Windows guide from Jason Snell
  1750. BFGMiner Version 2.10.3 - January 22, 2013
  1751. - Revert "x6500: Whenever we get a hardware error, purge buffers just in case
  1752. of read/write desync"
  1753. - Bugfix: libblkmaker: Check that zero-padding on base58check input matches
  1754. output (needed to properly reject addresses with too many or too few prefix/pad
  1755. '1's)
  1756. - Bugfix: Free bin2hex output in __update_block_title
  1757. - Bugfix: Allocate space for the terminating null byte on new current_hash
  1758. - Display tail end of prevblock hash rather than start+32bits
  1759. - Try to extract block height from coinbase scriptSig, when mining stratum
  1760. - Display next block height when using GBT
  1761. - Use suffixes for target-difficulty also, in share accept/reject loglines
  1762. - Bugfix: Implement common target_diff function, fixing scrypt-specific bugs in
  1763. and simplifying common code shared by set_blockdiff, calc_diff, and share_diff
  1764. - Set DISPLAY to :0 by default (on non-Windows)
  1765. - Bugfix: Reset pool bytes received when zeroing stats
  1766. - miner.php trim trailing zeros on some of the STATS numbers
  1767. - Semi-Cherrypick: API stats - include pool network bytes + in miner.php
  1768. - Best Share readme
  1769. - API zero - zero statistics - all or bestshare - with optional on screen
  1770. summary
  1771. - api.c pgaenable not re-enabling the device - plus related debug
  1772. - diffexactone pool diff1 used for share value calculation is ffffffff... not
  1773. 100000000... :P
  1774. - miner.php user/pass fix 'usr' is readonly
  1775. - miner.php optional user/pass login restrictions
  1776. - zero (most) API stats
  1777. - Remember best share per pool and return in API pools
  1778. - ztex: precheck the secondary solutions to avoid hw errors the ztex bitstreams
  1779. gives back the latest checked nonce and its hash7 value and two possible
  1780. solutions.
  1781. - Bugfix: configure: if blocks require at least one command, so fill with true
  1782. - Bugfix: Only log stratum resume if it was actually "idle" before
  1783. - Zero the best share string memory when zeroing stats.
  1784. - Change the pool stratum socket buffer to new cgminer implementation, to
  1785. allocate it in a grow-only fashon and reduce virtual memory fragmentation at
  1786. the expense of CPU time.
  1787. - Differentiate socket full from sock full.
  1788. - Allow stratum to startup without notify but check it is valid before creating
  1789. stratum work.
  1790. - Do not try to generate stratum work unless the notify command has succeeded.
  1791. - Document Mac OS X configure usage with Homebrew pkg-config path
  1792. - Clean up post-configure display of compile environment
  1793. - Bugfix: If native ncurses detection fails, print "none?" result before moving
  1794. on to try AC_SEARCH_LIBS scan
  1795. - Fix more printf-format non-compatibilities
  1796. - Update windows-build.txt
  1797. BFGMiner Version 2.10.2 - December 27, 2012
  1798. - Update documentation to include block difficulty
  1799. - Reset all stats when requested
  1800. - Reset total diff1 shares when zeroing stats as well to show correct work
  1801. utility.
  1802. - Update documentation.
  1803. - Parse anything in the stratum socket if it's full without waiting. Empty the
  1804. socket even if a connection is not needed in case there are share returns.
  1805. - Provide a mechanism to zero all the statistics from the menu.
  1806. - Display the current pool diff in the status line.
  1807. - Display block diff in status line.
  1808. - Generalise the code for solving a block to enable block solve detection with
  1809. scrypt mining.
  1810. - Generate the output hash for scrypt as well and use the one function to set
  1811. share_diff.
  1812. - Use one size for scratchbuf as a macro in scrypt.c
  1813. - Remove the unused sha224 functions.
  1814. - Check staged_rollable under staged lock, when cloning available work.
  1815. - scrypt_diff uses a uint64_t as well.
  1816. - Correct target for stratum support with scrypt mining.
  1817. - Bugfix: Ensure nonces are put in data as little-endian in test_nonce*
  1818. - Add low-level debugging info for data_buffer (some only enabled with
  1819. -DDEBUG_DATABUF)
  1820. - Make all_data_cb fwrite-compliant by returning nmembs, and check for unlikely
  1821. overflows
  1822. - Bugfix: Need to do extract_sockaddr before trying to initiate stratum
  1823. (erroneous http URI usage, except at startup)
  1824. - Bugfix: Update last GBT work in pool_active before staging it, since otherwise
  1825. it could possibly be consumed before we copy it
  1826. - Bugfix: Address Windows-specific formatting issues (including lack of support
  1827. for %ll*)
  1828. - Bugfix: ztex: Correct formatting for reset failure error
  1829. - ztex: Fix formatting in a debug message
  1830. - cairnsmore: Don't bother timing dynclock detection, since there's no standard
  1831. way to log it accurately
  1832. - Correct formatting in FPGA drivers
  1833. - opencl/adl: Fix formatting to fit strict rules
  1834. - Explicitly cast all_data.buf to char* for debug printing
  1835. - Follow strict time_t handling rules
  1836. - Use GNU format-checking attribute when available for applog
  1837. BFGMiner Version 2.10.1 - December 21, 2012
  1838. - libztex: fixed a typo
  1839. - libztex: check returnvalue of libusb_claim_interface() and release the
  1840. interface in case of early exit
  1841. - Bugfix: submissions: Skip FD_ISSET when fd==-1 (let the next select setup deal
  1842. with cleaning them out)
  1843. - Bugfix: Remove sws from write_sws list when discarding it due to pre-send
  1844. stratum disconnection
  1845. - Bugfix: Shutdown stratum socket when initiate fails, so it doesn't linger
  1846. - Bugfix: Clear stratum receive buffer when initializing, in case there was
  1847. extra unprocessed data in it from a previous connection
  1848. - Stop all work from the current pool if it's a stratum pool once it is
  1849. disconnected since it will be invalid upon reconnecting.
  1850. - Discard all staged work from stratum pools as well as the shares upon
  1851. disconnection since all the work becomes invalid.
  1852. - Use correct cbreak after 15 second delay when no pool is found alive.
  1853. - modminer: Set default clock frequency to user request so it sticks better
  1854. - modminer: Make valid frequency range consistent: 2-230
  1855. - Allow stratum to work with scrypt.
  1856. - MMQ add api pgaset for clock
  1857. - API V1.23 - new pgaset command, to be used soon
  1858. - Protect the best_share/best_diff values under control lock.
  1859. - Bugfix: modminer: Return failure to change frequency when device reports it
  1860. - opencl: Look in the right place for OpenCL library on Mac OS X
  1861. - Bugfix: AC_C_BIGENDIAN is reported to have problems, and invasive even if
  1862. buried in a conditional, so don't use it
  1863. - Bugfix: Check for bswap_* first, to avoid redefinition based on other variants
  1864. - Bugfix: autoheader isn't smart enough to figure out variable defines, so use
  1865. AH_TEMPLATE for each possible header
  1866. - Check a stratum pool hasn't gone dead while being a backup pool and missed
  1867. having its idle flag cleared.
  1868. - Fix null pointer issue when one chip on an X6500 is not initialized yet when
  1869. reading temperature.
  1870. - Hot-patch broken libcurl pkgconfig CFLAGS found in libcurl's Windows binaries
  1871. - Update OpenCL 1.2 headers from http://www.khronos.org/registry/cl/api/1.2/
  1872. - Reorganize detection of platform byteswap macros and endian to be more robust
  1873. using autoconf
  1874. - Move new bandwidth-based Efficiency to status line
  1875. - Replace work-based efficiency with new bandwidth-based efficiency
  1876. - Bugfix: Pull out GBT request collapsing since it is no longer needed with new
  1877. get_work main loop
  1878. - Bugfix: Free unused work when waiting on external GBT request
  1879. - README: Explicitly mention automake dependency
  1880. - README: Update AMD APP SDK URIs
  1881. - Bugfix: Free shares discarded before beginning submission
  1882. - Bugfix: Discard stratum shares waiting for a writable socket, if the pool
  1883. disconnects in the meantime
  1884. - Bugfix: Always let watchpool thread handle dead pool recovery (including for
  1885. stratum-only pools)
  1886. - Bugfix: Avoid lingering stratum_auth when connection is lost
  1887. - API-README explain custom page extensions in miner.php
  1888. - miner.php add a sample group pool report
  1889. - miner.php allow where,group,having on cumstom pages
  1890. - Bugfix: Hook CURLOPT_DEBUGFUNCTION to count actual bytes sent/received by
  1891. libcurl
  1892. - Bugfix: Reset pool transparency_time when connecting to stratum
  1893. - Bugfix: Immediately discard shares found on disconnected stratum pools, since
  1894. there is no way to submit them
  1895. - Bugfix: Decrement total_submitting when stale shares are discarded before any
  1896. submission attempts
  1897. - Bugfix: Only try to compare stratum job_id for work that has a job_id (ie,
  1898. ones that came from stratum)
  1899. - Bugfix: Recheck has_stratum even if the pool hasn't changed, in case pool has
  1900. switched to another protocol in the process; also only delay 5 seconds before
  1901. retry if pool is the same
  1902. - Bugfix: Try GBT if no pool protocol is known (can occur in the process of
  1903. stratum failover to GBT)
  1904. - Bugfix: Correctly track discarded stratum shares, and log them as "disconnect"
  1905. in sharelog
  1906. - Check for EWOULDBLOCK when supported in send and recv as well.
  1907. - Use the raw send() command instead of curl_easy_send since curl raw socket
  1908. usage introduces random bugs on windows.
  1909. - Use raw recv() command in place of curl_easy_recv since the curl
  1910. implementation introduces random bugs on windows builds when the recv fails.
  1911. - miner.php when displaying a single rig, add prev/next rig buttons if they
  1912. exist, next to refresh
  1913. - miner.php allow custom page joins for STATS
  1914. - miner.php - include windows easyphp link
  1915. - driver-ztex: use the correct size for the swap array
  1916. - API stats - display pool byte transfer stats
  1917. - Pool store data transfer stats
  1918. - Benchmark incorrect work size
  1919. - ChangeLog refer to NEWS
  1920. - driver-ztex: search the complete noncerange based on the actual speed
  1921. - API-README update
  1922. - api use a dynamic io buffer, truncated before it reaches the current ~64k
  1923. limit
  1924. BFGMiner Version 2.10.0 - December 11, 2012
  1925. - Bugfix: Free work before replacing it with clone
  1926. - Bugfix: Since we are using pipes for select notifier on *nix, we need to use
  1927. read/write there
  1928. - Bugfix: Winsock needs send/recv for sockets, not write/read
  1929. - Bugfix: opencl: Initialize pc_data to avoid clean_work checking uninitialized
  1930. pointers
  1931. - Bugfix: Correct parenthesis in bind() call in Windows notifier_init
  1932. - Include Windows error messages in notifier_init errors
  1933. - Include prctl header for thread renaming to work.
  1934. - Set tv_idle time if a pool is not active when input from the menu.
  1935. - minor unlikely zero pointer test
  1936. - BeaverCreek doesn't like BFI INT patching.
  1937. - Only stratum pools that are idle need to be kicked via cnx_needed.
  1938. - Do not do any setup if opt_api_listen is disabled in api.c.
  1939. - libztex: in case the selectFpga() failed set the selected fpga to unknown
  1940. - Only set the lagging flag for select_pool() on failed getwork if we're not in
  1941. opt_fail_only mode.
  1942. - driver-ztex: support for broken fpga on a multifpga board
  1943. - libztex: use a function for the twice called firmware reset code
  1944. - libztex: removed an unused struct member (ztex->valid)
  1945. - Set the pool lagging flag on startup to avoid it being shown initially, and
  1946. only unset it once the maximum number of staged work items has been reached.
  1947. - libztex: Include compat.h for substitute libusb_error_name (on older libusb
  1948. versions missing it)
  1949. - Suppress warning about "succeeded" not being used in finish_req_in_progress
  1950. for now
  1951. - Bugfix: Always give the get_work thread a curl, regardless of other
  1952. outstanding curls in use
  1953. - Bugfix: Failover after even a single job-request failure (or else it takes
  1954. too long on timeouts)
  1955. - Bugfix: Need to remove and re-add curl easy handles from multi to start a new
  1956. request
  1957. - Access total_submitting under mutex lock to avoid any potential races, and
  1958. increment it as soon as we queue the submission up
  1959. - Just leave the submit_work thread running persistently
  1960. - Bugfix: Restore work->pool after prepare_rpc_req since clean_work now clears
  1961. it
  1962. - Bugfix: Now that stage_work is trying to manipulate staged_work in the same
  1963. thread, clone_available needs to stage it outside of its own lock
  1964. - Make main() the getwork scheduler once everything is set up, so that all app
  1965. exits use the kill_work and quit paths.
  1966. - Set successful connect to true on auth stratum to allow summary on exit from
  1967. single stratum pool.
  1968. - Hash_pop should signal further waiters on its own pthread conditional in case
  1969. there are multiple waiters.
  1970. - Check the job_id has not changed on stratum work when deciding if the work is
  1971. stale as might occur across disconnections.
  1972. - Perform pool_resus on getwork pool that generates work in getwork_thread.
  1973. - Set pool lagging message for getwork pool that falls to zero staged in getwork
  1974. thread.
  1975. - Stage extra work when the primary pool is a getwork pool without rolltime.
  1976. - Do not try to clean up twice if kill message is given.
  1977. - Only recalculate total_staged in getwork thread if required.
  1978. - Include the correct config header in libztex and include it before other
  1979. includes.
  1980. - Implement a completely new getwork scheduler. Stage all work from the one
  1981. thread, making it possible to serialise all requests minimising the number of
  1982. getworks requested or local work generated. Use a pthread conditional to wake up
  1983. the thread whenever work is removed to generate enough work to stay above the
  1984. watermark set by opt_queue. Remove all remnants of the old queueing mechanism,
  1985. deleting the now defunct queued count.
  1986. - Bugfix: Clean up share hashing and target checks, fixing share difficulty
  1987. calculation for above-target would-be-shares
  1988. - Use templates from pool_active and longpolls without fetching more
  1989. unnecessarily
  1990. - Try to avoid requesting GBT jobs when there is already a request in progress
  1991. that will likely provide sufficient work
  1992. - Reuse most recent GBT job if in get_work_thread if it isn't stale
  1993. - libztex: fixed some warnings and removed some whitespaces
  1994. - Remove all references to the now unused workio_cmd structure.
  1995. - Remove the old workio command queue thread, replacing it with a kill
  1996. conditional to exit the program.
  1997. - Remove getwork command from workio_cmd queues and do them directly from
  1998. queue_request.
  1999. - Begin tearing down the old workio command queues by removing submit commands
  2000. from there and submit them asynchronously via their own threads.
  2001. - driver-ztex: changed two pairs of malloc()/memset() to calloc()
  2002. - libztex: Read bitstream file in 2kb blocks with simpler and faster code
  2003. - Added the binary versions of ztex_ufm1_15d4.ihx and ztex_ufm1_15y1.ihx
  2004. - libztex: Add firmware download support for ZTEX 1.15d and 1.15x
  2005. - libztex: Factor out local version of libusb_get_string_descriptor_ascii()
  2006. - libztex: Don't return error when a bitstream was already configured
  2007. - libztex: Read bitstream file in 64kb blocks with simpler and faster code
  2008. - libztex: Verify that the mining firmware is not a dummy firmware
  2009. - libztex: Match mining firmware ZTEX descriptor against the dummy firmware
  2010. - libztex: Start download sequence only after reading in the new firmware
  2011. - libztex: Download mining firmware to all devices with dummy firmware
  2012. - Update windows build instructions.
  2013. - Set pool probed to true on successful authorisation with stratum to avoid it
  2014. being pinged later.
  2015. - Style changes.
  2016. - Allow pool active to be called on stratum or disabled pools in the watchpool
  2017. thread if the pool has not been probed.
  2018. - lock (most of) the threaded statistics updates
  2019. - README stats don't add up
  2020. - Rearrange summary lines and include count of active submissions in progress
  2021. - Defer submissions instead of blocking in pop_curl_entry
  2022. - Run a single share submission thread asynchronously submitting all shares in
  2023. parallel
  2024. - Handle share submissions asynchronously, one at a time (still threaded)
  2025. - Split up json_rpc_call so it can be used asynchronously in libcurl-multi
  2026. - Split submit_upstream_work into _request and _completed stages, pulling out
  2027. json_rpc_call
  2028. - Bugfix: Adjust USB_* variables to new LIBUSB_* names
  2029. - Bugfix: Avoid double-free due to realloc_strcat moving memory around
  2030. - Bugfix: Stratum connections might be needed for share submissions up to a
  2031. minute after the last time they are used to generate work
  2032. - Bugfix: Clean work before trying to generate new stratum work on top of it
  2033. - Bugfix: modminer: Get rid of useless usbutils include
  2034. - Make need connection return true if a pool is idle.
  2035. - New --skip-security-checks option to allow miners to skip checks when it
  2036. saves bandwidth
  2037. - Skip stratum transaction download when there are no transactions
  2038. - API add Best Share to summary
  2039. - API lock access to some summary statistics (and copy them)
  2040. - Enable backup stratum connections for getwork when the primary pool doesn't
  2041. have longpoll aka solo mining.
  2042. - Check for correct absence of opt_fail_only in cnx_needed.
  2043. - Remove unused variable.
  2044. - The specification for stratum has been elaborated to say that a changed diff
  2045. applies only to new work so do not retarget when submitting shares.
  2046. - Suspend stratum connections to backup pools when there is no requirement to
  2047. potentially grab work from them.
  2048. - Rename rename_thr to RenameThread to match cgminer
  2049. - modminer: Adopt symbolic command names from kanoi
  2050. - Make gen_stratum_work more robust by using a dynamically allocated array for
  2051. the header in case bogus data is sent by the pool to avoid overflowing a static
  2052. array.
  2053. - scrypt_diff now returns a uint64_t
  2054. - Support monitoring and reporting much higher diffs for scrypt mining,
  2055. truncating irrelevant zeroes from displayed hash.
  2056. - Pass ostate values around in scrypt to be able to extract full hashes if
  2057. needed later on.
  2058. - Revert "Handle crash exceptions by trying to restart cgminer unless the
  2059. --no-restart option is used."
  2060. - Provide helper function realloc_strcat to extend arbitrary length arrays
  2061. based on string length.
  2062. - Use base_work for comparison just for cleanness in __copy_work
  2063. - Remove all static work structs, using the make and free functions.
  2064. - Add pool no. to stale share detected message.
  2065. - Add info about which pool share became stale while resubmitting.
  2066. - Reduce extra slots in the max backlog for ztex to minimise memory waste.
  2067. - Get rid of unused last_work in opencl thread data.
  2068. - Do away with the flaky free_work api in the driver code which would often lose
  2069. the work data in opencl and simply flush it before exiting the opencl scanhash.
  2070. - Minor work handling restructure, including moving some stratum data from
  2071. fixed-size buffers to their own heap allocations.
  2072. - opencl: Use new dev_error function for REASON_DEV_NOSTART
  2073. - Provide rudimentary support for the balancing failover strategies with stratum
  2074. and GBT by switching pools silently on getwork requests.
  2075. - Convert remaining modminer and bfl uses of usleep to nmsleep.
  2076. - Convert libztex to nmsleep where possible.
  2077. - Convert unreliable usleep calls to nmsleep calls in ztex driver.
  2078. - Tidy up device error counts
  2079. - Only increase gpu engine speed by a larger step if the temperature is below
  2080. hysteresis instead of increasing it to max speed.
  2081. - Convert pool not responding and pool alive message on backup pools to verbose
  2082. level only since they mean a single failed getwork.
  2083. - Use stratum block change from backup pools as an alternative to longpoll for
  2084. pools that don't support LP.
  2085. - Round some more static string arrays to 4 byte boundaries.
  2086. - There is no need for the static arrays to be larger than required, so long as
  2087. they're 4 byte aligned to appease ARM.
  2088. - Hash1 is only used by the CPU mining code and never changes so remove it from
  2089. the work struct and bypass needing to process the value for all other mining.
  2090. BFGMiner Version 2.9.5 - December 11, 2012
  2091. - Bugfix: Copy share hash to work->hash before doing 4-byte flip required by
  2092. fulltest
  2093. - driver-ztex: libztex_setFreq() must be called before ztex_releaseFpga()
  2094. - libztex: Make log messages say bitstream when refering to bitstreams
  2095. - Increase FD_SETSIZE to 4096 on Windows
  2096. - Bugfix: Use AC_PROG_CPP in libusb include subdirectory detection for improved
  2097. portability
  2098. - Bugfix: Free input memory after prioritising pools in TUI
  2099. - Bugfix: Free filename entry for writing config file when done with it
  2100. - Bugfix: Free stratum nonce1 before replacing it with new value on reconnect
  2101. BFGMiner Version 2.9.4 - December 4, 2012
  2102. - Update libblkmaker to 0.2.1
  2103. - Count template number, and append it to the coinbase of templates without any
  2104. cbtxn
  2105. - Bugfix: bitforce: Always increment global hw error counter when incrementing
  2106. device hwe
  2107. - Bugfix: Correct order of printf-style arguments in cbappend fail
  2108. - Bugfix: Capitalize "MHz" correctly
  2109. - ztex: Correctly release mutex and reset FPGA if configuration fails
  2110. - ztex: Harmonize low-speed FPGA configuration code with high-speed code
  2111. - libztex: Silence warning: comparison between signed and unsigned
  2112. - Count longpoll decodes as queued work since the count otherwise remains
  2113. static.
  2114. - Bugfix: Assign header-based rolltime before decoding work, so GBT expires
  2115. overrides it properly
  2116. - Look for libusb_init in -lusb, since FreeBSD has it there
  2117. - Bugfix: Use pkgconfig for libusb when available, and try to guess the include
  2118. path if not
  2119. - Bugfix: FPGA-README: Correct idVendor in example MMQ udev rule
  2120. - fixes target calc for mips openwrt
  2121. - Bugfix: clear_work: Whether the template is in fact being freed or not, the
  2122. work reference to it needs to be
  2123. - libztex: Work around ZTEX USB firmware bug exposed by the FreeBSD libusb
  2124. - README: Document solo mining usage
  2125. - README: Update dependencies
  2126. - Bugfix: We should never roll stale work
  2127. - Ubuntu: Removing erroneous libssl dep again. GITHUB#94
  2128. - Bugfix: Clear out stratum share work before freeing it
  2129. - Provide rudimentary support for literal ipv6 addresses when parsing stratum
  2130. URLs.
  2131. - Do not attempt to remove the stratum share hash after unsuccessful submission
  2132. since it may already be removed by clear_stratum_shares.
  2133. BFGMiner Version 2.9.3 - November 16, 2012
  2134. - Bugfix: Properly process new stratum jobs through test_work_current, even if
  2135. old shares are still accepted, and copy submit_old flag correctly
  2136. - Ensure pdiff 1 is always caught regardless of bdiff precision, and ceil all
  2137. other cases to ensure we never lose valid shares
  2138. - Check against a double for current pool diff.
  2139. - Support for fractional diffs and the classic just-below-1 share all FFs diff
  2140. target.
  2141. - Check share target diff for best_share to be calculated when solo mining.
  2142. - Store the full stratum url information in rpc_url for correct configuration
  2143. file saving.
  2144. - Put in a hack to prevent dud work from sneaking into test_work_current being
  2145. seen as a new block.
  2146. - Reset the work->longpoll flag where it will affect stratum work items as
  2147. well.
  2148. - Bugfix: Stratum does not guarantee notify messages every minute, so extend
  2149. timeout to 2 full minutes
  2150. - Bugfix: Always honour libblkmaker time limits
  2151. - Always (debug)log when stratum template is updated by the pool
  2152. - Bugfix: When a stratum connection is interrupted, ensure all work/shares for
  2153. it are considered stale
  2154. - Bugfix: clear_sock should return on socket errors
  2155. - Bugfix: Force calculation of work_difficulty since set_work_target fails to
  2156. consider the pdiff<bdiff difference
  2157. - Bugfix: Minimal support for handling real difficulties from stratum server
  2158. - Bugfix: Never consider shares to be accepted if the submission response is an
  2159. error
  2160. - Bugfix: Always fail scrypt detection if Stratum is chosen
  2161. BFGMiner Version 2.9.2 - November 7, 2012
  2162. - Add endian swap defines for where missing.
  2163. - Only retarget stratum shares to new pool diff if diff has dropped.
  2164. - Bugfix: x6500: Use json_object_set_new to correctly count references to
  2165. per-FPGA RPC data
  2166. - Bugfix: modminer: Use json_object_set_new to correctly count references to
  2167. per-FPGA RPC data
  2168. - Bugfix: Only append newline when printing protocol data
  2169. - Bugfix: Use memchr to look for newlines in socket line data, since the buffer
  2170. isn't null terminated
  2171. - Bugfix: Ensure GETWORK_MODE_GBT isn't replaced with GETWORK_MODE_POOL
  2172. - Count lost stratum share submits and increase message priority to warning.
  2173. - Show which pool untracked share messages have come from.
  2174. - Sleep 5 seconds before retrying submit.
  2175. - Changes to build prototypes to support building on FreeBSD 9.1-RC2 amd64
  2176. - Count lost shares with stratum as submit stale lost.
  2177. - Discard record of stratum shares sent and report lost shares on disconnection
  2178. since they will never be reported back.
  2179. - Check that count of transactions received via stratum is reasonable
  2180. - Use realloc'd data_buffer to support stratum lines longer than 8 KB, and
  2181. parse stratum responses during auth
  2182. - Use mining.get_transactions to check for stratum pool transparency (actual
  2183. response ignored for now)
  2184. - ztex: Silence false "unexpected" hardware errors, and don't count them as hw
  2185. errors
  2186. - README: Update build instructions to reflect current reality
  2187. - x6500: Expose per-FPGA details to RPC API
  2188. - x6500: Implement support for --temp-target
  2189. - x6500: Increase default clock frequency to 200 Mhz, now that new bitstream
  2190. seems to run well around that
  2191. - x6500: Flush nonces in FPGA buffer at initialization to avoid false hw errors
  2192. on restart
  2193. - x6500: Release device lock sooner during initialization, before logging
  2194. initial frequency info
  2195. - x6500: Read temperature sensors after sending work, when enabled
  2196. - Bugfix: jtag: Fix optimized register reading code (it was reading an extra
  2197. bit before the last, corrupting outside the buffer)
  2198. - Implement new --force-dev-init option to force bitstream upload to modminer
  2199. and x6500 devices
  2200. - Bugfix: x6500: Include --scan-serial option even for x6500-only builds
  2201. - Bugfix: ztex: Include --scan-serial option even for ztex-only builds, so it
  2202. can be used to disable autodetect if needed
  2203. - FPGA-README: Discuss X6500 --scan-serial usage of cases where it may be
  2204. needed
  2205. - ft232r: If we are searching for a specific serial, pay no attention to the
  2206. product id
  2207. - x6500: Try a more flexible approach to applying dynclock logic
  2208. - Bugfix: dynclock: Use standard C struct initializer to handle initialization,
  2209. instead of memsetting memory to nulls
  2210. - x6500: Whenever we get a hardware error, purge buffers just in case of
  2211. read/write desync
  2212. - Bugfix: x6500: When purging ft232r buffers (during bitstream upload), also
  2213. clear JTAG delayed read counter to avoid any potential desync
  2214. - Bugfix: ft232r: Always flush writes before purging buffers, and empty local
  2215. read buffer when flushing ftdi read buffer
  2216. - There is no need for addrinfo any more.
  2217. - Fix filename for x6500 bitstream to match previous commit's rename
  2218. - Rename x6500 bitstream to match existing licensing naming setup
  2219. - x6500 dual temp sensor support
  2220. - x6500 is far more stable with its own bitstream
  2221. BFGMiner Version 2.9.1 - October 30, 2012
  2222. - When we find a block, always progress to it for mining
  2223. - Bugfix: Enforce --expiry, but split --expiry-lp for a longer expiry on
  2224. longpoll setups
  2225. - Bugfix: regeneratehash needs to compare hash segments in Little Endian, not
  2226. Big Endian
  2227. - Bugfix: Always fail scrypt detection if Stratum is working
  2228. - Bugfix: Scan for ft232r devices later, after console lock and other mutexes
  2229. are initialized properly
  2230. - ft232r: Debuglog non-FTDI device IDs found
  2231. - Bugfix: Wait to release JSON result in case of JSON-RPC error until we've
  2232. logged the error
  2233. - Bugfix: RPC: Defer release of JSON until after cmd is used
  2234. - Bugfix: Release JSON result in case of JSON-RPC error
  2235. - Bugfix: Release job JSON result as soon as we are done using it
  2236. - Bugfix: Release JSON received from RPC socket after we're done using it
  2237. - Bugfix: Use clear_work and workdup everywhere work is copied around
  2238. - Bugfix: Clear work before replacing it with new, to free any pointers
  2239. - server and client sockaddr_in are no longer used in struct pool.
  2240. - Set sshare id and swork_id within the sshare mutex to avoid multiple share
  2241. submits with the same id.
  2242. - Bugfix: Really use freeaddrinfo to clean up in extract_sockaddr
  2243. - Update documentation for X6500
  2244. - Bugfix: Free unused JSON returned when switching to Stratum
  2245. - Bugfix: Free unused work when switching to Stratum instead
  2246. - Bugfix: Use freeaddrinfo to clean up in extract_sockaddr
  2247. - RPC: Include PGA support for X6500-only builds
  2248. - RPC: Abstract code to handle any new device drivers as PGAs without special
  2249. support
  2250. - Bugfix: Release GBT submission JSON objects after dumping them
  2251. - Bugfix: Free old stratum_work data before replacing it
  2252. - Bugfix: Release memory allocated by prior stratum sockaddr extractions
  2253. - Bugfix: Clear work template when preparing a new request
  2254. - Bugfix: Initialize temporary stratum work
  2255. - Bugfix: x6500: jtag_read buffer needs to be initialized since reading JTAG
  2256. implies writing too
  2257. - Replace now-redundant accepted_weighed with equivalent diff_accepted
  2258. - Fail on select() failing in stratum thread without needing to attempt
  2259. recv_line.
  2260. - Add share to stratum database before sending it again in case we get a
  2261. response from the pool before it's added.
  2262. - Bugfix: modminer: Check that we have a valid fd before trying to start work
  2263. - Shorten the initiate stratum connect timeout to 30 seconds.
  2264. - Shorten the stratum timeout on read to 90 seconds to detect unresponsive pool.
  2265. - Display best share difficulty on exit.
  2266. - Make stratum socket fail more robust on windows by disabling the send buffer.
  2267. - Reuse the same curl handle forcing a new connection instead of risking
  2268. derefencing.
  2269. - Add information about submission failure to stratum send.
  2270. BFGMiner Version 2.9.0 - October 28, 2012
  2271. - modminer: Remove dead code
  2272. - Bugfix: Include headers in order needed for Mingw build
  2273. - Bugfix: Save pool pointer to avoid dereferencing work after it might
  2274. potentially be freed
  2275. - Bugfix: Cleanup some harmless warnings
  2276. - Bugfix: TUI: Avoid clearing the whole screen when we just want to clear the
  2277. log window
  2278. - Wishlist #130 implemented by "blinkier":
  2279. - - Add all-at-once pool priority reassignment to curses TUI interface
  2280. - - Save/restore pool priorities in config file
  2281. - - Allow setting initial pool priorities via command line
  2282. - Bugfix: Replace reportin hack with a reset back to LIFE_INIT for bitstream
  2283. upload
  2284. - Bugfix: SI kilo prefix is a lowercase "k"
  2285. - Bugfix: If userpass is missing a password, treat it as a null password
  2286. (regression fix)
  2287. - Upgrade libblkmaker to 0.2.0
  2288. - Bugfix: Build correct pay-to-scripthash script
  2289. - Implement --coinbase-addr for solo mining
  2290. - x6500: Since we program in about a minute now, only report status verbosely
  2291. every 25%
  2292. - x6500: Poll nonce less often since USB latency slows us down anyway
  2293. - jtag: Avoid writing an extra readback byte when we are ignoring tdo anyway
  2294. - ft232r: Set output buffer size to 4096 bytes
  2295. - x6500: Adjust dynclock so it works more reasonably
  2296. - x6500: Dynclock support
  2297. - Provide a simple/dummy libusb_error_name when it is missing (libusb < 1.0.9)
  2298. - x6500: Stop abusing pointer type to store bitstream upload progress
  2299. - Bugfix: ft232r: Avoid reuse of USB device count variable
  2300. - x6500: Implement basic hashrate prediction and efficient job completion
  2301. - jtag: Optimized implementation of JTAG reads to workaround ft232r slowness
  2302. - x6500: Try nonce with previous work if it is wrong for current
  2303. - x6500: Ensure ft232r buffer is flushed to change registers
  2304. - x6500: Start clock speed off at 180, and extra debugging for
  2305. x6500_set_register
  2306. - x6500: When programming, poll each FPGA status individually since they might
  2307. not be ready at the same time
  2308. - x6500: Various tweaks and hacks to get mining working
  2309. - Bugfix: x6500: Remove erroneous bitendianflip
  2310. - Bugfix: jtag: Handle ftdi-common environmental stuff properly
  2311. - jtag: Defer ignored reads a bit to avoid USB latency
  2312. - Bugfix: ft232r: First 2 bytes of every 0x40 are FTDI status or something
  2313. - x6500: Implement mining protocols (doesn't work yet)
  2314. - x6500: Cleanup dead code and implement bailout2
  2315. - x6500: Clean up and finish FPGA initialization
  2316. - x6500: Comment bitstream upload function better
  2317. - fpgautils: Abstract open_xilinx_bitstream out from modminer and x6500 drivers
  2318. - x6500: Get bitstream upload working
  2319. - Bugfix: jtag: Use the correct bit for reading/writing data streams
  2320. - ft232r: Buffer writes to improve performance
  2321. - x6500: Get FPGA probe working
  2322. - jtag: JTAG implementation for X6500 (over ft232r)
  2323. - ft232r: ft232r_read_all function to simplify exact-length reads
  2324. - ft232r: Implement read buffer so ft232r_read always works like read(2)
  2325. - ft232r: Complete necessary interfaces for X6500
  2326. - x6500: Bare minimum detection-only X6500 support via libusb
  2327. - Minor debian packaging fixes.
  2328. - Only add stratum share to database if we succeeded in submitting it, with a
  2329. debug output saying it succeeded.
  2330. - Use keepalive with stratum sockets to improve its ability to detect broken
  2331. connections.
  2332. - Show only the URL in the status bar to avoid long prefixes making for extra
  2333. long lines.
  2334. - Display compact status in menu and update README to reflect current menu
  2335. entries.
  2336. - Add a compact display mode that does not list per device statistics in the
  2337. status window.
  2338. - Add blank spaces after best share displayed.
  2339. - Round a few static string arrays up to 4 byte boundaries for ARM.
  2340. - Display best share diff for scrypt as well.
  2341. - Show the best diff share as "best share" and add info to the README.
  2342. - Display the best diff share submitted so far.
  2343. - Redundant check.
  2344. - The work struct pointer in struct pc_data in findnonce is never freed yet
  2345. there is no need to allocate it separately so make struct work a static part of
  2346. the struct pc_data. s
  2347. - No longer should hide --no-restart option if OpenCL support is missing
  2348. - Handle crash exceptions by trying to restart cgminer unless the --no-restart
  2349. option is used.
  2350. - Switch queued count when choosing a different pool from a failed stratum pool
  2351. in getwork thread.
  2352. - Put a mandatory 5s wait between reattempting a getwork on failure to avoid
  2353. hammering requests.
  2354. - Make sure to check pool stratum curl exists under lock before attempting any
  2355. recv to not risk dereferencing upon attempting to reinitiate stratum.
  2356. - Avoid redefining macros and align to 4 byte boundaries.
  2357. - API - add Stratum information to pools
  2358. - update FPGA-README for MMQ
  2359. - Time for dynamic is in microseconds, not ms.
  2360. - x86_64 builds of mingw32 are not supported directly and should just configure
  2361. as generic mingw32 builds since they're NOT 64 bit.
  2362. - Use 3 significant digits when suffix string is used and values are >1000.
  2363. - Get rid of unused warning for !scrypt.
  2364. - Use select on stratum send to make sure the socket is writeable.
  2365. - Cope with dval being zero in suffix_string and display a single decimal place
  2366. when significant digits is not specified but the value is greater than 1000.
  2367. - Pad out the suffix string function with zeroes on the right.
  2368. - Failure to calloc in bin2hex is a fatal failure always so just check for that
  2369. failure within the function and abort, simplifying the rest of the code.
  2370. - Provide locking around the change of the stratum curl structures to avoid
  2371. possible races.
  2372. - Bump opencl kernel version numbers.
  2373. - Remove atomic ops from opencl kernels given rarity of more than once nonce on
  2374. the same wavefront and the potential increased ramspeed requirements to use the
  2375. atomics.
  2376. - Clear the pool idle flag in stratum when it comes back to life.
  2377. - Display correct share hash and share difficulty with scrypt mining.
  2378. - Show work target diff for scrypt mining.
  2379. - Watch for buffer overflows on receiving data into the socket buffer.
  2380. - Dramatically simplify the dynamic intensity calculation by oversampling many
  2381. runs through the opencl kernel till we're likely well within the timer
  2382. resolution on windows.
  2383. - Align static arrays to 4 byte boundaries to appease ARM builds for stratum.
  2384. - Update documentation.
  2385. - Left align values that are suffix_string generated.
  2386. - Share_diff should not be converting the work data to hex.
  2387. - Update readme describing difficulty displayed on log lines.
  2388. - Off by one error.
  2389. - Prevent overflows of the port char array in extract_sockaddr.
  2390. - Disable stratum detection with scrypt.
  2391. - Display the actual share diff next to the pool required diff, using a suffix
  2392. creation function to prevent values of >1000 being shown in their entirety.
  2393. - Fix 4 * 0 being 0 that would break dynamic intensity mode.
  2394. - Supplement other 64-bit endian swap macros
  2395. - Bugfix: Fix htobe64 on big endian platforms that don't define it
  2396. - Fix lack of htobe64 on mingw32.
  2397. - Reinstate the history on dynamic intensity mode to damp fluctuations in
  2398. intensity but use an upper limit on how much the value can increase at any time
  2399. to cope with rare overflows.
  2400. - Update to cgminer's newer dynamic intensity algorithm
  2401. - Support for the stratum mining protocol.
  2402. - Simplify target generation code.
  2403. - Add support for client.get_version for stratum.
  2404. - Use a 64 bit unsigned integer on the diff target to generate the hex target.
  2405. - Update reconnect message to show whole address including port.
  2406. - Look for null values and parse correct separate array entries for url and port
  2407. with client reconnect commands for stratum.
  2408. - The command for stratum is client.reconnect, not mining.reconnect.
  2409. - Only copy the stratum url to the rpc url if an rpc url does not exist.
  2410. - Implement rudimentary mining.reconnect support for stratum.
  2411. - Ignore the value of stratum_active on calling initiate_stratum and assume
  2412. we're always trying to reinitiate it, and set the active flag to false in that
  2413. function.
  2414. - stratum auth can be unset if we fail to authorise on subsequent calls to
  2415. auth_stratum which undoes the requirement of setting it in one place so set it
  2416. in pool_active.
  2417. - Format Stratum submission-start debug the same way as other submissions
  2418. - Bugfix: Set work_restart_id in gen_stratum_work for when work is reused to
  2419. avoid thinking it's all stale.
  2420. - Only auto-switch to Stratum internally, but save HTTP URI in case pool stops
  2421. using Stratum; also always shows original pool URI on RPC
  2422. - SHUT_RDWR is now always defined for us, so no need to check ifdef on LP hang
  2423. - Implement --no-stratum option to disable autodetection
  2424. - Show Stratum pools as "Strtm" protocol in "Pool management" TUI
  2425. - Bugfix: BFGMiner doesn't use rpc_proxytype
  2426. - Remove free that could segfault.
  2427. - Use the stratum url as the rpc url advertised if we switch to it.
  2428. - Count an invalid nonce count as a hardware error on opencl.
  2429. - Count each stratum work item as local work.
  2430. - Cope with one stratum pool being the only active pool when it dies by sleeping
  2431. for 5 seconds before retrying to get work from it instead of getting work
  2432. indefinitely.
  2433. - Detect stratum outage based on either select timing out or receiving an empty
  2434. buffer and properly re-establish connection by disabling the stratum_active
  2435. flag, coping with empty buffers in parse_stratum.
  2436. - Fix various modminer warnings on mingw.
  2437. - Fix sign warning on windows build for bitforce.
  2438. - Cast socketfail to integer since SOCKET is an unsigned int on windows.
  2439. - Use the stratum thread to detect when a stratum pool has died based on no
  2440. message for 2 minutes.
  2441. - Only set the stratum auth flag once and once the stratum thread is started,
  2442. use that to set/unset the stratum active flag.
  2443. - Only hand off to stratum from getwork if we succeed in initiating the
  2444. protocol.
  2445. - Target should only be 32 bytes copied.
  2446. - Use a static array for work submission data instead of stack memory.
  2447. - Clear the buffer data before sprinting to it.
  2448. - Clear work stratum strings before setting them and add them to debug output.
  2449. - Drop stratum connect failed message to verbose level only since it's a regular
  2450. probing message.
  2451. - TCP Keepalive in curl is only in very recent versions and not required with
  2452. regular messages on stratum anyway.
  2453. - Move stratum sockets to curl infrastructure with locking around send+recv to
  2454. begin support for proxies and ssl.
  2455. - Make detect stratum fail if a proxy has been set up.
  2456. - Stratum does not currently have any proxy support so do not try to switch to
  2457. stratum if a proxy has been specified.
  2458. - Windows doesn't work with MSG_PEEK on recv so move to a continuously updating
  2459. buffer for incoming messages.
  2460. - Alloca is unreliable on windows so use static arrays in util.c stratum code.
  2461. - Begin support for mingw stratum build.
  2462. - Add space to reject reason.
  2463. - Parse the reject reason where possible from stratum share submission.
  2464. - Pass json error value to share result function to be able to parse reject
  2465. reason in stratum.
  2466. - Don't try to parse unneeded parameters in response to mining.subscribe.
  2467. - Remove the sshare hash entry if we failed to send it.
  2468. - Change notify message to info level to avoid spamming repeatedly when a pool
  2469. is down.
  2470. - Check the stratum pool difference has not changed compared to the work diff
  2471. when testing whether a share meets the target or not and retarget if necessary.
  2472. - Bit error in target calculation for stratum.
  2473. - Offset the current block detection to the prev block hash.
  2474. - We should be testing for id_val, not id in parse stratum response.
  2475. - Make target on stratum scale to any size by clearing sequential bits according
  2476. to diff.
  2477. - Correct target calculation in gen_stratum_work.
  2478. - If a share result has an error code but still has an id, it is likely a
  2479. reject, not an error.
  2480. - Initiate stratum the first time in pool_active only, allowing us to switch to
  2481. it on getting a failed getwork and detecting the presence of stratum on the url
  2482. at that time.
  2483. - Use 5 second timeout on sock full for now as a temporary workaround.
  2484. - If no stratum url is set by the end of the detect stratum routine, copy the
  2485. sockaddr url.
  2486. - Make all buffers slightly larger to prevent overflow.
  2487. - Make the stratum recv buffer larger than the recvsize.
  2488. - Userpass needs to be copied to user and pass earlier to allow stratum
  2489. authorisation to work with it.
  2490. - Store a sockaddr url of the stripped url used in determining sockaddr to not
  2491. confuse it with the stratum url and fix build warnings.
  2492. - Decrease the queued count with stratum work once it's staged as well.
  2493. - Allow the stratum retry to initiate and auth stratum in pool_alive to make
  2494. sure the stratum thread is started.
  2495. - Avoid duplicating pool->rpc_url and setting pool->stratum_url twice to itself.
  2496. - Detect if a getwork based pool has the X-Stratum header on startup, and if so,
  2497. switch to the stratum based pool.
  2498. - Comment update.
  2499. - Minor message change.
  2500. - Create a work item from a "clean" request from stratum allowing the new block
  2501. to be detected and the appropriate block change message to be given.
  2502. - Use statically allocated stratum strings in struct work to cope with the
  2503. inability to safely deallocate dynamically allocated ram.
  2504. - Use the current pool when deciding whether to reuse work from a stratum source
  2505. rather than the work's previous pool.
  2506. - Copy the stratum url to the rpc url to avoid none being set.
  2507. - Provide locking around stratum send operations to avoid races.
  2508. - Submit shares from stratum through the abstracted submit share function
  2509. detecting what message they belong to and showing the data from the associated
  2510. work, and then deleting it from the hash.
  2511. - Use a more robust mechanism to obtain a \n terminated string over a socket.
  2512. - Abstract out share submit as a function to be useable by stratum.
  2513. - Rename parse_stratum to parse_method as it is only for stratum messages that
  2514. contain methods.
  2515. - Display stratum as mechanism in status line when current pool is running it.
  2516. - Count each stratum notify as a getwork equivalent.
  2517. - Correct nonce submitted with share.
  2518. - Extranonce2 should be added before coinbase2.
  2519. - We should be hashing the binary coinbase, not the hex one.
  2520. - Fix endianness of nonce submitted for stratum.
  2521. - Check that stratum is already active in initiate_stratum to avoid
  2522. de-authorising ourselves by subscribing again.
  2523. - Begin implementing a hash database of submissions and attempt sending results.
  2524. - Copy parameters from stratum work required for share submission.
  2525. - Set lagging flag on first adding a pool to prevent pool slow warning at
  2526. startup.
  2527. - Fix work->target being a 32 byte binary in gen_stratum_work.
  2528. - Store and display stripped url in its own variable.
  2529. - Create machinery to divert work requests to stratum.
  2530. - Generate the work target in gen_stratum_work, setting default diff to 1 in
  2531. case it is not yet set.
  2532. - Generate work data, midstate and hash1 in gen_stratum_work.
  2533. - Generate header created from stratum structures in gen_stratum_work.
  2534. - Generate merkle root hash in gen_stratum_work.
  2535. - Generate the coinbase for generation of stratum based work.
  2536. - The number of transactions is variable so make merkle a variable length
  2537. dynamically allocated array and track how many there are for stratum.
  2538. - Rename nonce2 to n2size reflecting that it's a size variable and not the
  2539. actual nonce.
  2540. - Provide rudimentary support for stratum clean work command in the stratum
  2541. thread.
  2542. - Cope with pools being removed in the stratum thread.
  2543. - Use the pool sock value directly in the stratum thread in case it changes
  2544. after reconnecting.
  2545. - Create a stratum thread per pool that has stratum that monitors the socket and
  2546. serves received data.
  2547. - Check return value of stratum_parse.
  2548. - Complete authorisation in stratum.
  2549. - Implement stratum parsing of notify parameters and storing them in the pool
  2550. stratum work structure.
  2551. - Create helper functions for duplicating json strings to avoid keeping json
  2552. references in use.
  2553. - Append \n in the sock_send function instead of adding it when constructing
  2554. json in stratum.
  2555. - Don't keep any json references around with stratum structures.
  2556. - Create parse_stratum function that hands off stratum parameters to other
  2557. functions to manage pool stratum work struct variables. Implement mining
  2558. difficulty setting.
  2559. - Create helper functions for checking when a socket is ready to read on and
  2560. receive a single line at a time. Begin stratum authorisation process.
  2561. - Provide a helper function for reading a single \n terminated string from a
  2562. socket.
  2563. - Create a stratum work structure to store current work variables.
  2564. - Test specifically for stratum being active in pool_active.
  2565. - Detect stratum in common place when adding urls, and use a bool to tell us
  2566. when it's active.
  2567. - Remove unused add_pool_details5
  2568. - Fix warnings.
  2569. - Extract and store various parameters on stratum init confirming successful
  2570. mining notify.
  2571. - Use existing socket macros and close the socket on failure in init stratum.
  2572. - Initiate stratum and grab first json result.
  2573. - Get detailed addressinfo from the parsed URL for future raw socket usage when
  2574. possible. IPV4 only for now.
  2575. - Prepare for getaddrinfo call.
  2576. - Add data structures to pool struct for socket communications.
  2577. - Put all socket definitions in util.h to allow reusing by added socket
  2578. functions to be used in util.c.
  2579. BFGMiner Version 2.8.3 - October 18, 2012
  2580. - Update to libblkmaker 0.1.3
  2581. - Use explicit host to BE functions in scrypt code instead of hard coding
  2582. byteswap everywhere.
  2583. - Ease the checking on allocation of padbuffer8 in the hope it works partially
  2584. anyway on an apparently failed call.
  2585. - Round target difficulties down to be in keeping with the rounding of detected
  2586. share difficulties.
  2587. - String alignment to 4 byte boundaries and optimisations for bin<->hex
  2588. conversions.
  2589. - Fix GPU memory allocation size for scrypt
  2590. - Fix access violation with scrypt mining
  2591. - Bugfix: Only free rpc_req after using it, not before
  2592. - Bugfix: Increment work->pool->staged inside of mutex to avoid work being
  2593. freed (and staged decremented) before we dereference it
  2594. - Revert "No need for extra variable in hash_push.": The extra variable is
  2595. needed to avoid a rare dereference-after-free error.
  2596. - In opencl_free_work, make sure to still flush results in dynamic mode.
  2597. - Workaround: Debug log only after dec_queued, to make a free/use race more
  2598. rare
  2599. - Bugfix: Remove redundant \n in debug messages
  2600. - Bugfix: Free rpc_req in pool_active and longpolls
  2601. - README: Explicitly provide Ubuntu package name for libjansson-dev
  2602. - Bugfix: Include flash_led bool in cgpu_info for Icarus-but-not-BitForce
  2603. builds, since Cairnsmore uses it
  2604. - Only check work block id against pool's if the pool has a known block id
  2605. - Avoid clearing pool->block_id unless we really are changing pools
  2606. BFGMiner Version 2.8.2 - October 8, 2012
  2607. - Update to libblkmaker 0.1.2
  2608. - Bugfix: --temp-target no longer has a simple default (fixes build without
  2609. OpenCL support)
  2610. - Bugfix: icarus: Silence false epoll error
  2611. - Bugfix: icarus: Set firstrun for errors starting next job, so the current
  2612. one finishes properly
  2613. - Bugfix: icarus: Restore generic failure management for write errors
  2614. - Use strtod not strtol for bitforce temp backup.
  2615. - Cope with broken drivers returning nonsense values for bitforce temperatures.
  2616. - Minor warning fixes.
  2617. - Fix unused warnings on ming build.
  2618. - Fix sign warning in ocl.c
  2619. - fds need to be zeroed before set in modminer.
  2620. - Put scrypt warning on separate line to avoid 0 being shown on windows as
  2621. bufsize.
  2622. - Prevent corrupt values returned from the opencl code from trying to read
  2623. beyond the end of the buffer by masking the value to a max of 15.
  2624. - Icarus USB write failure is also a comms error
  2625. - api.c DEBUG message has no paramter
  2626. - Icarus catch more USB errors and close/reopen the port
  2627. - API-README update cgminer verison number
  2628. - hashmeter fix stats kh/s on 32bit windows
  2629. - cairnsmore: Increase maximum clock frequency to 210 Mhz
  2630. - icarus: Hashrate estimates really don't need the attention of a warning,
  2631. demote them to debug
  2632. - cairnsmore: Automatically "downgrade" default FPGA-per-device to 1 for
  2633. dynclock devices
  2634. - Bugfix: cairnsmore: Get autodetection of dynclock to work consistently
  2635. - cairnsmore: Adjust dynclock usage to react in proper time
  2636. - dynclock: Document function usage
  2637. - cairnsmore: Fix race on dynclock detection
  2638. - icarus: Detect attempts to send commands via work and neuter them
  2639. - cairnsmore: Glasswalker has a minimum multiplier of 20 :(
  2640. - cairnsmore: Detect frequency changing support despite hashing of commands
  2641. - modminer: Allow clocks down to 2 Mhz just in case
  2642. - Allow device drivers and users to properly change target temperatures for
  2643. non-GPUs
  2644. - Check that ncurses*-config installs actually work before deciding to use
  2645. them
  2646. - Bugfix: Fix multiple bugs in autogen.sh
  2647. - - Don't use readlink -f unneccesarily (it's not portable)
  2648. - - Always run autoreconf within the real source directory
  2649. - - Run configure from PWD, *not* the real source directory
  2650. - Bugfix: Include nonce in data buffer for debugging
  2651. - Bugfix: swap32* wants count of 32-bit blocks, not bytes
  2652. - Initial Cygwin port
  2653. - Revert "Remove needless roundl define.", since it is needed for Cygwin and
  2654. OpenWRT
  2655. - Bugfix: Deal with various compiler warnings
  2656. - modminer: Implement --temp-hysteresis logic
  2657. - Support for maximum frequency being below the default, eg when the maximum
  2658. is temporarily reduced to deal with temperature
  2659. - Bugfix: modminer: Reduce dynclock max frequency as needed to keep
  2660. temperature below cutoff
  2661. - Bugfix: Restore disabled label, needed to skip over hashrate calculations
  2662. (which mess up otherwise)
  2663. - Bugfix: bitforce: Count actual throttling as hardware errors
  2664. - icarus: Allow failure in case of reopen failure, now that the miner core
  2665. will retry on its own
  2666. - If a device dies, attempt to reinitialize it occasionally
  2667. - Bugfix: The REST flag is now preferred over WAIT, since the former might
  2668. trigger the latter
  2669. - Bugfix: modminer: Update temperature readings when disabled (fixes thermal
  2670. cutoff recovery)
  2671. - Bugfix: Move thermal cutoff to general watchdog code (fixes bitforce
  2672. recovery)
  2673. - Rename enable_device to register_device, since it only works for setting it
  2674. up at startup
  2675. - Move targettemp from ADL to cgpu_info, so all devices can readily use it
  2676. - Bugfix: "REST" flag had too much padding
  2677. - Bugfix: adl: Only warn and disable GPU due to thermal cutoff, if it's
  2678. actually enabled
  2679. - Bugfix: bitforce: Only warn and disable bitforce due to thermal cutoff, if
  2680. it's actually enabled
  2681. BFGMiner Version 2.8.1 - September 27, 2012
  2682. - Avoid strndup for Windows compatibility
  2683. - Bugfix: cairnsmore: Add missing compat.h include (for sleep)
  2684. - cairnsmore: Implement "identify" for supported firmware
  2685. - Adjust identify_device API to return a bool whether supported or not, for
  2686. runtime capability detection
  2687. - Bugfix: cairnsmore: Fix invalid share detection on LE
  2688. - Bugfix: icarus: Fix logging message to not assume "Icarus" always, and use
  2689. device driver name
  2690. - Bugfix: cairnsmore: Correct frequency scaling detection logic
  2691. - cairnsmore: When changing frequency, adjust Hs expectations accordingly
  2692. - cairnsmore: Detect availability of frequency scaling, and only enable it
  2693. when supported
  2694. - cairnsmore: Implement dynamic clocking support for Glasswalker's bitstream
  2695. - Update libblkmaker to 0.1.1
  2696. - Advertise BFGMiner in blocks found by default (without --coinbase-sig)
  2697. - RPC: Add "Coinbase-Sig" to config/setconfig
  2698. - New --coinbase-sig option to add arbitrary data to blocks you generate (GBT
  2699. only)
  2700. - opencl: Defer nonce validity checking to submit_nonce
  2701. - scrypt: Implement test_nonce2 and submit_nonce hw error check
  2702. - Bugfix: modminer: Convert nonce to native endian
  2703. - Interpret any attempts to submit a H-not-zero nonce as a hardware error
  2704. - make-release: Strip DLLs and EXE in Windows binary
  2705. - dynclock: Use consistent messages for frequency changes
  2706. - modminer: Port to dynclock
  2707. - dynclock: Split dynamic clocking algorithm out of Ztex driver
  2708. - Bugfix: When changing GPU memclock, adjust internal variable so it is
  2709. correctly saved to config file
  2710. - Bugfix: Re-probe longpoll header for each pool alive check, including
  2711. retries when a preferred protocol fails
  2712. - Bugfix: modminer: Bitstream binary filenames are *.bit
  2713. - modminer: Start frequency off at 200 Mhz
  2714. - Reorder libztex header include order to fix missing struct definition.
  2715. - Display share difficulty on log with a shortened hash display on submission.
  2716. - API stats add some pool getwork difficulty stats
  2717. - Ignore any pings pushed to the worker threads if the thread is still paused to
  2718. prevent it being enabled and disabled repeatedly.
  2719. - Test for sequential getwork failures on a pool that might actually be up but
  2720. failing to deliver work as we may end up hammering it repeatedly by mistake.
  2721. - reduce windows compile warnings
  2722. - util.c - bug - proxy - no data end condition
  2723. - API don't change 'Diff1 Shares' - backward compatability FTW
  2724. - miner.php highlighting correctly handling difficulty
  2725. - API - Add last share difficulty for devices and pool
  2726. - Store and report Accepted,Rejected,Stale difficulty in the summary and API
  2727. - WorkTime - display prevblock for scrypt
  2728. - api.c remove compile warnings
  2729. - Calculate work difficulty for each getwork and display with WorkTime debug
  2730. - FPGA - allow long or short device names in detect code + style police
  2731. - WorkTime - multiple nonce per work and identify the work source
  2732. - Optional WorkTime details with each Accepted/Rejected work item
  2733. - Icarus - ignore hardware errors in timing mode
  2734. - miner.php oops - mistype
  2735. - API pgaidentify - unsupported message should be a warning
  2736. - API/BFL identify a device - currently only BFL to flash the led
  2737. - BFL add throttle count to internal stats + API
  2738. - BFL: missing device id in log message
  2739. - Bugfix: ztex: Clear device_ztex before freeing it
  2740. - Bugfix: ztex: statline existence depends on whether the libztex structure
  2741. exists, not whether the cgpu is enabled
  2742. - Bugfix: README: Make usermod commands consistent, including important -a
  2743. option
  2744. - Bugfix: Address a couple of rare TQ leaks, and improve logging a bit
  2745. - Bugfix: Properly quote configure options
  2746. BFGMiner Version 2.8.0 - September 15, 2012
  2747. - Be specific about jansson version requirement
  2748. - Replace "Alive" in pool status with protocol in use (GBT or GWork)
  2749. - Remove copy of old jansson from source repository
  2750. - Honour block template expiry (BIP 23 Basic Pool Extensions "expires")
  2751. - Add --no-gbt option so getblocktemplate can be disabled if it causes
  2752. problems
  2753. - BIP 22 long polling
  2754. - Properly detect pool protocol
  2755. - Bugfix: Sort out work template refcounting by properly using work_free and
  2756. new workcpy
  2757. - Support for rolling extranonce in templates
  2758. - Initial libblkmaker integration, using a git submodule
  2759. - cairnsmore: There's no set hashrate like Icarus, so always use short timing
  2760. mode by default
  2761. - Bugfix: Include unistd.h needed for ssize_t type
  2762. - fpgautils: Don't try to scan serial at all anymore, if a device is claimed
  2763. - fpgautils: serial_claim function to politely ask other drivers not to try to
  2764. use device
  2765. - RPC: Update to work with Cairnsmore
  2766. - cairnsmore: Windows autodetect using FTDI library
  2767. - cairnsmore: Beginnings of new driver, with automatic upgrade from Icarus
  2768. detection
  2769. - icarus: Support disabling reopen quirk via --icarus-options
  2770. - proxy: Replace mess of encoding proxy into pool URI with a --pool-proxy
  2771. option, and use cURL's builtin proxy URI support
  2772. - save individual pool proxy settings to config
  2773. - API-README update for pools proxy info
  2774. - CURL support for individual proxy per pool and all proxy types
  2775. - Bugfix: Update current_block_id for fixed set_curblock
  2776. - miner.php by default don't display IP/Port numbers in error messages
  2777. - api.c all STATUS messages automatically escaped
  2778. - API add display of and setting queue,scantime,expiry
  2779. - README - FPGA device FAQ
  2780. - API add device diff1 work
  2781. - count device diff1 shares
  2782. - API-README update
  2783. - api.c Correct diff1 field name
  2784. - Bugfix: Sanitize block hash handling (including fixing on big endian)
  2785. - Bugfix: Print the (full) correct block hash when warning about work issued
  2786. against old blocks
  2787. - Bugfix: When comparing current block, only pay attention to the prevblock
  2788. header
  2789. - Allow mixing user+pass and userpass, so long as user+pass are balanced
  2790. before userpass options
  2791. - ztex: Include device serial number and FPGA number in cgpu name field
  2792. - ztex: Abstract common cgpu_info creation code
  2793. - ztex: Do thread initialization in thread_init rather than thread_prepare
  2794. - Bugfix: Tolerate working on old blocks when there is only one pool enabled
  2795. - Bugfix: ztex: Detect through fpgautils so -S noauto correctly inhibits
  2796. autodetection
  2797. - ztex: Workaround duplicate share submissions by doubling "backlog" size
  2798. - ztex: Use consistent device ids for logging
  2799. - Bugfix: ztex: Increment global hw_errors too
  2800. - Bugfix: free adhoc string elist element when removing it from list
  2801. - Bugfix: icarus: Initialize lret variable after work restart reentry
  2802. - Bugfix: ztex: Free lastnonce heap memory if backlog allocation fails
  2803. - icarus: Initialize epoll event structure in a way Valgrind is happier with
  2804. - Bugfix: Use strtok_r for parse_config since some options use strtok
  2805. themselves
  2806. - Import strtok_r from gnulib for Windows portability
  2807. - Bugfix: ztex: Don't try to destroy a mutex that was never created (single
  2808. FPGA Ztex devices)
  2809. - ztex: Clean up redundant dereferencing in ztex_shutdown
  2810. - API-README more debug parameter information
  2811. - API allow full debug settings control
  2812. - Sort the blocks database in reverse order, allowing us to remove the first
  2813. block without iterating over them. Output the block number to debug.
  2814. - Adjust opencl intensity when adjusting thread count to prevent it getting
  2815. pegged at a value below the minimum threads possible.
  2816. - miner.h max_hashes -> int64_t
  2817. - Keep the local block number in the blocks structs stored and sort them by
  2818. number to guarantee we delete the oldest when ageing the block struct entries.
  2819. - Use correct sdk version detection for SDK 2.7
  2820. - Bugfix: Align Ztex statline properly by removing redundant frequency
  2821. - make-release: Convert text files to DOS format for Windows ZIP
  2822. BFGMiner Version 2.7.5 - August 27, 2012
  2823. - Revert "Do a complete cgminer restart if the ATI Display Library fails, as
  2824. it does on windows after running for some time, when fanspeed reporting
  2825. fails."
  2826. - Stop special-casing worksize default to 256 for Cypress, since it incurs a 5
  2827. MH/s hit with stock config
  2828. - New "--scan-serial all" feature to probe all enumerated serial ports
  2829. - modminer: Revamp dynamic clocking algorithm per request from cablepair
  2830. - Test for lagging once more in queue_request to enable work to leak to backup
  2831. pools.
  2832. - There is no need to try to switch pools in select_pool since the current pool
  2833. is actually not affected by the choice of pool to get work from.
  2834. - Only clear the pool lagging flag if we're staging work faster than we're using
  2835. it.
  2836. - needed flag is currently always false in queue_request. Remove it for now.
  2837. - thr is always NULL going into queue_request now.
  2838. - Fix for non-ADL OpenCL device formatting issue
  2839. BFGMiner Version 2.7.4 - August 23, 2012
  2840. - Perform select_pool even when not lagging to allow it to switch back if needed
  2841. to the primary.
  2842. - Simplify macros in output kernels avoiding apparent loops and local variables.
  2843. - Carry the needed bool over the work command queue.
  2844. - Move the decision to queue further work upstream before threads are spawned
  2845. based on fine grained per-pool stats and increment the queued count immediately.
  2846. - Track queued and staged per pool once again for future use.
  2847. - OpenCL 1.0 does not have native atomic_add and extremely slow support with
  2848. atom_add so detect opencl1.0 and use a non-atomic workaround.
  2849. - Pools: add RollTime info to API 'stats' and 'Stats' button in miner.php
  2850. BFGMiner Version 2.7.3 - August 23, 2012
  2851. - Minimise the number of getwork threads we generate.
  2852. - Pick worksize 256 with Cypress if none is specified.
  2853. - Give warning with sdk2.7 and phatk as well.
  2854. - Whitelist sdk2.7 for diablo kernel as well.
  2855. - Only keep the last 6 blocks in the uthash database to keep memory usage
  2856. constant. Storing more is unhelpful anyway.
  2857. - Increase kernel versions signifying changed APIs.
  2858. - BFL flash - more FPGA-README
  2859. - Check we haven't staged work while waiting for a curl entry before proceeding.
  2860. - Use atomic ops to never miss a nonce on opencl kernels, including nonce==0,
  2861. also allowing us to make the output buffer smaller.
  2862. - Remove compile errors/warnings and document compile/usage in FPGA-README
  2863. - Ignore the submit_fail flag when deciding whether to recruit more curls or not
  2864. since we have upper bounds on how many curls can be recruited, this test is
  2865. redundant and can lead to problems.
  2866. - API-README update cgminer version number
  2867. - API-README fix groups P: example mistake
  2868. - API-README add COIN and other edits
  2869. - miner.php allow 'coin' is custom pages
  2870. BFGMiner Version 2.7.1 - August 22, 2012
  2871. - Update windows build instructions courtesy of sharky.
  2872. - Increase max curls to number of mining threads + queue * 2, accounting for up
  2873. and downstream comms.
  2874. - Queue enough requests to get started.
  2875. - There is no point trying to clone_work in get_work() any more since we clone
  2876. on every get_work_thread where possible.
  2877. - There is no point subtracting 1 from maxq in get_work_thread.
  2878. - miner.php allow page title to be defined in myminer.php
  2879. - Only set lagging flag once there are no staged work items.
  2880. - select_pool does not switch back to the primary once lagging is disabled.
  2881. - Increment total work counter under mutex lock.
  2882. - Increment the queued count after the curl is popped in case there's a delay
  2883. waiting on curls and we think we've queued work when in fact we're waiting on
  2884. curls.
  2885. - Do the dynamic timing in opencl code over a single pass through scanhash to
  2886. make sure we're only getting opencl times contributing to the measured
  2887. intervals.
  2888. - Increase curl reaping time to 5 minutes since comms between curl requests can
  2889. be 2 mins apart with lots of rolltime.
  2890. - No need for extra variable in hash_push.
  2891. - Remove short options -r and -R to allow them to be reused and remove readme
  2892. entries for deprecated options.
  2893. - Deprecate the opt_fail_pause parameter, leaving a null placeholder for
  2894. existing configurations.
  2895. - Free work before retrying in get_work_thread.
  2896. - Don't pause after failed getwork, set lagging flag and reassess.
  2897. - We should not be pausing in trying to resubmit shares.
  2898. - Get rid of the extending fail pause on failed connects since we discard work
  2899. after a period.
  2900. - get_work always returns true so turn it into a void function.
  2901. - get_work never returns false so get rid of fail pause loop.
  2902. - Get rid of pause and retry from get_upstream_work so we only do it from one
  2903. place.
  2904. - Remove all cases where --retries aborts BFGMiner, making it for submission
  2905. retries only, where it makes sense.
  2906. BFGMiner Version 2.7.0 - August 21, 2012
  2907. - Implement a new pool strategy, BALANCE, which monitors work performed per pool
  2908. as a rolling average every 10 minutes to try and distribute work evenly over all
  2909. the pools. Do this by monitoring diff1 solutions to allow different difficulty
  2910. target pools to be treated equally, along with solo mining. Update the
  2911. documentation to describe this strategy and more accurately describe the
  2912. load-balance one.
  2913. - fpga serial I/O extra debug (disabled by default)
  2914. - Getwork fail was not being detected. Remove a vast amount of unused variables
  2915. and functions used in the old queue request mechanism and redefine the getfail
  2916. testing.
  2917. - Consider us lagging only once our queue is almost full and no staged work.
  2918. - Simplify the enough work algorithm dramatically.
  2919. - Only queue from backup pools once we have nothing staged.
  2920. - Don't keep queueing work indefinitely if we're in opt failover mode.
  2921. - Make sure we don't opt out of queueing more work if all the queued work is
  2922. from one pool.
  2923. - Set lagging flag if we're on the last of our staged items.
  2924. - Reinstate clone on grabbing work.
  2925. - Grab clones from hashlist wherever possible first.
  2926. - Cull all the early queue requests since we request every time work is popped
  2927. now.
  2928. - Keep track of staged rollable work item counts to speed up clone_available.
  2929. - Make expiry on should_roll to 2/3 time instead of share duration since some
  2930. hardware will have very fast share times.
  2931. - Check that we'll get 1 shares' worth of work time by rolling before saying we
  2932. should roll the work.
  2933. - Simplify all those total_secs usages by initialising it to 1 second.
  2934. - Overlap queued decrementing with staged incrementing.
  2935. - Artificially set the pool lagging flag on pool switch in failover only mode as
  2936. well.
  2937. - Artificially set the pool lagging flag on work restart to avoid messages about
  2938. slow pools after every longpoll.
  2939. - Factor in opt_queue value into enough work queued or staged.
  2940. - Roll work whenever we can on getwork.
  2941. - Queue requests for getwork regardless and test whether we should send for a
  2942. getwork from the getwork thread itself.
  2943. - Get rid of age_work().
  2944. - Don't try to get bitforce temperature if we're polling for a result to
  2945. minimise the chance of interleaved responses.
  2946. - Fix harmless unused warnings in scrypt.h.
  2947. - Check we are not lagging as well as there is enough work in getwork.
  2948. BFGMiner Version 2.6.5 - August 20, 2012
  2949. - API new command 'coin' with mining information
  2950. - Add message to share if it's a resubmit.
  2951. - Add virtual adl mapping for when none is specified on the command line to
  2952. not crash without a map specified.
  2953. - Fix ADL gpu-map not working when there are more ADL devices than openCL.
  2954. Patch supplied and tested by Nite69.
  2955. - bitforce: Initial import of Linux-only bitforce-firmware-flash utility
  2956. - Revert stale-on-arrival failsafe, since it ends up needing exceptions for
  2957. everything
  2958. - Bugfix: opencl: Declare opencl_dynamic_cleanup in header
  2959. - Even if we want to submit stale shares, give up if we have more submissions
  2960. waiting on threads (even before failing)
  2961. - Even if we want to submit stale shares, give up if they've failed and we
  2962. have more submissions waiting on threads
  2963. - opencl: Use timeBeginPeriod on Windows to ensure gettimeofday has sufficient
  2964. precision for dynamic intensity
  2965. - Bugfix: opencl: Move ADL fanspeed warning messages to a new thread to get
  2966. around summary-update deadlocking
  2967. - README: Note that user groups don't get updated until re-login
  2968. - Initialise cnt in libztex.c
  2969. - Don't try to start devices that don't support scrypt when scrypt mining.
  2970. - Repeating on timeout in ztex could make the code never return.
  2971. - Offset libusb reads/writes by length written as well in ztex.
  2972. - Cope with timeouts and partial reads in ztex code.
  2973. - If there are more devices than nDevs, don't iterate over them as they may
  2974. overwrite devices mapped below that with the mapping option.
  2975. - Fix README faq on bfl auto-detect.
  2976. - Set memory clock based on memdiff if present from with engine changes,
  2977. allowing it to parallel manual changes from the menu as well.
  2978. - api.c typo
  2979. - API allow display/change failover-only setting
  2980. - API-README corrections
  2981. - miner.php documentation (in API-README) v0.1
  2982. - Bugfix: opencl: Show blank device-info statline area if GPU doesn't have
  2983. ADL, to fix column alignment
  2984. - README: Document usage of 0 to indicate "leave at default" for comma-
  2985. delimited GPU options
  2986. - Correct API-README versions to match when BFGMiner included them
  2987. - API-README update changelog
  2988. - Minimise locking and unlocking when getting counts by reusing shared mutex
  2989. lock functions.
  2990. - Avoid getting more work if by the time the getwork thread is spawned we find
  2991. ourselves with enough work.
  2992. - The bitforce buffer is cleared and hw error count incremented on return from a
  2993. failed send_work already so no need to do it within the send_work function.
  2994. - Don't make mandatory work and its clones last forever.
  2995. - modminer: Log debug info for nonces found
  2996. BFGMiner Version 2.6.4 - August 11, 2012
  2997. - Bugfix: Define my_cancellable_getch in miner.h
  2998. - Escape " and \ when writing json config file
  2999. - miner.php allow a custom page section to select all fields with '*' - e.g. to
  3000. create a STATS section on a custom page
  3001. - miner.php optional single rig totals (on by default)
  3002. - Bugfix: Initialize submitting mutex
  3003. - Bugfix: bitforce: Allocate enough space for FTDI description pointers
  3004. - Queue one request for each staged request removed, keeping the staged
  3005. request count optimal at all times.
  3006. - Bugfix: Avoid cancelling threads while locks are held
  3007. - Set recognizable names on threads for debugging
  3008. - Bugfix: Don't keep making new get_work threads if all pools are dead
  3009. - Enable configuring submission thread limit with --submit-threads option
  3010. - Bugfix: Limit active submission threads to 0x40 so we don't overflow
  3011. - Bugfix: Properly handle switching to pools that aren't on the latest block,
  3012. and warn if a pool actively switches to an old block
  3013. - Log more details of reasons in stale_work debug messages
  3014. - Failsafe against stale-on-arrival work: disable the pool
  3015. - Bugfix: Debug message should show "Work stale due to work restart" when it's
  3016. not a share
  3017. - windows-build: Remove APP SDK section since it is no longer needed
  3018. - modminer: HACK: Let last_work handle the end of the work, and start the next
  3019. one immediately
  3020. - Bugfix: modminer: Remove erroneous "else" statement, to fix hashrate
  3021. reporting
  3022. - README: Document user group required for FPGAs on Gentoo and Ubuntu
  3023. - BFGMiner-specific README adjustments
  3024. - Bugfix: opencl: Ignore error getting device ids from platforms unless they
  3025. are explicitly chosen
  3026. - New --debuglog option to include debug info in stderr logfile even if not in
  3027. the console
  3028. - Bumped down debhelper compatibility reqs so that this will build on Lucid.
  3029. - Updated to match packaging changes.
  3030. - Switched to native packages so we don't have to muck around creating fake
  3031. upstream tarballs, and can easily generate minor versions for upload to
  3032. Launchpad.
  3033. - Removed accidentally included debugging line.
  3034. - Minor version bump again because of launchpad. Will sort this out for next
  3035. release.
  3036. - Updated to patch bitforce module issue on Debian/Ubuntu.
  3037. - Added local quilt config dir to ignore.
  3038. - modminer: Check nonce against previous work, in case of race
  3039. - Bugfix: Enable --kernel-path option if ModMiner or Ztex is enabled (even if
  3040. no OpenCL)
  3041. - Bugfix: Escape backslashes and double-quotes in strings that rightfully may
  3042. have them, when writing JSON config file
  3043. - Clean object (.o) and dependency (.d) files out of source tree
  3044. - Bugfix: bitforce: Don't count hashes that never happened due to throttling
  3045. - Bugfix: Deal with serial_open timeout maximum (25.5s)
  3046. - - fpgautils: Linux only supports uint8_t decisecond values for timeouts, so
  3047. use uint8_t for timeout value; this gets smart compilers to throw warnings
  3048. when overflowed in some cases
  3049. - - bitforce: Reduce serial timeout to 25 seconds (was 30) and increase job
  3050. long timeout to 25 seconds (was 15) to handle throttling gracefully
  3051. - modminer: Add debug info to API extra device stats
  3052. - modminer: Raise clock speed when there's only good nonces for a while
  3053. - modminer: Only print clock speed adjustments when they actually change
  3054. - modminer: Increase tolerance for bad nonces to 2%
  3055. - modminer: Reset bad-nonce ratio measurement when the clock speed changes
  3056. - Bugfix: bitforce: Include the correct device id in "garbled response" warning
  3057. - ADL: Add attribution and disclaimer to interfaces
  3058. - Cleaned out refs to AMD SDKs.
  3059. - Updated README about debian packaging, changelog with minor version bump to
  3060. work around Launchpad reqs.
  3061. - Updated changelog with Ubuntu release specific version, needed to build for
  3062. multiple releases. Also stripped out ADL SDK stuff in the build rules.
  3063. - Initial work to adjust debian packaging from cgminer. Should build correctly
  3064. now with pbuilder/pdebuild, and include docs.
  3065. - Adapt miner code to free ADL structures
  3066. - Import free ADL interfaces
  3067. - Include scrypt.h in Makefile.
  3068. - Fix windows bitforce build.
  3069. - Convert the serial autodetect functions to use int instead of char to
  3070. enumerate devices.
  3071. - Uglify windows autodetect code for BFL.
  3072. - There is no point zeroing temperature in BFL if we fail to get a response, and
  3073. we should register it as a HW error, suggesting throttling.
  3074. - Update SCRYPT README with information about HW errors.
  3075. - Use the scrypt CPU code to confirm results from OCL code, and mark failures as
  3076. HW errors, making it easier to tune scrypt parameters.
  3077. - We may as well leave one curl still available per pool instead of reaping the
  3078. last one.
  3079. - Display reaped debug message outside mutex lock to avoid recursive locking.
  3080. - api.c update API start message and include port number
  3081. - miner.php ignore arg when readonly
  3082. - miner.php allow pool inputs: delete, addpool, poolpriority
  3083. - bitforce: Reopen on communication error
  3084. - Bugfix: Calculate hw err percent for the affected FPGA only
  3085. - make-release: Adapt to new autogen by using NOCONFIGURE var
  3086. BFGMiner Version 2.6.3 - August 6, 2012
  3087. - modminer: Relax no-nonces downclocking condition to be more reasonable
  3088. - README: Update scrypt configure option
  3089. - README: Update configure options
  3090. - Bugfix: Display --disable-modminer in configure --help now that it is
  3091. enabled by default
  3092. - Add specific information when ADL detects error -10 saying the device is not
  3093. enabled.
  3094. - modminer: Shorten upload warning message to fit better
  3095. - modminer: Sending a "ping" first, to workaround bug in new firmware betas
  3096. - modminer: Include Hardware Errors and Valid Nonces in extra device status
  3097. - Bugfix: modminer: Calculate bad-nonce percentage based only on the same
  3098. FPGA's hardware errors, accurately
  3099. - modminer: Show bitstream upload progress in statline, and only report to log
  3100. every 10%
  3101. - modminer: Be more verbose about why the clock is getting reduced
  3102. - Document how Icarus golden nonce is handled by other FPGAs
  3103. - Rewrite should_run for sched, to properly handle one-shot schedules spanning
  3104. midnight
  3105. - Bugfix: Check list_empty in pop_curl_entry after condition wait
  3106. - Bugfix: Only add new pools to array after completing basic structure
  3107. initialization
  3108. - If __BFGMINER_SEGFAULT_ERRQUIT is set in the environment, segfault on
  3109. non-zero quit()s
  3110. - Check against NULL pointers getting into curlring
  3111. - modminer: Finish a process results run with a nonce poll, rather than sleep
  3112. - modminer: Workaround Windows driver failures
  3113. - Count likely throttling episodes on bitforce devices as hardware errors.
  3114. - Bugfix: bitforce: Increase serial read timeout to 30 seconds during actual
  3115. mining, to tolerate more throttling
  3116. - Style cleanups.
  3117. - Make pool_disabled the first in the enums == 0, fixing the pool enabled count
  3118. which compares if value is not enabled before enabling it.
  3119. - Correct writing of scrypt parameters to config file based on command line
  3120. parameters only.
  3121. - Add scrypt support while writing conf
  3122. - Use different variables for command line specified lookup gap and thread
  3123. concurrency to differentiate user defined versus auto chosen values.
  3124. - Queue a request on pool switch in case we have no work from the new pool yet.
  3125. - API remove unused warning in non-GPU compile
  3126. - api.c in linux allow to open a closed socket in TIME_WAIT
  3127. - Display failover only mode in pool menu and allow it to be toggled live.
  3128. - Reinstate check for system queueing lag when the current pool's queue is maxed
  3129. out, there is no staged work, and the work is needed now.
  3130. - Fix harmless warnings.
  3131. - Check the current staged and global queued as well before queueing requests.
  3132. Discard stales before ageing work in the watchdog thread. Queue requests after
  3133. discarding and ageing work in watchdog thread. Display accurate global queued in
  3134. curses output. Reuse variable in age_work().
  3135. - The queueing mechanism has become a complex state machine that is no longer
  3136. predictable. Rewrite it from scratch watching only current queues in flight and
  3137. staged work available on a pool by pool basis.
  3138. - Update debian package configs to v2.6.2
  3139. - Queue an extra request whenever staged work drops below mining thread count in
  3140. hash_pop.
  3141. - Bugfix: Initialize logwin to 1 line high temporarily, to avert PDCurses crash
  3142. - Enable FPGA support by default, as long as their dependencies are met
  3143. - Bugfix: modminer: Search for *ModMiner* in udev ID_MODEL
  3144. - make-release: build with --enable-scrypt
  3145. - miner.php support custom report section joins
  3146. - ICA default fpga_count to work_division if specified
  3147. - FPGA-README document new hidden --icarus-options
  3148. - ICA support 57600 baud rate, up to 8 FPGA and partial working FPGA boards
  3149. - Scrypt mining does not support block testing yet so don't try to print it.
  3150. - Clear the bitforce buffer whenever we get an unexpected result as it has
  3151. likely throttled and we are getting cached responses out of order, and use the
  3152. temperature monitoring as a kind of watchdog to flush unexpected results.
  3153. - It is not critical getting the temperature response in bitforce so don't
  3154. mandatorily wait on the mutex lock.
  3155. - Check there is a cutoff temp actually set in bitforce before using it as a cut
  3156. off value otherwise it may think it's set to zero degrees.
  3157. - We dropped the temporary stopping of curl recruiting on submit_fail by
  3158. mistake, reinstate it.
  3159. - Make threads report in either side of the scanhash function in case we miss
  3160. reporting in when restarting work.
  3161. - Add debugging output when work is found stale as to why.
  3162. - Print the 3 parameters that are passed to applog for a debug line in
  3163. bitforce.c
  3164. - Clear bitforce buffer on init as previously.
  3165. - Add some headroom to the number of curls available per pool to allow for
  3166. longpoll and sendwork curls.
  3167. - Show the correct base units on GPU summary.
  3168. - Bugfix: bitforce: 1 decisecond timeout is unreasonably short, give it a
  3169. second
  3170. - Bugfix: Don't try to log abandon time, since we aren't keeping track
  3171. reasonably
  3172. - Import uthash 1.9.6
  3173. - Bugfix: bitforce: Pause after send_work failures
  3174. - Fix comm error handling to not consider work restarts an error condition
  3175. - comm error bug fix
  3176. - Bugfix: No endian.h on Windows
  3177. - Remove unused mkinstalldirs
  3178. - Display scrypt as being built in as well.
  3179. - Fix build warning about KL_SCRYPT when built without scrypt support.
  3180. - News update.
  3181. - More scrypt intensity information.
  3182. - Minor readme updates.
  3183. - Update README with more build instructions.
  3184. - Remove the low hash count determinant of hardware being sick. A low hash rate
  3185. can be for poor network connectivity or scrypt mining, neither of which are due
  3186. to sick hardware.
  3187. - Style
  3188. - API-README poolpriority changes
  3189. - api.c verify poolpriority parameters before changing pools
  3190. - api.c poolpriority changes
  3191. - Implement shared swap32(yes|tole|tobe) function to handle endian flipping
  3192. 32-bit chunks in blocks
  3193. - Use correct macros for endian handling code
  3194. BFGMiner Version 2.6.1 - July 29, 2012
  3195. - Autoselect --scrypt iff all pools send scrypt work
  3196. - Adapt SCRYPT-README to BFGMiner (directing Bitcoin donations the correct
  3197. direction to reach Con)
  3198. - Remove mentions of Litecoin specifically
  3199. - Bugfix: Fix build without OpenCL but with scrypt
  3200. - make-release: Add SCRYPT-README
  3201. - Bump version 2.6.0, adding SCRYPT README to makefile.
  3202. - Smarter autogen.sh script.
  3203. - Sleeping on intensity decrease is broken, remove it.
  3204. - Sleep only the extra amount of time we overran the dynamic interval in dynamic
  3205. mode.
  3206. - Add scrypt documentation in the form of a separate readme.
  3207. - Fix build error without scrypt enabled.
  3208. - Limit thread concurrency for scrypt to 5xshaders if shaders is specified.
  3209. - Simplify repeated use of gpus[gpu]. in ocl.c
  3210. - Find the nearest power of 2 maximum alloc size for the scrypt buffer that can
  3211. successfully be allocated and is large enough to accomodate the thread
  3212. concurrency chosen, thus mapping it to an intensity.
  3213. - Don't make opt_scrypt mandatory blocking with opencl code.
  3214. - Update kernel versions reflecting changes in the API.
  3215. - Make the thread concurrency and lookup gap options hidden on the command line
  3216. and autotune parameters with a newly parsed --shaders option.
  3217. - Fix target testing with scrypt kernel as it would have been missing shares
  3218. below target.
  3219. - Always create the largest possible padbuffer for scrypt kernels even if not
  3220. needed for thread_concurrency, giving us some headroom for intensity levels.
  3221. - Use the detected maximum allocable memory on a GPU to determine the optimal
  3222. scrypt settings when lookup_gap and thread_concurrency parameters are not given.
  3223. - Check the maximum allocable memory size per opencl device.
  3224. - Add debugging output if buffer allocation fails for scrypt and round up
  3225. bufsize to a multiple of 256.
  3226. - Nonce testing for btc got screwed up, leading to no accepted shares. Fix it.
  3227. - Display size of scrypt buffer used in debug.
  3228. - Allow intensities up to 20 if scrypt is compiled in.
  3229. - Add name to scrypt kernel copyright.
  3230. - Allow lookup gap and thread concurrency to be passed per device and store
  3231. details in kernel binary filename.
  3232. - Ignore negative intensities for scrypt.
  3233. - Change the scale of intensity for scrypt kernel and fix a build warning.
  3234. - Correct target value passed to scrypt kernel.
  3235. - Use 256 output slots for kernels to allow 1 for each worksize.
  3236. - Test the target in the actual scrypt kernel itself saving further
  3237. calculations.
  3238. - Reinstate GPU only opencl device detection.
  3239. - Decrease lookup gap to 1. Does not seem to help in any way being 2.
  3240. - Fix build.
  3241. - Make pad0 and pad1 local variable in scrypt kernel.
  3242. - Constify input variable in scrypt kernel.
  3243. - Send correct values to scrypt kernel to get it finally working.
  3244. - Create command queue before compiling program in opencl.
  3245. - Fix external scrypt algo missing.
  3246. - Limit scrypt to 1 vector.
  3247. - Handle KL_SCRYPT in config write.
  3248. - Get rid of stuff.
  3249. - Don't enqueuewrite buffer at all for pad8 and pass work details around for
  3250. scrypt in dev_blk.
  3251. - Set the correct data for cldata and prepare for pad8 fixes.
  3252. - Get rid of spaces in arrays in scrypt kernel.
  3253. - Start with smaller amount of hashes in cpu mining to enable scrypt to return
  3254. today sometime.
  3255. - Free the scratchbuf memory allocated in scrypt and don't check if CPUs are
  3256. sick since they can't be. Prepare for khash hash rates in display.
  3257. - Add cpumining capability for scrypt.
  3258. - Set scrypt settings and buffer size in ocl.c code to be future modifiable.
  3259. - Cope with when we cannot set intensity low enough to meet dynamic interval by
  3260. inducing a forced sleep.
  3261. - Make dynamic and scrypt opencl calls blocking.
  3262. - Fix nonce submission code for scrypt.
  3263. - Make sure goffset is set for scrypt and drop padbuffer8 to something
  3264. manageable for now.
  3265. - Set up buffer8 for scrypt.
  3266. - Build fix for opt scrypt.
  3267. - Don't check postcalc nonce with sha256 in scrypt.
  3268. - Don't test nonce with sha and various fixes for scrypt.
  3269. - Make scrypt buffers and midstate compatible.
  3270. - Use specific output array entries in scrypt kernel.
  3271. - Provide initial support for the scrypt kernel to compile with and mine scrypt
  3272. with the --scrypt option.
  3273. - Enable completely compiling scrypt out.
  3274. - Begin import of scrypt opencl kernel from reaper.
  3275. BFGMiner Version 2.5.3 - July 29, 2012
  3276. - Bugfix: Add zlib1.dll to Win32 release archive
  3277. - Bugfix: SICK low-hashrate is now determined by being under 1/3 the runtime
  3278. average hashrate
  3279. - Bugfix: cpu_set_t is never #defined, so use CPU_ZERO which is a macro
  3280. BFGMiner Version 2.5.2 - July 29, 2012
  3281. - Limit total number of curls recruited per pool to the number of mining threads
  3282. to prevent blasting the network when we only have one pool to talk to.
  3283. - Bugfix: Skip writing configuration of range-limited int options with negative
  3284. values
  3285. - Bugfix: Correctly attempt to load ~/.bfgminer/bfgminer.conf or
  3286. ~/.cgminer/cgminer.conf as defaults
  3287. - Send X-Minimum-Wait header on longpolls, to explicitly inform pools we will
  3288. handle a response with no delay
  3289. - bitforce: Abandon (only) stale searches for work restarts
  3290. - Keep a counter of enabled pools and use that instead of iterating over the
  3291. pool list. Use that value to ensure we don't set the last remaining active pool
  3292. to the rejecting state.
  3293. - bitforce: Skip out of sending work if work restart requested
  3294. - RPC: Writeup on poolpriority command usage
  3295. - Bugfix: API: Report errors from poolpriority command
  3296. - RPC: New "poolpriority" command to set the order of pool priorities
  3297. - strtok_ts: Thread-safe strtok that work on POSIX or Windows
  3298. - Bugfix: Supress "caught up" event when first switching to a pool
  3299. - Announce and restart work immediately when current pool has caught up to the
  3300. current block
  3301. - Bugfix: Don't consider work stale due to other pools' longpolls, if
  3302. --failover-only is active
  3303. - Refactor stale_work function to only flag actual stale shares
  3304. - stale_work: Don't factor getwork delay into expiry for shares (only for work
  3305. itself)
  3306. - Bugfix: Use pool number rather than numeric pointer to strict pool, in block
  3307. found notice
  3308. - Accept JSON Numbers in config file parameters
  3309. - Improve readability of OPT_HASARG in parse_config
  3310. - Allow JSON false as a valid value for strictly boolean options
  3311. - Include scan-serial in example configuration file
  3312. - fpgautils: add support for 57.6 kBd serial
  3313. - miner.php add a socket RCV timeout for if cgminer is hung and the API thread
  3314. is still running
  3315. - BFL force all code to timeout to avoid hanging
  3316. - Initialise mdplatform.
  3317. - Find the gpu platform with the most devices and use that if no platform option
  3318. is passed.
  3319. - Bugfix: It is not a hardware error if nonces returned from modminer don't
  3320. meet the pool target
  3321. - bitforce & icarus: Log detection failures at debug log level, so we don't
  3322. confuse users who have different devices (which is why these drivers are
  3323. failing detection!)
  3324. - Show "WAIT" (LIFE_WAIT status) if a cgpu is idle waiting for work (pool
  3325. slow/dead)
  3326. - Instead of quitting on failing N retries, just discard the share
  3327. - Bugfix: Don't discard stale shares after submission failure, if user or pool
  3328. wants stales submitted
  3329. - Bugfix: Record discard-during-retry shares in the sharelog
  3330. - Bugfix: Only show Algorithm in RPC summary if CPU mining is actually active
  3331. - OpenCL: Remove intensity from statline, since it overflowed
  3332. - Move "Q" (requested getworks) to second status line as "GW" to balance out
  3333. better
  3334. - Bugfix: Use a mutex to control non-curses output
  3335. - Simplify code to a single vprintf path for curses-less printing
  3336. - Move opt_quiet check to my_log_curses, so it works for curses-less builds
  3337. - Use log_generic for vapplog to cut down on code duplication
  3338. - Bugfix: Copy argv[0] given to dirname()
  3339. - Find the gpu platform with the most devices and use that if no platform
  3340. option is passed.
  3341. - Allow more platforms to be probed if first does not return GPUs.
  3342. - Detach pthread from within the api thread in case it is terminated due to not
  3343. being instantiated before pthread_cancel is called from main, leading to a
  3344. segfault.
  3345. - Debug output per thread hashrate is out by a factor of 1000.
  3346. - Don't check if CPUs are sick since they can't be.
  3347. - Calculate midstate in separate function and remove likely/unlikely macros
  3348. since they're dependent on pools, not code design.
  3349. - Display in debug mode when we're making the midstate locally.
  3350. - Bugfix: Document --no-adl and --gpu-platform
  3351. - Bugfix: Remove redundant documentation of --auto-fan and --auto-gpu (they
  3352. are in GPU-specific options)
  3353. - CPU mining may not be included in binaries, but it's not deprecated for
  3354. BFGMiner either
  3355. - Bugfix: Restore case-insensitivity to input
  3356. - Scroll the device list with up/down arrow keys, if it is overflowed
  3357. - Use select statement to handle input
  3358. - Bugfix: Actually check that the device fits in the individual summary window
  3359. before trying to print it
  3360. - Bugfix: Fix build without curses but with OpenCL
  3361. - Bugfix: Don't show a Temperature key if it isn't known
  3362. - BFGMiner-specific NEWS fix
  3363. BFGMiner Version 2.5.1 - July 13, 2012
  3364. - Replace CPU Algo in header with runtime
  3365. - Bugfix: Calculate diff-1 utility to fix utility-hashrate on pools with
  3366. diff!=1
  3367. - Add utility hashrate to curses display
  3368. - Show units in kh, Gh, Th, etc as needed to use at most 3 integer digits
  3369. - Use FTD2XX.DLL on Windows to autodetect BitFORCE SHA256 devices
  3370. - bitforce_get_result returns -1 on error now.
  3371. - Check return value of read in BFgets
  3372. - Bugfix: modminer: Count hashes done before work restart
  3373. - Bugfix: modminer: Adapt "get nonce" error condition to new scanhash=>-1
  3374. error API
  3375. - Bugfix: Make our Windows nanosleep/sleep replacements standards-compliant
  3376. (which fixes nmsleep) and include compat.h for bitforce (for sleep)
  3377. - miner.php fix rig # when miners fail
  3378. - Fix whitespace mangling.
  3379. - bitforce: Use "full work" vs "nonce range" for kernel name
  3380. - Abbrv. correction
  3381. - Remove superfluous ave_wait
  3382. - Put kname change for broken nonce-range back in
  3383. - Add average wait time to api stats
  3384. - Revert "Merge branch 'ave_time' of https://github.com/pshep/cgminer.git"
  3385. - Add average return time to api stats
  3386. - Missed one nonce-range disabling.
  3387. - Change timeouts to time-vals for accuracy.
  3388. - More BFL tweaks. Add delay between closing and reopening port. Remove buffer
  3389. clear in re-init Add kernel type (mini-rig or single)
  3390. - Revert "Change BFL driver thread initialising to a constant 100ms delay
  3391. between devices instead of a random arrangement."
  3392. - Only try to shut down work cleanly if we've successfully connected and started
  3393. mining.
  3394. - Fix spelling.
  3395. - modminer: Firmware returns 0xffffff00 immediately if we set clockspeed too
  3396. high
  3397. - Bugfix: modminer: Actually count good shares
  3398. - Bugfix: Adapt OpenCL scanhash errors to driver API change (errors are now -1,
  3399. not 0)
  3400. - Remove bitforce_thread_init The delay thing does nothing useful... when long
  3401. poll comes around, all threads restart at the same time anyway.
  3402. - fix API support for big endian machines
  3403. - Bugfix: Use const struct device_api* for mt_disable
  3404. - modminer: Show progress of bitstream upload
  3405. - Bugfix: Don't declare devices SICK if they're just busy initializing
  3406. - Bugfix: Calculate nsec in nmsleep correctly
  3407. - miner.php allow rig names in number buttons
  3408. - Change BFL driver thread initialising to a constant 100ms delay between
  3409. devices instead of a random arrangement.
  3410. - Spelling typo.
  3411. - Time opencl work from start of queueing a kernel till it's flushed when
  3412. calculating dynamic intensity.
  3413. - Modify te scanhash API to use an int64_t and return -1 on error, allowing zero
  3414. to be a valid return value.
  3415. - Check for work restart after the hashmeter is invoked for we lose the hashes
  3416. otherwise contributed in the count.
  3417. - Remove disabled: label from mining thread function, using a separate
  3418. mt_disable function.
  3419. - Style changes.
  3420. - Cope with signals interrupting the nanosleep of nmsleep.
  3421. - Use standard cfsetispeed/cfsetospeed to set baud rate on *nix
  3422. - miner.php split() flagged deprecated in PHP 5.3.0
  3423. - Bugfix: Use nmsleep instead of restart_wait, so we always wait the full time
  3424. - Make long timeout 10seconds on bitforce for when usleep or nanosleep just
  3425. can't be accurate...
  3426. BFGMiner Version 2.5.0 - July 7, 2012
  3427. - Fix BitFORCE driver to not silenty discard valid shares (bug introduced by
  3428. CGMiner merges)
  3429. - Fix --benchmark not working since the dynamic addition of pools and pool
  3430. stats.
  3431. - Make disabling BFL nonce range support a warning since it has to be explicitly
  3432. enabled on the command line now.
  3433. - miner.php allow renaming table headers
  3434. - Make bitforce nonce range support a command line option --bfl-range since
  3435. enabling it decrease hashrate by 1%.
  3436. - Add sanity checking to make sure we don't make sleep_ms less than 0 in
  3437. bitforce.
  3438. - The fastest minirig devices need a significantly smaller starting sleep time.
  3439. - Use a much shorter initial sleep time to account for faster devices and nonce
  3440. range working, and increase it if nonce range fails to work.
  3441. - Use nmsleep instead of usleep in bitforce.
  3442. - Provide a ms based sleep function that uses nanosleep to avoid the inaccuracy
  3443. of usleep on SMP systems.
  3444. - delay_time_ms is always set so need not be initialised in bitforce.
  3445. - Increase bitforce timeout to 10 seconds.
  3446. - Add more hysteresis and poll ~5 times to allow for timer delays in bitforce
  3447. devices.
  3448. - miner.php allow alternating line colours (off by default)
  3449. - Display the actual duration of wait when it is greater than the cutoff.
  3450. - Set nonce to maximum once we determine nonce range support is broken.
  3451. - Initial wait time is always known so no need to zero it beforehand in
  3452. bitforce.
  3453. - No point counting wait time until the work is actually sent to bitforce
  3454. devices.
  3455. - Use string comparison functions instead of explicit comparisons.
  3456. - Account for wait_ms time when nonce_range is in use on BFL.
  3457. - Split nonces up into 1/5 chunks when nonce range is supported.
  3458. - limit clear buffer iterations.
  3459. - Ad fd check to clear buffer.
  3460. - miner.php remove incorrect 'DATE' error message
  3461. - miner.php allow summary header in custom pages
  3462. - Disable nonce range support in BFL when broken support is detected.
  3463. - Restart_wait is only called with a ms value so incorporate that into the
  3464. function.
  3465. - Only try to adjust dev width when curses is built in.
  3466. - miner.php define custom sum fields as a simple array
  3467. - Fix off-by-one error in nonce increment in bfl.
  3468. - Use BE when setting nonce in bitforce nonce range work.
  3469. - Enable nonce range in the normal init sequence for bfl.
  3470. - Queue extra work at 2/3 differently depending on whether we're using nonce
  3471. range or not.
  3472. - Initially enable support for nonce range support on bfl, splitting nonces up
  3473. into 3/4 size and only disable it if it fails on work submit.
  3474. - Attempt to detect nonce range support in BFL by sending work requring its
  3475. support.
  3476. - Limit retrying on busy for up to BITFORCE_TIMEOUT_MS
  3477. - Attempt to initialise while bitforce device returns BUSY.
  3478. - Extend length of string that can be passed to BFL devices.
  3479. - Fix signedness warning.
  3480. - Adjust device width column to be consistent.
  3481. - Use cgpu-> not gpus[] in watchdog thread.
  3482. - Add api stats (sleep time)
  3483. - Timing tweaks Added long and short timeouts, short for detecting throttling,
  3484. long to give up totally. Reset sleep time when device re-initialised Still check
  3485. results after timeout Back up a larger time if result on first poll.
  3486. - Add API Notify counter 'Comms Error'
  3487. - Style police on api.c
  3488. - Do all logging outside of the bitforce mutex locking to avoid deadlocks.
  3489. - Remove applog call from bfwrite to prevent grabbing nested mutexes.
  3490. - Bitforce style changes.
  3491. - Minor style changes.
  3492. - Remove needless roundl define.
  3493. - Made JSON error message verbose.
  3494. - Fine-tune timing adjustment. Also remove old work_restart timing.
  3495. - Check for gpu return times of >= 0, not just 0, to fix intensity dropping to
  3496. -10.
  3497. - Restart is zeroed in the mining thread so no need to do it inside the bitforce
  3498. code.
  3499. - More improvements to comms. BFL return nothing when throttling, so should not
  3500. be considered an error. Instead repeat with a longer delay.
  3501. - Polling every 10ms there's not much point checking the pthread_cond_timedwait
  3502. as it just adds overhead. Simply check the value of work_restart in the bfl main
  3503. polling loop.
  3504. - Use a pthread conditional that is broadcast whenever work restarts are
  3505. required. Create a generic wait function waiting a specified time on that
  3506. conditional that returns if the condition is met or a specified time passed to
  3507. it has elapsed. Use this to do smarter polling in bitforce to abort work, queue
  3508. more work, and check for results to minimise time spent working needlessly.
  3509. - Add busy time to wait time.
  3510. - api.c put version up to 1.14
  3511. - Add tiny delay after writing to BFL Change BFL errors to something more human
  3512. readable Send work busy re-tries after 10ms delay
  3513. - Fix race condition in thread creation that could under some conditions crash
  3514. BFGMiner at startup
  3515. BFGMiner Version 2.4.4 - July 1, 2012
  3516. - Fix builds on non gnu platforms.
  3517. - api.c ensure old mode is always available when not using --api-groups + quit()
  3518. on param errors
  3519. - Implement rudimentary X-Mining-Hashrate support.
  3520. - Detect large swings in temperature when below the target temperature range and
  3521. change fan by amounts dependant on the value of tdiff.
  3522. - Adjust the fanspeed by the magnitude of the temperature difference when in the
  3523. optimal range.
  3524. - Revert "Restarting cgminer from within after ADL has been corrupted only leads
  3525. to a crash. Display a warning only and disable fanspeed monitoring."
  3526. - api.c fix json already closed
  3527. - implement and document API option --api-groups
  3528. - Put upper bounds to under 2 hours that work can be rolled into the future for
  3529. bitcoind will deem it invalid beyond that.
  3530. - define API option --api-groups
  3531. - api.c allow unwell devices to be enabled so they can be cured
  3532. - miner.php - fix/enable autorefresh for custom pages
  3533. - miner.php allow custom summary pages - new 'Mobile' summary
  3534. - Work around pools that advertise very low expire= time inappropriately as this
  3535. leads to many false positives for stale shares detected.
  3536. - Only show ztex board count if any exist.
  3537. - There is no need for work to be a union in struct workio_cmd
  3538. - fpgautils.c include a debug message for all unknown open errors
  3539. - Don't keep rolling work right up to the expire= cut off. Use 2/3 of the time
  3540. between the scantime and the expiry as cutoff for reusing work.
  3541. - Log a specific error when serial opens fail due to lack of user permissions
  3542. - Increase GPU timing resolution to microsecond and add sanity check to ensure
  3543. times are positive.
  3544. - Opencl code may start executing before the clfinish order is given to it so
  3545. get the start timing used for dynamic intensity from before the kernel is
  3546. queued.
  3547. - fpgautils.c - set BAUD rate according to termio spec
  3548. - fpgautils.c - linux ordering back to the correct way
  3549. - miner.php remove unneeded '.'s
  3550. - miner.php add auto refresh options
  3551. - miner.php add 'restart' next to 'quit'
  3552. - miner.php make fontname/size configurable with myminer.php
  3553. - Make the pools array a dynamically allocated array to allow unlimited pools to
  3554. be added.
  3555. - Make the devices array a dynamically allocated array of pointers to allow
  3556. unlimited devices.
  3557. - Dynamic intensity for GPUs should be calculated on a per device basis. Clean
  3558. up the code to only calculate it if required as well.
  3559. - Bugfix: Provide alternative to JSON_ENCODE_ANY for Jansson 1.x
  3560. - Use a queueing bool set under control_lock to prevent multiple calls to
  3561. queue_request racing.
  3562. - Use the work clone flag to determine if we should subtract it from the total
  3563. queued variable and provide a subtract queued function to prevent looping over
  3564. locked code.
  3565. - Don't decrement staged extras count from longpoll work.
  3566. - Count longpoll's contribution to the queue.
  3567. - Increase queued count before pushing message.
  3568. - Test we have enough work queued for pools with and without rolltime
  3569. capability.
  3570. - As work is sorted by age, we can discard the oldest work at regular intervals
  3571. to keep only 1 of the newest work items per mining thread.
  3572. - Roll work again after duplicating it to prevent duplicates on return to the
  3573. clone function.
  3574. - Abstract out work cloning and clone $mining_threads copies whenever a rollable
  3575. work item is found and return a clone instead.
  3576. - api.c display Pool Av in json
  3577. - Take into account average getwork delay as a marker of pool communications
  3578. when considering work stale.
  3579. - Work out a rolling average getwork delay stored in pool_stats.
  3580. - Getwork delay in stats should include retries for each getwork call.
  3581. - Walk through the thread list instead of searching for them when disabling
  3582. threads for dynamic mode.
  3583. - Extend nrolltime to support the expiry= parameter. Do this by turning the
  3584. rolltime bool into an integer set to the expiry time. If the pool supports
  3585. rolltime but not expiry= then set the expiry time to the standard scantime.
  3586. - When disabling fanspeed monitoring on adl failure, remove any twin GPU
  3587. association. This could have been leading to hangs on machines with dual GPU
  3588. cards when ADL failed.
  3589. - modminer: Don't delay 2nd+ FPGAs during work restart
  3590. - Disable OpenCL code when not available.
  3591. - Fix openwrt crashing on regeneratehash() by making check_solve a noop.
  3592. - Fix sign warning.
  3593. - Bugfix: icarus: properly store/restore info and work end times across longpoll
  3594. restarts
  3595. - Enable modminer for release builds
  3596. BFGMiner Version 2.4.3 - June 14, 2012
  3597. - Change device API "name" to reflect driver name abbreviation instead of device type name
  3598. - miner.php allow a separate user settings file
  3599. - modminer: Implement extended device stats to expose each Board to the RPC API
  3600. - Bugfix: Use new cgpu->thr for longpoll waking
  3601. - bitforce: Remove 4.5s delay before polling starts, since MiniRig finishes sooner
  3602. - FPGA - allow device detect override without an open failure
  3603. - Bugfix: Missing printf value in merge from cgminer
  3604. - Ensure C compiler is in C99 mode
  3605. - Add CPU core count detection for BSD/Mac
  3606. - Set CPU mining idle priority on Windows
  3607. - can_roll and should_roll should have no bearing on the cycle period within the
  3608. miner_thread so remove it.
  3609. - Check for strategy being changed to load balance when enabling LPs.
  3610. - Check that all threads on the device that called get_work are waiting on
  3611. getwork before considering the pool lagging.
  3612. - Iterate over each thread belonging to each device in the hashmeter instead of
  3613. searching for them now that they're a list.
  3614. - When using rotate pool strategy, ensure we only select from alive enabled
  3615. pools.
  3616. - Start longpoll from every pool when load balance strategy is in use.
  3617. - Add mandatory and block fields to the work struct. Flag any shares that are
  3618. detected as blocks as mandatory to submit, along with longpoll work from a
  3619. previously rejecting pool.
  3620. - Consider the fan optimal if fanspeed is dropping but within the optimal speed
  3621. window.
  3622. - Fix typo in some API messages (succeess/success)
  3623. - api.c MMQ stat bugs
  3624. - Bugfix: Fix warnings when built without libudev support
  3625. - Bugfix: slay a variety of warnings
  3626. - Bugfix: modminer: Fix unsigned/signed comparison and similar warnings
  3627. - API add ModMinerQuad support
  3628. - Bugfix: Honour forceauto parameter in serial_detect functions
  3629. - modminer: Temperature sensor improvements
  3630. - modminer: Make log messages more consistent in format
  3631. - Only adjust GPU speed up if the fanspeed is within the normal fanrange and
  3632. hasn't been turned to maximum speed under overheat conditions.
  3633. - ModMiner use valid .name
  3634. - New driver: BTCFPGA ModMiner
  3635. - Abstract generally useful FPGA code into fpgautils.c
  3636. - API add stats for pool getworks
  3637. - miner.php option to hide specific fields from the display
  3638. - miner.php add version numbers to the summary page
  3639. - Update debian configs to v2.4.2
  3640. - Add API and FPGA READMEs into Makefile to be included in source distribution.
  3641. - Icarus - fix unit64_t printf warnings
  3642. BFGMiner Version 2.4.2 - June 2, 2012
  3643. - Use epoll to immediately interrupt Icarus with new work on longpolls (Linux)
  3644. - API.class compiled with Java SE 6.0_03 - works with Win7x64
  3645. - miner.php highlight devs too slow finding shares (possibly failing)
  3646. - API update version to V1.11 and document changes
  3647. - API save default config file if none specified
  3648. - api.c save success incorrectly returns error
  3649. - api.c replace BUFSIZ (linux/windows have different values)
  3650. - Move RPC API content out of README to API-README
  3651. - Open a longpoll connection if a pool is in the REJECTING state as it's the
  3652. only way to re-enable it automatically.
  3653. - Use only one longpoll as much as possible by using a pthread conditional
  3654. broadcast that each longpoll thread waits on and checks if it's the current pool
  3655. before
  3656. - If shares are known stale, don't use them to decide to disable a pool for
  3657. sequential rejects.
  3658. - Restarting cgminer from within after ADL has been corrupted only leads to a
  3659. crash. Display a warning only and disable fanspeed monitoring.
  3660. - Icarus: fix abort calculation/allow user specified abort
  3661. - Icarus: make --icarus-timing hidden and document it in FPGA-README
  3662. - Icarus: high accuracy timing and other bitstream speed support
  3663. - add-MIPSEB-to-icarus-for-BIG_ENDIAN
  3664. - work_decode only needs swab32 on midstate under BIG ENDIAN
  3665. - add compile command to api-example.c
  3666. - save config bugfix: writing an extra ',' when no gpus
  3667. - Add dpkg-source commits
  3668. BFGMiner Version 2.4.1 - May 6, 2012
  3669. - Icarus: Calibrate hashrate yet even more accurately
  3670. - In the unlikely event of finding a block, display the block solved count with
  3671. the pool it came from for auditing.
  3672. - Display the device summary on exit even if a device has been disabled.
  3673. - Use correct pool enabled enums in api.c.
  3674. - Import Debian packaging configs
  3675. - Ensure we test for a pool recovering from idle so long as it's not set to
  3676. disabled.
  3677. - Fix pool number display.
  3678. - Give BFGMiner -T message only if curses is in use.
  3679. - Reinit_adl is no longer used.
  3680. - API 'stats' allow devices to add their own stats also for testing/debug
  3681. - API add getwork stats to BFGMiner - accesable from API 'stats'
  3682. - Don't initialise variables to zero when in global scope since they're already
  3683. initialised.
  3684. - Get rid of unitialised variable warning when it's false.
  3685. - Move a pool to POOL_REJECTING to be disabled only after 3 minutes of
  3686. continuous rejected shares.
  3687. - Some tweaks to reporting and logging.
  3688. - API support new pool status
  3689. - Add a temporarily disabled state for enabled pools called POOL_REJECTING and
  3690. use the work from each longpoll to help determine when a rejecting pool has
  3691. started working again. Switch pools based on the multipool strategy once a pool
  3692. is re-enabled.
  3693. - Removing extra debug
  3694. - Fix the benchmark feature by bypassing the new networking code.
  3695. - Reset sequential reject counter after a pool is disabled for when it is
  3696. re-enabled.
  3697. - ztex updateFreq was always reporting on fpga 0
  3698. - Trying harder to get 1.15y working
  3699. - Specifying threads on multi fpga boards extra cgpu
  3700. - Missing the add cgpu per extra fpga on 1.15y boards
  3701. - API add last share time to each pool
  3702. - Don't try to reap curls if benchmarking is enabled.
  3703. BFGMiner Version 2.4.0 - May 3, 2012
  3704. - Only show longpoll warning once when it has failed.
  3705. - Convert hashes to an unsigned long long as well.
  3706. - Detect pools that have issues represented by endless rejected shares and
  3707. disable them, with a parameter to optionally disable this feature.
  3708. - Bugfix: Use a 64-bit type for hashes_done (miner_thread) since it can overflow
  3709. 32-bit on some FPGAs
  3710. - Implement an older header fix for a label existing before the pthread_cleanup
  3711. macro.
  3712. - Limit the number of curls we recruit on communication failures and with
  3713. delaynet enabled to 5 by maintaining a per-pool curl count, and using a pthread
  3714. conditional that wakes up when one is returned to the ring buffer.
  3715. - Generalise add_pool() functions since they're repeated in add_pool_details.
  3716. - Bugfix: Return failure, rather than quit, if BFwrite fails
  3717. - Disable failing devices such that the user can attempt to re-enable them
  3718. - Bugfix: thread_shutdown shouldn't try to free the device, since it's needed
  3719. afterward
  3720. - API bool's and 1TBS fixes
  3721. - Icarus - minimise code delays and name timer variables
  3722. - api.c V1.9 add 'restart' + redesign 'quit' so thread exits cleanly
  3723. - api.c bug - remove extra ']'s in notify command
  3724. - Increase pool watch interval to 30 seconds.
  3725. - Reap curls that are unused for over a minute. This allows connections to be
  3726. closed, thereby allowing the number of curl handles to always be the minimum
  3727. necessary to not delay networking.
  3728. - Use the ringbuffer of curls from the same pool for submit as well as getwork
  3729. threads. Since the curl handles were already connected to the same pool and are
  3730. immediately available, share submission will not be delayed by getworks.
  3731. - Implement a scaleable networking framework designed to cope with any sized
  3732. network requirements, yet minimise the number of connections being reopened. Do
  3733. this by create a ring buffer linked list of curl handles to be used by getwork,
  3734. recruiting extra handles when none is immediately available.
  3735. - There is no need for the submit and getwork curls to be tied to the pool
  3736. struct.
  3737. - Do not recruit extra connection threads if there have been connection errors
  3738. to the pool in question.
  3739. - We should not retry submitting shares indefinitely or we may end up with a
  3740. huge backlog during network outages, so discard stale shares if we failed to
  3741. submit them and they've become stale in the interim.
  3742. BFGMiner Version 2.3.6 - April 29, 2012
  3743. - Shorten stale share messages slightly.
  3744. - Protect the freeing of current_hash under mutex_lock to prevent racing on it
  3745. when set_curblock is hit concurrently.
  3746. - Change default behaviour to submitting stale, removing the --submit-stale
  3747. option and adding a --no-submit-stale option.
  3748. - Make sure to start the getwork and submit threads when a pool is added on the
  3749. fly. This fixes a crash when a pool is added to running BFGMiner and then
  3750. switched to.
  3751. - Faster hardware can easily outstrip the speed we can get work and submit
  3752. shares when using only one connection per pool.
  3753. - Test the queued list to see if any get/submits are already queued and if they
  3754. are, start recruiting extra connections by generating new threads.
  3755. - This allows us to reuse network connections at low loads but recuit new open
  3756. connections as they're needed, so that BFGMiner can scale to hardware of any
  3757. size.
  3758. BFGMiner Version 2.3.5 - April 28, 2012
  3759. - Restarting BFGMiner leads to a socket that can't be bound for 60 seconds, so
  3760. increase the interval that API binding waits to 30 seconds to minimise the
  3761. number of times it will retry, spamming the logs.
  3762. - Give a longpoll message for any longpoll that detects a block change, primary
  3763. or backup, and also display which pool it was.
  3764. - Decrease utility display to one decimal place.
  3765. - Small cosmetic output alignment.
  3766. - Add pool number to stale share message.
  3767. - Add space to log output now that there is more screen real estate available.
  3768. - Indentation clean up.
  3769. - Remove thread id display from rejected shares as well.
  3770. - Merge pull request #185 from Diapolo/diakgcn
  3771. - add goffset support for diakgcn with -v 1 and update kernel version
  3772. - Set have_longpoll to true when there is at least one pool with longpoll.
  3773. - Don't display the thread ID since it adds no useful information over the
  3774. device number.
  3775. - Don't display the first 8 bytes of a share since they will always be zero at
  3776. >= 1 difficulty.
  3777. - work->longpoll is reset across test_work_current so we need to recheck what
  3778. pool it belongs to.
  3779. - Use longpolls from backup pools with failover-only enabled just to check for
  3780. block changes, but don't use them as work.
  3781. - Start longpoll only after we have tried to extract the longpoll URL.
  3782. - Check for submitold flag on resubmit of shares, and give different message for
  3783. stale shares on retry.
  3784. - Check for submitold before submitstale.
  3785. - Don't force fresh curl connections on anything but longpoll threads.
  3786. - Create one longpoll thread per pool, using backup pools for those pools that
  3787. don't have longpoll.
  3788. - Use the work created from the longpoll return only if we don't have
  3789. failover-enabled, and only flag the work as a longpoll if it is the current
  3790. pool.
  3791. - This will work around the problem of trying to restart the single longpoll
  3792. thread on pool changes that was leading to race conditions.
  3793. - It will also have less work restarts from the multiple longpolls received from
  3794. different pools.
  3795. - Remove the invalid entries from the example configuration file.
  3796. - Add support for latest ATI SDK on windows.
  3797. - Export missing function from libztex.
  3798. - miner.php change socktimeoutsec = 10 (it only waits once)
  3799. - Bugfix: Make initial_args a const char** to satisfy exec argument type warning
  3800. (on Windows only)
  3801. - miner.php add a timeout so you don't sit and wait ... forever
  3802. - Create discrete persistent submit and get work threads per pool, thus allowing
  3803. all submitworks belonging to the same pool to reuse the same curl handle, and
  3804. all getworks to reuse their own handle.
  3805. - Use separate handles for submission to not make getwork potentially delay
  3806. share submission which is time critical.
  3807. - This will allow much more reusing of persistent connections instead of opening
  3808. new ones which can flood routers.
  3809. - This mandated a rework of the extra longpoll support (for when pools are
  3810. switched) and this is managed by restarting longpoll cleanly and waiting for a
  3811. thread join.
  3812. - miner.php only show the current date header once
  3813. - miner.php also add current time like single rig page
  3814. - miner.php display rig 'when' table at top of the multi-rig summary page
  3815. - README - add some Ztex details
  3816. - api.c include zTex in the FPGA support list
  3817. - api.c ensure 'devs' shows PGA's when only PGA code is compiled
  3818. - miner.c sharelog code consistency and compile warning fix
  3819. - README correct API version number
  3820. - README spelling error
  3821. - api.c combine all pairs of sprintfs()
  3822. - api.c uncomment and use BLANK (and COMMA)
  3823. - Code style cleanup
  3824. - Annotating frequency changes with the changed from value
  3825. - README clarification of 'notify' command
  3826. - README update for API RPC 'devdetails'
  3827. - api.c 'devdetails' list static details of devices
  3828. - Using less heap space as my TP-Link seems to not handle this much
  3829. BFGMiner Version 2.3.4 - April 26, 2012
  3830. - New maintainership of code with modular FPGA/GPU focus, under BFGMiner name
  3831. - Complete working support for cross-compiling Windows builds on Linux.
  3832. - Fix usage of low --scan-time settings so it doesn't busy-loop
  3833. - JSON API: Add new 'devdetail' command to get fixed device information
  3834. - JSON API: Implement driver abstraction for extra device status
  3835. - Icarus: Use epoll to wait for serial port input properly, when available
  3836. - Icarus: Workaround buggy USB-UART that causes Icarus to stop mining rarely
  3837. - Icarus: Estimate mining hashrate correctly, calibrated from real-world data
  3838. - Icarus: Parallelize work setup with Icarus hash search improving performance
  3839. - Icarus: More reliable detection and runtime
  3840. - OpenCL: Move GPU-specific data fetching from JSON API to OpenCL driver
  3841. - OpenCL: Dynamically load OpenCL library, to be more vendor-independent and
  3842. allow use without actually having OpenCL (i.e. FPGA-only rigs).
  3843. CGMiner Version 2.3.4 - April 25, 2012
  3844. - Extensively document the cause of GPU device issues and the use of --gpu-map.
  3845. - Support for share logging
  3846. - Detect poorly performing combination of SDK and phatk kernel and add verbose
  3847. warning at startup.
  3848. - Icarus update to new add_cgpu()
  3849. - Icarus driver working with Linux and Windows
  3850. - api.c fix unused variable compile warning
  3851. - Display all OpenCL devices when -n is called as well to allow debugging of
  3852. differential mapping of OpenCL to ADL.
  3853. - Add a --gpu-map option which will allow arbitrarily mapping ADL devices to
  3854. OpenCL devices for instances where association by enumeration alone fails.
  3855. - Increase upper limit on number of extra items to queue as some FPGA code can't
  3856. yet reliably keep many devices busy.
  3857. - Display configuration file information when -c option is passed and only when
  3858. file exists on loading default config file.
  3859. - Display configuration file loaded, if any, and debug output if configuration
  3860. file parsing failed.
  3861. - Add missing ztex header to Makefile for distribution.
  3862. - Document long-form COM port device names on Windows, required to specify
  3863. serial ports above 9
  3864. - Include ztex bitstreams firmware in distribution and install if configured in.
  3865. - Style police on driver-ztex.c
  3866. - work_restart should only be changed by cgminer.c now
  3867. - Shut down the api cleanly when the api thread is cancelled. This should allow
  3868. the api socket to be closed successfully to next be reopened with app_restart.
  3869. - Make a union for cgpu device handles, and rename "device" to "device_ztex"
  3870. since it's Ztex-specific
  3871. - Initialise name variable.
  3872. - Remove unnecessary check for variable that always has memory allocated.
  3873. - Bugfix: Missing "break" no-op in default case
  3874. - Make the status window and log window as large as can fit on startup,
  3875. rechecking to see if it can be enlarged after the fact. This allows any number
  3876. of devices to be displayed provided the window is made long enough without
  3877. corrupting the output.
  3878. - Style police on libztex.c.
  3879. - API add removepool like the screen interface
  3880. - api.c escape required characters in return strings + pools returns the
  3881. username
  3882. - Set lp_path to NULL after free for consistency.
  3883. - Removing dmalloc import left behind by mistake
  3884. - Fixing leak in resp_hdr_cb
  3885. - miner.php warning highlight GPU stats if they are zero (e.g. ADL not enabled)
  3886. - miner.php highlight any device that isn't 'Enabled'
  3887. - miner.php highlight any Status that isn't 'Alive'
  3888. - miner.php optionally support multiple rigs
  3889. - Initial Ztex support 1.15x board.
  3890. CGMiner Version 2.3.3 - April 15, 2012
  3891. - Don't even display that cpumining is disabled on ./configure to discourage
  3892. people from enabling it.
  3893. - Do a complete cgminer restart if the ATI Display Library fails, as it does on
  3894. windows after running for some time, when fanspeed reporting fails.
  3895. - Cache the initial arguments passed to cgminer and implement an attempted
  3896. restart option from the settings menu.
  3897. - Disable per-device status lines when there are more than 8 devices since
  3898. screen output will be corrupted, enumerating them to the log output instead at
  3899. startup.
  3900. - Reuse Vals[] array more than W[] till they're re-initialised on the second
  3901. sha256 cycle in poclbm kernel.
  3902. - Minor variable alignment in poclbm kernel.
  3903. - Make sure to disable devices with any status not being DEV_ENABLED to ensure
  3904. that thermal cutoff code works as it was setting the status to DEV_RECOVER.
  3905. - Re-initialising ADL simply made the driver fail since it is corruption over
  3906. time within the windows driver that's responsible. Revert "Attempt to
  3907. re-initialise ADL should a device that previously reported fanspeed stops
  3908. reporting it."
  3909. - Microoptimise poclbm kernel by ordering Val variables according to usage
  3910. frequency.
  3911. CGMiner Version 2.3.2 - March 31, 2012
  3912. - Damping small changes in hashrate so dramatically has the tendency to always
  3913. make the hashrate underread so go back to gentle damping instead.
  3914. - Revert the crossover of variables from Vals to W in poclbm kernel now that
  3915. Vals are the first declared variables so they're used more frequently.
  3916. - Vals variables appearing first in the array in poclbm is faster.
  3917. - Change the preferred vector width to 1 for Tahiti only, not all poclbm
  3918. kernels.
  3919. - Use a time constant 0.63 for when large changes in hashrate are detected to
  3920. damp change in case the large change is an aliasing artefact instead of a real
  3921. chang
  3922. - Only increment stale counter if the detected stales are discarded.
  3923. - Attempt to re-initialise ADL should a device that previously reported fanspeed
  3924. stops reporting it.
  3925. - Move the ADL setup and clearing to separate functions and provide a reinit_adl
  3926. function to be used when adl fails while running.
  3927. - Use slightly more damping on the decay time function in the never-ending quest
  3928. to smooth off the hashmeter.
  3929. - Set the starting fanspeed to a safe and fairly neutral 50% when autofan is
  3930. enabled.
  3931. - Provide locking around updates of cgpu hashrates as well to prevent multiple
  3932. threads accessing data fields on the same device.
  3933. - Display the beginning of the new block in verbose mode in the logs.
  3934. - Reinstate old diablo kernel variable ordering from 120222, adding only goffset
  3935. and vector size hint. The massive variable ordering change only helped one SDK
  3936. on
  3937. - Change the version number on the correct kernels.
  3938. - api.c devicecode/osinfo incorrectly swapped for json
  3939. - Add extensive instructions on how to make a native windows build.
  3940. - Update version numbers of poclbm and diablo kernels as their APIs have also
  3941. changed.
  3942. - Use global offset parameter to diablo and poclbm kernel ONLY for 1 vector
  3943. kernels.
  3944. - Use poclbm preferentially on Tahiti now regardless of SDK.
  3945. - Remove unused constant passed to poclbm.
  3946. - Clean up use of macros in poclbm and use bitselect everywhere possible.
  3947. - Add vector type hint to diablo kernel.
  3948. - Add worksize and vector attribute hints to the poclbm kernel.
  3949. - Spaces for non-aligned variables in poclbm.
  3950. - Swap Vals and W variables where they can overlap in poclbm.
  3951. - More tidying of poclbm.
  3952. - Tidy up first half of poclbm.
  3953. - Clean up use of any() by diablo and poclbm kernels.
  3954. - Minor variable symmetry changes in poclbm.
  3955. - Put additions on separate lines for consistency in poclbm.
  3956. - Consolidate last use of W11 into Vals4 in poclbm.
  3957. - Change email due to SPAM
  3958. - api.c miner.php add a '*' to the front of all notify counters - simplifies
  3959. future support of new counters
  3960. - miner.php add display 'notify' command
  3961. - Small change to help arch's without processor affinity
  3962. - Fix bitforce compile error
  3963. - api.c notify should report disabled devices also - of course
  3964. - API returns the simple device history with the 'notify' command
  3965. - code changes for supporting a simple device history
  3966. - api.c Report an OS string in config to help with device issues
  3967. - api.c fix Log Interval - integer in JSON
  3968. - api.c config 'Device Code' to show list of compiled devices + README
  3969. - api.c increase buffer size close to current code allowable limit
  3970. - removed 8-component vector support from kernel, as this is not supported in
  3971. CGMINER anyway
  3972. - forgot to update kernel modification date, fixed ;)
  3973. - reordered an addition in the kernel, which results in less instructions used
  3974. in the GPU ISA code for GCN
  3975. - miner.php: option for readonly or check privileged access
  3976. - Ignore reduntant-with-build options --disable-gpu, --no-adl, and --no-restart
  3977. - miner.php: ereg_replace is DEPRECATED so use preg_replace instead
  3978. - Make curses TUI support optional at compile-time.
  3979. - Bugfix: AC_ARG_WITH provides withval instead of enableval
  3980. - miner.php split devs output for different devices
  3981. - api.c: correct error messages
  3982. - icarus.c modify (regular) timeout warning to only be debug
  3983. - icarus.c set the windows TODO timeout
  3984. - Allow specifying a specific driver for --scan-serial
  3985. - optimized nonce-check and output code for -v 2 and -v 4
  3986. - Bugfix: Check for libudev header (not just library) in configure, and document
  3987. optional dependency
  3988. - Add API support for Icarus and Bitforce
  3989. - Next API version is 1.4 (1.3 is current)
  3990. - README/api.c add "When" the request was processed to STATUS
  3991. - Bugfix: ZLX to read BitFORCE temp, not ZKX -.-
  3992. - Use libudev to autodetect BitFORCE GPUs, if available
  3993. - Use the return value of fan_autotune to set fan_optimal instead of passing it
  3994. as a pointer.
  3995. - Pass the lasttemp from the device we're using to adjust fanspeed in twin
  3996. devices.
  3997. - fix the name to 3 chars, fix the multi-icarus support
  3998. - Bugfix: "-S auto" is the default if no -S is specified, and there is no such
  3999. delay in using it
  4000. - README add information missing from --scan-serial
  4001. - Update README RPC API Version comment
  4002. - Bugfix: Allow enabling CPU even without OpenCL support
  4003. - Change failed-to-mine number of requested shares messge to avoid segfault on
  4004. recursive calling of quit().
  4005. - Get rid of extra char which is just truncated in poclbm kernel.
  4006. - only small code formating changes
  4007. - removed vec_step() as this could lead to errors on older SDKs
  4008. - unified code for generating nonce in kernel and moved addition of base to the
  4009. end -> faster
  4010. CGMiner Version 2.3.1 - February 24, 2012
  4011. - Revert input and output code on diakgcn and phatk kernels to old style which
  4012. worked better for older hardware and SDKs.
  4013. - Add a vector*worksize parameter passed to those kernels to avoid one op.
  4014. - Increase the speed of hashrate adaptation.
  4015. - Only send out extra longpoll requests if we want longpolls.
  4016. - API implement addpool command
  4017. - API return the untouched Total MH also (API now version 1.3)
  4018. - Add enable/disablepool to miner.php example and reduce font size 1pt
  4019. CGMiner Version 2.3.0 - February 23, 2012
  4020. - Consider extra longpoll work items as staged_extra so as to make sure we queue
  4021. more work if queueing regular work items as longpolls.
  4022. - Use diablo kernel on all future SDKs for Tahiti and set preferred vector width
  4023. to 1 on poclbm kernel only.
  4024. - Explicitly type the constants in diakgcn kernel as uint, to be in line with
  4025. poclbm kernel.
  4026. - Reset all hash counters at the same time as resetting start times to get
  4027. accurate hashrates on exiting which is mandatory for benchmarking.
  4028. - Report thread out before it starts to avoid being flagged as sick when waiting
  4029. for the first work item.
  4030. - Don't disable and re-enable devices as they may recover and in the meantime
  4031. have their status set to OFF.
  4032. - API new commands enablepool and disablepool (version already incremented)
  4033. - Tolerate new-format temperature readings for bitforce
  4034. - Modify cgminer.c pool control to allow API to call it
  4035. - Bugfix: Fix BitFORCE driver memory leak in debug logging
  4036. - Extra byte was being unused in poclbm leading to failure on some platforms.
  4037. - Explicitly type the constants in poclbm kernel as uint.
  4038. - Don't save 'include' when saving the configuration
  4039. - Allow configuration file to include another recursively
  4040. - Use the SDK and hardware information to choose good performing default
  4041. kernels.
  4042. - Move phatk kernel to offset vector based nonce bases as well.
  4043. - Add a --benchmark feature which works on a fake item indefinitely to compare
  4044. device performance without any server or networking influence.
  4045. - Allow writing of multiple worksizes to the configuration file.
  4046. - Allow writing of multiple vector sizes to the configuration file.
  4047. - Allow writing of multiple kernels to the configuration file.
  4048. - Allow multiple different kernels to be chosen per device.
  4049. - Allow the worksize to be set per-device.
  4050. - Allow different vectors to be set per device.
  4051. - If we're well below the target temperature, increase gpu engine speed back to
  4052. maximum in case we have gotten lost between profiles during an idle period.
  4053. - We should be setting the value of fan_optimal, not its address.
  4054. - As all kernels will be new versions it's an opportunity to change the .bin
  4055. format and make it simpler. Specifying bitalign is redundant and long can be l.
  4056. - Use any() in kernel output code.
  4057. - Put the nonce for each vector offset in advance, avoiding one extra addition
  4058. in the kernel.
  4059. - Reset times after all mining threads are started to make estimating hashrates
  4060. easier at startup.
  4061. - Bugfix: allow no-exec (NX) stack
  4062. - Fix minor warning.
  4063. - fix the bitforce.c code style follow 1TBS
  4064. - fix icarus.c compile warning
  4065. - small changes to speedup no vec for AMD 898.1 OCL runtime
  4066. - Update licensing to GPL V3.
  4067. - Reset the longpoll flag after it's been used once to prevent it restarting
  4068. work again.
  4069. - Begin import of DiabloMiner kernel.
  4070. - Modify API debug messages to say API instead of DBG
  4071. - When API shuts down cgminer don't kill itself
  4072. - Don't make rolled work from the longpoll be seen as other longpoll work items.
  4073. - API add 'privileged' command so can verify access level
  4074. - Set the lp_sent variable under lock since there will almost always be a race
  4075. on setting this variable, potentially leading to multiple LPs being sent out.
  4076. - API restrict access to all non display commands by default
  4077. - Update API version to 1.2 for new 'Log Interval'
  4078. - API add --log Interval to 'config' reply
  4079. - --api-allow special case 0/0 means all
  4080. CGMiner Version 2.2.7 - February 20, 2012
  4081. - Send out extra longpolls when we have switched pools and the longpoll thread
  4082. is still bound to the old one. This is particularly useful with p2pool where
  4083. longpolls do not correlate with main bitcoin block change and would have led to
  4084. high reject rates on failover.
  4085. - Store whether a work item is the result of a longpoll or not in struct work
  4086. and use it to help determine block changes directly from the work longpoll bool.
  4087. - Keep track of when a longpoll has been sent for a pool and if the current pool
  4088. is requesting work but has not sent a longpoll request, convert one of the work
  4089. items to a longpoll.
  4090. - Store the longpoll url in the pool struct and update it from the pool_active
  4091. test in case it changes. This is to allow further changes to longpoll management
  4092. on switching pools.
  4093. - Re-check for a longpoll supporting pool every 30 seconds if none is found
  4094. initially.
  4095. - Report threads as busy waiting on getwork on startup to avoid them being
  4096. flagged sick on startup during slow networking.
  4097. - Allow devices that are disabled due to overheating to be flagged as recovering
  4098. instead of disabling them and re-enable them if they're below ideal temperatures
  4099. - Tahiti prefers worksize 64 with poclbm.
  4100. - No need to expressly retain the opencl program now that the zero binary issue
  4101. is fixed. This actually fixes cgminer to work with the latest SDK included with
  4102. the ATI catalyst driver 12.2.
  4103. - Show error code on any opencl failure status.
  4104. - Add detection for version 898.1 SDK as well but only give SDK 2.6 warning once
  4105. on startup instead of with each device initialisation.
  4106. - Always use a fresh connection for longpoll as prolonged persistent connections
  4107. can fail for many reasons.
  4108. - Keep track of intended engine clock speed and only adjust up if it's higher
  4109. than the last intended speed. This avoids setting the clock speed to one
  4110. relative to a lower profile one by mistake.
  4111. - Use gpu-memdiff on startup if an engine clockspeed is set and a memdiff value
  4112. is set.
  4113. - Revert "Adjust engine speed up according to performance level engine setting,
  4114. not the current engine speed." - ineffectual.
  4115. - Freeze the queues on all threads that are sent the pause message to prevent
  4116. them trying to start up again with saved pings in their queues.
  4117. - Updates to diakgcn kernel/
  4118. - Consolidate all screen updates to the watchdog thread and touch both windows
  4119. before refresh.
  4120. - Curses will be disabled in clean_up so don't do it early in kill_work, and
  4121. disable_adl so that GPU settings may be restored to normal in case shutting down
  4122. curses leads to instability on windows.
  4123. - Stop the mining threads before trying to kill them.
  4124. - Plain refresh() does not give reliably screen updates so get rid of all uses
  4125. of it.
  4126. - First release with working diakgcn kernel.
  4127. CGMiner Version 2.2.6 - February 16, 2012
  4128. - Provide warning on each startup about sdk 2.6
  4129. - Fix unused warnings on win32.
  4130. - bitforce: Simplify BFopen WIN32 ifdef/else
  4131. - Fix initialization warning with jansson 1.3
  4132. - bitforce: Cleanup extraneous TODO that isn't needed
  4133. - Move tcsetattr (and new tcflush) into *nix BFopen to simplify things a bit
  4134. - Add message explaining 2nd thread disabling for dynamic mode and how to tune
  4135. it.
  4136. - Move logwindow down once number of devices is known.
  4137. - Automatically choose phatk kernel for bitalign non-gcn ATI cards, and then
  4138. only select poclbm if SDK2.6 is detected.
  4139. - Allow the refresh interval to be adjusted in dynamic intensity with a
  4140. --gpu-dyninterval parameter.
  4141. - Make curses display visible right from the beginning and fix the window sizes
  4142. so the initial messages don't get lost once the status window is drawn.
  4143. - The amount of work scanned can fluctuate when intensity changes and since we
  4144. do this one cycle behind, we increment the work more than enough to prevent
  4145. repeati
  4146. - bitforce: Set a 30 second timeout for serial port on Windows, since the
  4147. default is undefined
  4148. - Use PreVal4addT1 instead of PreVal4 in poclbm kernel.
  4149. - Import PreVal4 and PreVal0 into poclbm kernel.
  4150. - Import more prepared constants into poclbm kernel.
  4151. - Keep variables in one array but use Vals[] name for consistency with other
  4152. kernel designs.
  4153. - Replace constants that are mandatorily added in poclbm kernel with one value.
  4154. - Remove addition of final constant before testing for result in poclbm kernel.
  4155. - Hand optimise variable addition order.
  4156. - Hand optimise first variable declaration order in poclbm kernel.
  4157. - Radical reordering machine based first pass to change variables as late as
  4158. possible, bringing their usage close together.
  4159. - fix strcpy NULL pointer if env HOME unset.
  4160. - bitforce: Disable automatic scanning when at least one device is specified
  4161. manually
  4162. - Unroll all poclbm additions to enable further optimisations.
  4163. CGMiner Version 2.2.5 - February 13, 2012
  4164. - Make output buffer write only as per Diapolo's suggestion.
  4165. - Constify nonce in poclbm.
  4166. - Use local and group id on poclbm kernel as well.
  4167. - Microoptimise phatk kernel on return code.
  4168. - Adjust engine speed up according to performance level engine setting, not the
  4169. current engine speed.
  4170. - Try to load a binary if we've defaulted to the poclbm kernel on SDK2.6
  4171. - Use the poclbm kernel on SDK2.6 with bitalign devices only if there is no
  4172. binary available.
  4173. - Further generic microoptimisations to poclbm kernel.
  4174. - The longstanding generation of a zero sized binary appears to be due to the
  4175. OpenCL library putting the binary in a RANDOM SLOT amongst 4 possible binary
  4176. locations. Iterate over each of them after building from source till the real
  4177. binary is found and use that.
  4178. - Fix harmless warnings with -Wsign-compare to allow cgminer to build with -W.
  4179. - Fix missing field initialisers warnings.
  4180. - Put win32 equivalents of nanosleep and sleep into compat.h fixing sleep() for
  4181. adl.c.
  4182. - Restore compatibility with Jansson 1.3 and 2.0 (api.c required 2.1)
  4183. - Modularized logging, support for priority based logging
  4184. - Move CPU chipset specific optimization into device-cpu
  4185. CGMiner Version 2.2.4 - February 11, 2012
  4186. - Fix double definition of A0 B0 to zeroA zeroB.
  4187. - Retain cl program after successfully loading a binary image. May decrease
  4188. failures to build kernels at startup.
  4189. - Variable unused after this so remove setting it.
  4190. - BFI INT patching is not necessarily true on binary loading of files and not
  4191. true on ATI SDK2.6+. Report bitalign instead.
  4192. - Various string fixes for reject reason.
  4193. - Generalize --temp-cutoff and implement support for reading temperature from
  4194. BitFORCE FPGAs
  4195. - Change message from recovered to alive since it is used on startup as well as
  4196. when a pool has recovered.
  4197. - Start mining as soon as any pool is found active and rely on the watchpool
  4198. thread to bring up other pools.
  4199. - Delayed responses from testing pools that are down can hold up the watchdog
  4200. thread from getting to its device testing code, leading to false detection of
  4201. the GPU not checking in, and can substantially delay auto gpu/auto fan
  4202. management leading to overheating. Move pool watching to its own thread.
  4203. - Bugfix: BitFORCE index needs to be static to count correctly
  4204. - Space out retrieval of extra work according to the number of mining threads.
  4205. - Make shutdown more robust. Enable the input thread only after the other
  4206. threads exist. Don't kill off the workio thread and use it to exit main() only
  4207. if there is an unexpected problem. Use kill_work() for all anticipated shutdowns
  4208. where possible. Remove unused thread entry.
  4209. - Change poclbm version number.
  4210. - One array is faster than 2 separate arrays so change to that in poclbm kernel.
  4211. - Microoptimisations to poclbm kernel which increase throughput slightly.
  4212. - Import diablominer kernel. Currently disabled as not working.
  4213. - Import diapolo kernel. Currently disabled as not working.
  4214. - Conflicting entries of cl_kernel may have been causing problems, and
  4215. automatically chosen kernel type was not being passed on. Rename the enum to
  4216. cl_kernels and store the chosen kernel in each clState.
  4217. - Set cl_amd_media_ops with the BITALIGN flag and allow non-bitselect devices to
  4218. build.
  4219. - ALlow much longer filenames for kernels to load properly.
  4220. - Allow different kernels to be used by different devices and fix the logic fail
  4221. of overcorrecting on last commit with !strstr.
  4222. - Fix kernel selection process and build error.
  4223. - queue_phatk_kernel now uses CL_SET_VARG() for base-nonce(s), too
  4224. - added OpenCL >= 1.1 detection code, in preparation of OpenCL 1.1 global offset
  4225. parameter support
  4226. - Use K array explicitly to make it clear what is being added.
  4227. - Work items have a tendency to expire at exactly the same time and we don't
  4228. queue extra items when there are plenty in the queue, regardless of age. Allow
  4229. extra work items to be queued if adequate time has passed since we last
  4230. requested work even if over the limit.
  4231. - Discard work when failover-only is enabled and the work has come from a
  4232. different pool.
  4233. - Missing include to build on newer mingw32.
  4234. - Move from the thread safe localtime_r to regular localtime which is the only
  4235. one supported on newer pthread libraries on mingw32 to make it compile with the
  4236. newer ming. Thread safety is of no importance where localtime is used in this
  4237. code.
  4238. - Define in_addr_t in windows if required
  4239. - sys/wait.h not required in windows
  4240. - Allow API to restrict access by IP address
  4241. - Add pool switching to example miner.php
  4242. - Display X-Reject-Reason, when provided
  4243. - Remove the test for whether the device is on the highest profil level before
  4244. raising the GPU speed as it is ineffectual and may prevent raising the GPU
  4245. speed.
  4246. - Remove unnecessary check for opt_debug one every invocation of applog at
  4247. LOG_DEBUG level and place the check in applog().
  4248. CGMiner Version 2.2.3 - February 6, 2012
  4249. - Revert "Rewrite the convoluted get_work() function to be much simpler and roll
  4250. work as much as possible with each new work item." This seems to cause a race on
  4251. work in free_work(). Presumably other threads are still accessing the structure.
  4252. CGMiner Version 2.2.2 - February 6, 2012
  4253. - Provide support for the submitold extension on a per-pool basis based on the
  4254. value being detected in a longpoll.
  4255. - Don't send a ping to a dynamic device if it's not enabled as that will just
  4256. enable it for one pass and then disable it again.
  4257. - Rewrite the convoluted get_work() function to be much simpler and roll work as
  4258. much as possible with each new work item.
  4259. - Roll as much work as possible from the work returned from a longpoll.
  4260. - Rolling work on each loop through the mining thread serves no purpose.
  4261. - Allow to stage more than necessary work items if we're just rolling work.
  4262. - Replace divide_work with reuse_work function used twice.
  4263. - Give rolled work a new ID to make sure there is no confusion in the hashtable
  4264. lookups.
  4265. - Remove now-defunct hash_div variables.
  4266. - Remove unused get_dondata function.
  4267. - Silence ADL warnings.
  4268. - Silence unused parameter warnings.
  4269. - Stagger the restart of every next thread per device to keep devices busy ahead
  4270. of accessory threads per device.
  4271. - Deprecate the --donation feature. Needlessly complex, questionable usefulness,
  4272. depends on author's server and a central pool of some kind, and was not heavily
  4273. adopted.
  4274. - It's devices that report back now, not threads, update message.
  4275. - Continue auto-management of fan and engine speeds even if a device is disabled
  4276. for safety reasons.
  4277. - No need to check we're highest performance level when throttling GPU engine
  4278. speed.
  4279. - Abstract out tests for whether work has come from a block that has been seen
  4280. before and whether a string is from a previously seen block.
  4281. - Probe but don't set the timeout to 15 seconds as some networks take a long
  4282. time to timeout.
  4283. - Remove most compiler warnings from api.c
  4284. - Add last share's pool info in cgpu_info
  4285. - Allow the OpenCL platform ID to be chosen with --gpu-platform.
  4286. - Iterate over all platforms displaying their information and number of devices
  4287. when --ndevs is called.
  4288. - Deprecate main.c
  4289. - Some networks can take a long time to resolve so go back to 60 second timeouts
  4290. instead of 15.
  4291. - Only enable curses on failure if curses is desired.
  4292. - Fix warnings in bitforce.c
  4293. - Bugfix: Need to open BitForce tty for read-write
  4294. - Fix various build issues.
  4295. - Modularize code: main.c -> device-cpu + device-gpu
  4296. - Fix phatk kernel not working on non-bitalign capable devices (Nvidia, older
  4297. ATI).
  4298. - Update poclbm kernel for better performance on GCN and new SDKs with bitalign
  4299. support when not BFI INT patching. Update phatk kernel to work properly for non
  4300. BFI INT patched kernels, providing support for phatk to run on GCN and non-ATI
  4301. cards.
  4302. - Return last accepted share pool/time for devices
  4303. - Display accepted share pool/time for CPUs
  4304. - Bug intensity always shows GPU 0
  4305. - Update example web miner.php to use new API commands
  4306. CGMiner Version 2.2.1 - January 30, 2012
  4307. NOTE - The GPU Device reordering in 2.2.0 by default was considered a bad idea
  4308. so the original GPU ordering is used by default again unless reordering is
  4309. explicitly requested.
  4310. - Fix bitforce failing to build into cgminer.
  4311. - Add missing options to write config function.
  4312. - Add a --gpu-reorder option to only reorder devices according to PCI Bus ID
  4313. when requested.
  4314. - Fix for midstate support being broken on pools that supported no-midstate
  4315. work by ensuring numbers are 32 bits in sha2.c
  4316. - Set virtual GPUs to work when ADL is disabled or all mining will occur on GPU
  4317. 0.
  4318. - Add information about paused threads in the menu status.
  4319. - Disable all but the first thread on GPUs in dynamic mode for better
  4320. interactivity.
  4321. - Set the latest network access time on share submission for --net-delay even if
  4322. we're not delaying that submission for further network access.
  4323. - Clear adl on exiting after probing values since it may attempt to overclock.
  4324. - As share submission is usually staggered, and delays can be costly, submit
  4325. shares without delay even when --net-delay is enabled.
  4326. - Display GPU number and device name when ADL is successfully enabled on it.
  4327. - Display GPU ordering remapping in verbose mode.
  4328. - Don't fail in the case the number of ADL and OpenCL devices do not match, and
  4329. do not attempt to reorder devices unless they match. Instead give a warning
  4330. about
  4331. - Display error codes should ADL not return ADL_OK in the more critical function
  4332. calls.
  4333. - Fix unused warning.
  4334. - Fix compile warnings in api.c
  4335. - Add extensive ADL based device info in debug mode.
  4336. - Make --ndevs display verbose opencl information as well to make debugging
  4337. version information easier.
  4338. - Display information about the opencl platform with verbose enabled.
  4339. - Explicitly check for nvidia in opencl platform strings as well.
  4340. CGMiner Version 2.2.0 - January 29, 2012
  4341. NOTE: GPU Device order will change with this release with ATI GPUs as cgminer
  4342. now can enumerate them according to their Bus ID which means the values should
  4343. now correlate with their physical position on the motherboard.
  4344. - Default to poclbm kernel on Tahiti (7970) since phatk does not work, even
  4345. though performance is sub-standard so that at least it will mine successfully by
  4346. defau
  4347. - Retain cl program after every possible place we might build the program.
  4348. - Update ADL SDK URL.
  4349. - Fix potential overflow.
  4350. - Map GPU devices to virtual devices in their true physical order based on
  4351. BusNumber.
  4352. - Change the warning that comes with failure to init cl on a device to be more
  4353. generic and accurate.
  4354. - Advertise longpoll support in X-Mining-Extensions
  4355. - Detect dual GPU cards by iterating through all GPUs, finding ones without
  4356. fanspeed and matching twins with fanspeed one bus ID apart.
  4357. - Do not attempt to build the program that becomes the kernel twice. This could
  4358. have been leading to failures on initialising cl.
  4359. - Some opencl compilers have issues with no spaces after -D in the compiler
  4360. options.
  4361. - Allow intensity up to 14.
  4362. - Use calloced stack memory for CompilerOptions to ensure sprintf writes to the
  4363. beginning of the char.
  4364. - Whitelist 79x0 cards to prefer no vectors as they perform better without.
  4365. - Adjust fan speed gently while in the optimal range when temperature is
  4366. drifting to minimise overshoot in either direction.
  4367. - Detect dual GPU cards via the indirect information of - 1st card has a fan
  4368. controller. 2nd card does not have a fan controller, cards share the same device
  4369. name
  4370. - Instead of using the BFI_INT patching hack on any device reporting
  4371. cl_amd_media_ops, create a whitelist of devices that need it. This should enable
  4372. GCN architec
  4373. - Fixed API compiling issue on OS X
  4374. - Add more explanation of JSON format and the 'save' command
  4375. - Return an error if using ADL API commands when it's not available
  4376. - Read off lpThermalControllerInfo from each ADL device.
  4377. - Add ADL_Overdrive5_ThermalDevices_Enum interface.
  4378. - Add API commands: config, switchpool, gpu settings, save
  4379. - Implement socks4 proxy support.
  4380. - Fix send() for JSON strings
  4381. - Introduce a --net-delay option which guarantees at least 250ms between any
  4382. networking requests to not overload slow routers.
  4383. - Generalise locking init code.
  4384. - Allow invalid values to be in the configuration file, just skipping over them
  4385. provided the rest of the file is valid JSON. This will allow older configurat
  4386. - Allow CPU mining explicitly enable only if other mining support is built in.
  4387. - BitForce FPGA support
  4388. - Configure out building and support of all CPU mining code unless
  4389. --enable-cpumining is enabled.
  4390. - Allow parsed values to be zero which will allow 0 values in the config file to
  4391. work.
  4392. - Advertise that we can make our own midstate, so the pool can skip generating
  4393. it for us
  4394. - Refactor the CPU scanhash_* functions to use a common API. Fixes bugs.
  4395. - Don't consider a pool lagging if a request has only just been filed. This
  4396. should decrease the false positives for "pool not providing work fast enough".
  4397. - Invalidating work after longpoll made hash_pop return no work giving a false
  4398. positive for dead pool. Rework hash_pop to retry while finds no staged work u
  4399. - Remove TCP_NODELAY from curl options as many small packets may be contributing
  4400. to network overload, when --net-delay is enabled.
  4401. - Refactor miner_thread to be common code for any kind of device
  4402. - Simplify submit_nonce loop and avoid potentially missing FOUND - 1 entry.
  4403. Reported by Luke-Jr.
  4404. - Micro-optimisation in sha256_sse2 code courtesy of Guido Ascioti
  4405. guido.ascioti@gmail.com
  4406. - Refactor to abstract device-specific code
  4407. CGMiner Version 2.1.2 - January 6, 2012
  4408. - If api-description is specified, save it when writing the config file
  4409. - Adjust utility width to be constant maximum as well.
  4410. - Add percent signs to reject ratio outputs
  4411. - Should the donation pool fail, don't make the fallover pool behave as though
  4412. the primary pool is lagging.
  4413. - Use an alternative pool should the donation getwork fail.
  4414. CGMiner Version 2.1.1 - January 1, 2012
  4415. - Include API examples in distribution tarball.
  4416. - Don't attempt to pthread_join when cancelling threads as they're already
  4417. detached and doing so can lead to a segfault.
  4418. - Give more generic message if slow pool at startup is the donation pool.
  4419. - Continue to attempt restarting GPU threads if they're flagged dead at 1 min.
  4420. intervals.
  4421. - Don't attempt to restart sick flagged GPUs while they're still registering
  4422. activity.
  4423. - Make curl use fresh connections whenever there is any communication issue
  4424. in case there are dead persistent connections preventing further comms from
  4425. working.
  4426. - Display pool in summary if only 1 pool.
  4427. - Adjust column width of A/R/HW to be the maximum of any device and align them.
  4428. CGMiner Version 2.1.0 - December 27, 2011
  4429. - Major infrastructure upgrade with RPC interface for controlling via sockets
  4430. encoded with/without JSON courtesy of Andrew Smith. Added documentation for
  4431. use of the API and sample code to use with it.
  4432. - Updated linux-usb-cgminer document.
  4433. - Rewrite of longpoll mechanism to choose the current pool wherever possible to
  4434. use for the longpoll, or any pool that supports longpoll if the current one
  4435. does not.
  4436. - Display information about longpoll when the chosen server has changed.
  4437. - Fix the bug where longpoll generated work may have been sent back to the
  4438. wrong pool, causing rejects.
  4439. - Fix a few race conditions on closing cgminer which caused some of the crashes
  4440. on exit.
  4441. - Only adjust gpu engine speed in autotune mode if the gpu is currently at the
  4442. performance level of that being adjusted.
  4443. - Various fixes for parsing/writing of configuration files.
  4444. - Do not add blank lines for threads of unused CPUs.
  4445. - Show which pool is unresponsive on startup.
  4446. - Only show GPU management menu item if GPUs are in use.
  4447. - Align most device columns in the curses display.
  4448. CGMiner Version 2.0.8 - November 11, 2011
  4449. - Make longpoll do a mandatory flushing of all work even if the block hasn't
  4450. changed, thus supporting longpoll initiated work change of any sort and merged
  4451. mining.
  4452. - Byteswap computed hash in hashtest so it can be correctly checked. This fixes
  4453. the very rare possibility that a block solve on solo mining was missed.
  4454. - Add x86_64 w64 mingw32 target
  4455. - Allow a fixed speed difference between memory and GPU clock speed with
  4456. --gpu-memdiff that will change memory speed when GPU speed is changed in
  4457. autotune mode.
  4458. - Don't load the default config if a config file is specified on the command
  4459. line.
  4460. - Don't build VIA on apple since -a auto bombs instead of gracefully ignoring
  4461. VIA failing.
  4462. - Build fix for dlopen/dlclose errors in glibc.
  4463. CGMiner Version 2.0.7 - October 17, 2011
  4464. - Support work without midstate or hash1, which are deprecated in bitcoind 0.5+
  4465. - Go to kernel build should we fail to clCreateProgramWithBinary instead of
  4466. failing on that device. This should fix the windows problems with devices not
  4467. initialising.
  4468. - Support new configuration file format courtesy of Chris Savery which can write
  4469. the config file from the menu and will load it on startup.
  4470. - Write unix configuration to .cgminer/cgminer.conf by default and prompt to
  4471. overwrite if given a filename from the menu that exists.
  4472. CGMiner Version 2.0.6 - October 9, 2011
  4473. - Must initialise the donorpool mutex or it fails on windows.
  4474. - Don't make donation work interfere with block change detection allowing
  4475. donation to work regardless of the block chain we're mining on.
  4476. - Expire shares as stale with a separate timeout from the scantime, defaulting
  4477. to 120 seconds.
  4478. - Retry pools after a delay of 15 seconds if none can be contacted on startup
  4479. unless a key is pressed.
  4480. - Don't try to build adl features without having adl.
  4481. - Properly check shares against target difficulty - This will no longer show
  4482. shares when solo mining at all unless they're considered to be a block solve.
  4483. - Add altivec 4 way (cpu mining) support courtesy of Gilles Risch.
  4484. - Try to use SSL if the server supports it.
  4485. - Display the total solved blocks on exit (LOL if you're lucky).
  4486. - Use ADL activity report to tell us if a sick GPU is still busy suggesting it
  4487. is hard hung and do not attempt to restart it.
  4488. CGMiner Version 2.0.5 - September 27, 2011
  4489. - Intensity can now be set to dynamic or static values per-device.
  4490. - New donation feature --donation sends a proportion of shares to author's
  4491. account of choice, but is disabled by default!
  4492. - The hash being displayed and block detection has been fixed.
  4493. - Devices not being mined on will not attempt to be ADL managed.
  4494. - Intensity is now displayed per GPU device.
  4495. - Make longpoll attempt to restart as often as opt_retries specifies.
  4496. - We weren't rolling work as often as we could.
  4497. - Correct some memory management issues.
  4498. - Build fixes.
  4499. - Don't mess with GPUs if we don't have them.
  4500. CGMiner Version 2.0.4 - September 23, 2011
  4501. - Confused Longpoll messages should be finally fixed with cgminer knowing for
  4502. sure who found the new block and possibly avoiding a rare crash.
  4503. - Display now shows the actual hash and will say BLOCK! if a block is deemed
  4504. solved.
  4505. - Extra spaces, which would double space lines on small terminals, have been
  4506. removed.
  4507. - Fan speed change is now damped if it is already heading in the correct
  4508. direction to minimise overshoot.
  4509. - Building without opencl libraries is fixed.
  4510. - GPUs are autoselected if there is only one when in the GPU management menu.
  4511. - GPU menu is refreshed instead of returning to status after a GPU change.
  4512. CGMiner Version 2.0.3 - September 17, 2011
  4513. - Various modes of failure to set fanspeeds and adl values have been addressed
  4514. and auto-fan should work now on most hardware, and possibly other values
  4515. which previously would not have worked.
  4516. - Fixed a crash that can occur on switching pools due to longpoll thread races.
  4517. - Use ATISTREAMSDKROOT if available at build time.
  4518. - Fanspeed management is returned to the driver default on exit instead of
  4519. whatever it was when cgminer was started.
  4520. - Logging of events deemed WARNING or ERR now will display even during
  4521. periods where menu input is being awaited on.
  4522. CGMiner Version 2.0.2 - September 11, 2011
  4523. - Exit cleanly if we abort before various threads are set up or if they no
  4524. longer exist.
  4525. - Fix a rare crash in HASH_DEL due to using different mutexes to protect the
  4526. data.
  4527. - Flag devices that have never started and don't allow enabling of devices
  4528. without restarting them.
  4529. - Only force the adapter speed to high if we've flagged this device as being
  4530. managed.
  4531. - Flag any devices with autofan or autogpu as being managed.
  4532. - Use a re-entrant value to store what fanspeed we're trying to set in case the
  4533. card doesn't support small changes. Force it to a multiple of 10% if it
  4534. fails on trying to speed up the fan.
  4535. - Do not bother resetting values to old ones if changes to GPU parameters report
  4536. failure, instead returning a failure code only if the return value from get()
  4537. differs.
  4538. - Remove redundant check.
  4539. - Only display supported values from fanspeed on change settings.
  4540. - Missing bracket from output.
  4541. - Display fan percentage on devices that only support reporting percent and not
  4542. RPM.
  4543. - Properly substitute DLOPEN flags to build with ADL support when -ldl is needed
  4544. and not when opencl is not found.
  4545. CGMiner Version 2.0.1 - September 9, 2011
  4546. - Fix building on 32bit glibc with dlopen with -lpthread and -ldl
  4547. - ByteReverse is not used and the bswap opcode breaks big endian builds. Remove
  4548. it.
  4549. - Ignore whether the display is active or not since only display enabled devices
  4550. work this way, and we skip over repeat entries anwyay.
  4551. - Only reset values on exiting if we've ever modified them.
  4552. - Flag adl as active if any card is successfully activated.
  4553. - Add a thermal cutoff option as well and set it to 95 degrees by default.
  4554. - Change the fan speed by only 5% if it's over the target temperature but less
  4555. than the hysteresis value to minimise overshoot down in temperature.
  4556. - Add a --no-adl option to disable ADL monitoring and GPU settings.
  4557. - Only show longpoll received delayed message at verbose level.
  4558. - Allow temperatures greater than 100 degrees.
  4559. - We should be passing a float for the remainder of the vddc values.
  4560. - Implement accepting a range of engine speeds as well to allow a lower limit to
  4561. be specified on the command line.
  4562. - Allow per-device fan ranges to be set and use them in auto-fan mode.
  4563. - Display which GPU has overheated in warning message.
  4564. - Allow temperature targets to be set on a per-card basis on the command line.
  4565. - Display fan range in autofan status.
  4566. - Setting the hysteresis is unlikely to be useful on the fly and doesn't belong
  4567. in the per-gpu submenu.
  4568. - With many cards, the GPU summaries can be quite long so use a terse output
  4569. line when showing them all.
  4570. - Use a terser device status line to show fan RPM as well when available.
  4571. - Define max gpudevices in one macro.
  4572. - Allow adapterid 0 cards to enumerate as a device as they will be non-AMD
  4573. cards, and enable ADL on any AMD card.
  4574. - Do away with the increasingly confusing and irrelevant total queued and
  4575. efficiency measures per device.
  4576. - Only display values in the log if they're supported and standardise device log
  4577. line printing.
  4578. CGMiner Version 2.0.0 - September 6, 2011
  4579. Major feature upgrade - GPU monitoring, (over)clocking and fan control for ATI
  4580. GPUs.
  4581. New command line switches:
  4582. --auto-fan- Automatically adjust all GPU fan speeds to maintain a target
  4583. temperature
  4584. --auto-gpu- Automatically adjust all GPU engine clock speeds to maintain
  4585. a target temperature
  4586. --gpu-engine <arg> Set the GPU engine (over)clock in Mhz - one value for all or
  4587. separate by commas for per card.
  4588. --gpu-fan <arg> Set the GPU fan percentage - one value for all or separate
  4589. by commas for per card.
  4590. --gpu-memclock <arg> Set the GPU memory (over)clock in Mhz - one value for all
  4591. or separate by commas for per card.
  4592. --gpu-powertune <arg> Set the GPU powertune percentage - one value for all or
  4593. separate by commas for per card.
  4594. --gpu-vddc <arg> Set the GPU voltage in Volts - one value for all or separate
  4595. by commas for per card.
  4596. --temp-hysteresis <arg> Set how much the temperature can fluctuate outside
  4597. limits when automanaging speeds (default: 3)
  4598. --temp-overheat <arg> Set the overheat temperature when automatically managing
  4599. fan and GPU speeds (default: 85)
  4600. --temp-target <arg> Set the target temperature when automatically managing fan
  4601. and GPU speeds (default: 75)
  4602. - Implement ATI ADL support for GPU parameter monitoring now and setting later
  4603. (temp, fan, clocks etc.).
  4604. - Check for the presence of the ADL header files in ADL_SDK.
  4605. - Import adl_functions.h from amd overdrive ctrl.
  4606. - Implement a setup function that tries to detect GPUs that support the ADL and
  4607. link in the parameters into the gpus struct.
  4608. - Put a summary of monitoring information from the GPU menu.
  4609. - Implement changing memory speed and voltage on the fly.
  4610. - Implement fan speed setting.
  4611. - Minor corrections to set fan speed by percentage.
  4612. - Make sure to read off the value in RPM only.
  4613. - Implement auto fanspeed adjustment to maintain a target temperature and
  4614. fanspeed below 85%, with an overheat check that will speed the fan up to 100%.
  4615. - Add an --auto-fan command line option to allow all GPUs to have autofan
  4616. enabled from startup.
  4617. - Add a gpu autotune option which adjusts GPU speed to maintain a target
  4618. temperature within the bounds of the default GPU speed and any overclocking set.
  4619. - Avoid a dereference if the longpoll thread doesn't exist.
  4620. - Clean up by setting performance profiles and fan settings to startup levels on
  4621. exit.
  4622. - Add a small amount of hysteresis before lowering clock speed.
  4623. - Allow target, overheat and hysteresis temperatures to be set from command
  4624. line.
  4625. - Combine all stats collating into one function to avoid repeating function
  4626. calls on each variable.
  4627. - Add gpu statistics to debugging output via the watchdog thread.
  4628. - Implement menus to change temperature limits.
  4629. - Implement setting the GPU engine clock speed of all devices or each device as
  4630. a comma separated value.
  4631. - Implement setting the GPU memory clock speed of all devices or each device as
  4632. a comma separated value.
  4633. - Implement setting the GPU voltage of all devices or each device as a comma
  4634. separated value.
  4635. - Implement setting the GPU fan speed of all devices or each device as a comma
  4636. separated value.
  4637. - Add support for monitoring powertune setting.
  4638. - Implement changing of powertune value from the GPU change settings menu.
  4639. - Get the value of powertune in get_stats.
  4640. - Implement setting the GPU powertune value of all devices or each device as a
  4641. comma separated value.
  4642. - Remove the safety checks in speed setting since confirmation is done first in
  4643. the menu, then show the new current values after a short pause.
  4644. - Force the speed to high on startup and restore it to whatever the setting was
  4645. on exit.
  4646. - Add temperature to standard output where possible and use more compact output.
  4647. - Move and print at the same time in curses to avoid random trampling display
  4648. errors.
  4649. - Update the status window only from the watchdog thread, do not rewrite the top
  4650. status messages and only refresh once all the status window is complete,
  4651. clearing the window each time to avoid corruption.
  4652. - Set a safe starting fan speed if we're automanaging the speeds.
  4653. - Provide locking around all adl calls to prevent races.
  4654. - Lower profile settings cannot be higher than higher profile ones so link any
  4655. drops in settings.
  4656. - Add new needed text files to distribution.
  4657. - Queue requests ignoring the number of staged clones since they get discarded
  4658. very easily leading to false positives for pool not providing work fast enough.
  4659. - Include libgen.h in opt.c to fix win32 compilation warnings.
  4660. - Fix compilation warning on win32.
  4661. - Add the directory name from the arguments cgminer was called from as well to
  4662. allow it running from a relative pathname.
  4663. - Add a --disable-adl option to configure and only enable it if opencl support
  4664. exists.
  4665. - Retry before returning a failure to get upstream work as a failure to avoid
  4666. false positives for pool dead.
  4667. - Retry also if the decoding of work fails.
  4668. - Use the presence of X-Roll-Ntime in the header as a bool for exists unless N
  4669. is found in the response.
  4670. CGMiner Version 1.6.2 - September 2, 2011
  4671. - Add --failover-only option to not leak work to backup pools when the primary
  4672. pool is lagging.
  4673. - Change recommendation to intensity 9 for dedicated miners.
  4674. - Fix the bouncing short term value by allowing it to change dynamically when
  4675. the latest value is very different from the rolling value, but damp the change
  4676. when it gets close.
  4677. - Use the curses_lock to protect the curses_active variable and test it under
  4678. lock.
  4679. - Go back to requesting work 2/3 of the way through the current scantime with
  4680. CPU mining as reports of mining threads running out of work have occurred with
  4681. only 5 seconds to retrieve work.
  4682. - Add start and stop time scheduling for regular time of day running or once off
  4683. start/stop options.
  4684. - Print summary on quit modes.
  4685. - Put some sanity checks on the times that can be input.
  4686. - Give a verbose message when no active pools are found and pause before
  4687. exiting.
  4688. - Add verbose message when a GPU fails to initialise, and disable the correct
  4689. GPU.
  4690. - Cryptopp asm32 was not correctly updated to the incremental nonce code so the
  4691. hash counter was bogus.
  4692. - Get rid of poorly executed curl check.
  4693. - If curl does not have sockopts, do not try to compile the
  4694. json_rpc_call_sockopt_cb function, making it possible to build against older
  4695. curl libraries.
  4696. - Most people expect /usr/local when an unspecified prefix is used so change to
  4697. that.
  4698. - Rename localgen occasions to getwork fail occasions since localgen is
  4699. unrelated now.
  4700. CGMiner Version 1.6.1 - August 29, 2011
  4701. - Copy cgminer path, not cat it.
  4702. - Switching between redrawing windows does not fix the crash with old
  4703. libncurses, so redraw both windows, but only when the window size hasn't
  4704. changed.
  4705. - Reinstate minimum 1 extra in queue to make it extremely unlikely to ever have
  4706. 0 staged work items and any idle time.
  4707. - Return -1 if no input is detected from the menu to prevent it being
  4708. interpreted as a 0.
  4709. - Make pthread, libcurl and libcurses library checks mandatory or fail.
  4710. - Add a --disable-opencl configure option to make it possible to override
  4711. detection of opencl and build without GPU mining support.
  4712. - Confusion over the variable name for number of devices was passing a bogus
  4713. value which likely was causing the zero sized binary issue.
  4714. - cgminer no longer supports default url user and pass so remove them.
  4715. - Don't show value of intensity since it's dynamic by default.
  4716. - Add options to explicitly enable CPU mining or disable GPU mining.
  4717. - Convert the opt queue into a minimum number of work items to have queued
  4718. instead of an extra number to decrease risk of getting idle devices without
  4719. increasing risk of higher rejects.
  4720. - Statify tv_sort.
  4721. - Check for SSE2 before trying to build 32 bit SSE2 assembly version. Prevents
  4722. build failure when yasm is installed but -msse2 is not specified.
  4723. - Add some defines to configure.ac to enable exporting of values and packaging,
  4724. and clean up output.
  4725. - Give convenient summary at end of ./configure.
  4726. - Display version information and add --version command line option, and make
  4727. sure we flush stdout.
  4728. - Enable curses after the mining threads are set up so that failure messages
  4729. won't be lost in the curses interface.
  4730. - Disable curses after inputting a pool if we requested no curses interface.
  4731. - Add an option to break out after successfully mining a number of accepted
  4732. shares.
  4733. - Exit with a failed return code if we did not reach opt_shares.
  4734. - The cpu mining work data can get modified before we copy it if we submit it
  4735. async, and the sync submission is not truly sync anyway, so just submit it sync.
  4736. CGMiner Version 1.6.0 - August 26, 2011
  4737. - Make restarting of GPUs optional for systems that hang on any attempt to
  4738. restart them. Fix DEAD status by comparing it to last live time rather than
  4739. last attempted restart time since that happens every minute.
  4740. - Move staged threads to hashes so we can sort them by time.
  4741. - Create a hash list of all the blocks created and search them to detect when a
  4742. new block has definitely appeared, using that information to detect stale work
  4743. and discard it.
  4744. - Update configure.ac for newer autoconf tools.
  4745. - Use the new hashes directly for counts instead of the fragile counters
  4746. currently in use.
  4747. - Update to latest sse2 code from cpuminer-ng.
  4748. - Allow LP to reset block detect and block detect lp flags to know who really
  4749. came first.
  4750. - Get start times just before mining begins to not have very slow rise in
  4751. average.
  4752. - Add message about needing one server.
  4753. - We can queue all the necessary work without hitting frequent stales now with
  4754. the time and string stale protection active all the time. This prevents a
  4755. pool being falsely labelled as not providing work fast enough.
  4756. - Include uthash.h in distro.
  4757. - Implement SSE2 32 bit assembly algorithm as well.
  4758. - Fail gracefully if unable to open the opencl files.
  4759. - Make cgminer look in the install directory for the .cl files making make
  4760. install work correctly.
  4761. - Allow a custom kernel path to be entered on the command line.
  4762. - Bump threshhold for lag up to maximum queued but no staged work.
  4763. - Remove fragile source patching for bitalign, vectors et. al and simply pass it
  4764. with the compiler options.
  4765. - Actually check the value returned for the x-roll-ntime extension to make sure
  4766. it isn't saying N.
  4767. - Prevent segfault on exit for when accessory threads don't exist.
  4768. - Disable curl debugging with opt protocol since it spews to stderr.
  4769. CGMiner Version 1.5.8 - August 23, 2011
  4770. - Minimise how much more work can be given in cpu mining threads each interval.
  4771. - Make the fail-pause progressively longer each time it fails until the network
  4772. recovers.
  4773. - Only display the lagging message if we've requested the work earlier.
  4774. - Clean up the pool switching to not be dependent on whether the work can roll
  4775. or not by setting a lagging flag and then the idle flag.
  4776. - Only use one thread to determine if a GPU is sick or well, and make sure to
  4777. reset the sick restart attempt time.
  4778. - The worksize was unintentionally changed back to 4k by mistake, this caused a
  4779. slowdown.
  4780. CGMiner Version 1.5.7 - August 22, 2011
  4781. - Fix a crash with --algo auto
  4782. - Test at appropriate target difficulty now.
  4783. - Add per-device statics log output with --per-device-stats
  4784. - Fix breakage that occurs when 1 or 4 vectors are chosen on new phatk.
  4785. - Make rolltime report debug level only now since we check it every work
  4786. item.
  4787. - Add the ability to enable/disable per-device stats on the fly and match
  4788. logging on/off.
  4789. - Explicitly tell the compiler to retain the program to minimise the chance of
  4790. the zero sized binary errors.
  4791. - Add one more instruction to avoid one branch point in the common path in the
  4792. cl return code. Although this adds more ALUs overall and more branch points, the
  4793. common path code has the same number of ALUs and one less jmp, jmps being more
  4794. expensive.
  4795. - Explicitly link in ws2_32 on the windows build and update README file on how
  4796. to compile successfully on windows.
  4797. - Release cl resources should the gpu mining thread abort.
  4798. - Attempt to restart a GPU once every minute while it's sick.
  4799. - Don't kill off the reinit thread if it fails to init a GPU but returns safely.
  4800. - Only declare a GPU dead if there's been no sign of activity from the reinit
  4801. thread for 10 mins.
  4802. - Never automatically disable any pools but just specify them as idle if they're
  4803. unresponsive at startup.
  4804. - Use any longpoll available, and don't disable it if switching to a server that
  4805. doesn't have it. This allows you to mine solo, yet use the longpoll from a pool
  4806. even if the pool is the backup server.
  4807. - Display which longpoll failed and don't free the ram for lp_url since it
  4808. belongs to the pool hdr path.
  4809. - Make the tcp setsockopts unique to linux in the hope it allows freebsd et. al
  4810. to compile.
  4811. CGMiner Version 1.5.6 - August 17, 2011
  4812. - New phatk and poclbm kernels. Updated phatk to be in sync with latest 2.2
  4813. courtesy of phateus. Custom modified to work best with cgminer.
  4814. - Updated output buffer code to use a smaller buffer with the kernels.
  4815. - Clean up the longpoll management to ensure the right paths go to the right
  4816. pool and display whether we're connected to LP or not in the status line.
  4817. CGMiner Version 1.5.5 - August 16, 2011
  4818. - Rework entirely the GPU restart code. Strike a balance between code that
  4819. re-initialises the GPU entirely so that soft hangs in the code are properly
  4820. managed, but if a GPU is completely hung, the thread restart code fails
  4821. gracefully, so that it does not take out any other code or devices. This will
  4822. allow cgminer to keep restarting GPUs that can be restarted, but continue
  4823. mining even if one or more GPUs hangs which would normally require a reboot.
  4824. - Add --submit-stale option which submits all shares, regardless of whether they
  4825. would normally be considered stale.
  4826. - Keep options in alphabetical order.
  4827. - Probe for slightly longer for when network conditions are lagging.
  4828. - Only display the CPU algo when we're CPU mining.
  4829. - As we have keepalives now, blaming network flakiness on timeouts appears to
  4830. have been wrong. Set a timeout for longpoll to 1 hour, and most other
  4831. network connectivity to 1 minute.
  4832. - Simplify output code and remove HW errors from CPU stats.
  4833. - Simplify code and tidy output.
  4834. - Only show cpu algo in summary if cpu mining.
  4835. - Log summary at the end as per any other output.
  4836. - Flush output.
  4837. - Add a linux-usb-cgminer guide courtesy of Kano.
  4838. CGMiner Version 1.5.4 - August 14, 2011
  4839. - Add new option: --monitor <cmd> Option lets user specify a command <cmd> that
  4840. will get forked by cgminer on startup. cgminer's stderr output subsequently gets
  4841. piped directly to this command.
  4842. - Allocate work from one function to be able to initialise variables added
  4843. later.
  4844. - Add missing fflush(stdout) for --ndevs and conclusion summary.
  4845. - Preinitialise the devices only once on startup.
  4846. - Move the non cl_ variables into the cgpu info struct to allow creating a new
  4847. cl state on reinit, preserving known GPU variables.
  4848. - Create a new context from scratch in initCQ in case something was corrupted to
  4849. maximise our chance of succesfully creating a new worker thread. Hopefully this
  4850. makes thread restart on GPU failure more reliable, without hanging everything
  4851. in the case of a completely wedged GPU.
  4852. - Display last initialised time in gpu management info, to know if a GPU has
  4853. been re-initialised.
  4854. - When pinging a sick cpu, flush finish and then ping it in a separate thread in
  4855. the hope it recovers without needing a restart, but without blocking code
  4856. elsewhere.
  4857. - Only consider a pool lagging if we actually need the work and we have none
  4858. staged despite queue requests stacking up. This decreases significantly the
  4859. amount of work that leaks to the backup pools.
  4860. - The can_roll function fails inappropriately in stale_work.
  4861. - Only put the message that a pool is down if not pinging it every minute. This
  4862. prevents cgminer from saying pool down at 1 minute intervals unless in debug
  4863. mode.
  4864. - Free all work in one place allowing us to perform actions on it in the future.
  4865. - Remove the extra shift in the output code which was of dubious benefit. In
  4866. fact in cgminer's implementation, removing this caused a miniscule speedup.
  4867. - Test each work item to see if it can be rolled instead of per-pool and roll
  4868. whenever possible, adhering to the 60 second timeout. This makes the period
  4869. after a longpoll have smaller dips in throughput, as well as requiring less
  4870. getworks overall thus increasing efficiency.
  4871. - Stick to rolling only work from the current pool unless we're in load balance
  4872. mode or lagging to avoid aggressive rolling imitating load balancing.
  4873. - If a work item has had any mining done on it, don't consider it discarded
  4874. work.
  4875. CGMiner Version 1.5.3 - July 30, 2011
  4876. - Significant work went into attempting to make the thread restart code robust
  4877. to identify sick threads, tag them SICK after 1 minute, then DEAD after 5
  4878. minutes of inactivity and try to restart them. Instead of re-initialising the
  4879. GPU completely, only a new cl context is created to avoid hanging the rest of
  4880. the GPUs should the dead GPU be hung irrevocably.
  4881. - Use correct application name in syslog.
  4882. - Get rid of extra line feeds.
  4883. - Use pkg-config to check for libcurl version
  4884. - Implement per-thread getwork count with proper accounting to not over-account
  4885. queued items when local work replaces it.
  4886. - Create a command queue from the program created from source which allows us
  4887. to flush the command queue in the hope it will not generate a zero sized binary
  4888. any more.
  4889. - Be more willing to get work from the backup pools if the work is simply being
  4890. queued faster than it is being retrieved.
  4891. CGMiner Version 1.5.2 - July 28, 2011
  4892. - Restarting a hung GPU can hang the rest of the GPUs so just declare it dead
  4893. and provide the information in the status.
  4894. - The work length in the miner thread gets smaller but doesn't get bigger if
  4895. it's under 1 second. This could end up leading to CPU under-utilisation and
  4896. lower and lower hash rates. Fix it by increasing work length if it drops
  4897. under 1 second.
  4898. - Make the "quiet" mode still update the status and display errors, and add a
  4899. new --real-quiet option which disables all output and can be set once while
  4900. running.
  4901. - Update utility and efficiency figures when displaying them.
  4902. - Some Intel HD graphics support the opencl commands but return errors since
  4903. they don't support opencl. Don't fail with them, just provide a warning and
  4904. disable GPU mining.
  4905. - Add http:// if it's not explicitly set for URL entries.
  4906. - Log to the output file at any time with warnings and errors, instead of just
  4907. when verbose mode is on.
  4908. - Display the correct current hash as per blockexplorer, truncated to 16
  4909. characters, with just the time.
  4910. CGMiner Version 1.5.1 - July 27, 2011
  4911. - Two redraws in a row cause a crash in old libncurses so just do one redraw
  4912. using the main window.
  4913. - Don't adjust hash_div only up for GPUs. Disable hash_div adjustment for GPUs.
  4914. - Only free the thread structures if the thread still exists.
  4915. - Update both windows separately, but not at the same time to prevent the double
  4916. refresh crash that old libncurses has. Do the window resize check only when
  4917. about to redraw the log window to minimise ncurses cpu usage.
  4918. - Abstract out the decay time function and use it to make hash_div a rolling
  4919. average so it doesn't change too abruptly and divide work in chunks large enough
  4920. to guarantee they won't overlap.
  4921. - Sanity check to prove locking.
  4922. - Don't take more than one lock at a time.
  4923. - Make threads report out when they're queueing a request and report if they've
  4924. failed.
  4925. - Make cpu mining work submission asynchronous as well.
  4926. - Properly detect stale work based on time from staging and discard instead of
  4927. handing on, but be more lax about how long work can be divided for up to the
  4928. scantime.
  4929. - Do away with queueing work separately at the start and let each thread grab
  4930. its own work as soon as it's ready.
  4931. - Don't put an extra work item in the queue as each new device thread will do so
  4932. itself.
  4933. - Make sure to decrease queued count if we discard the work.
  4934. - Attribute split work as local work generation.
  4935. - If work has been cloned it is already at the head of the list and when being
  4936. reinserted into the queue it should be placed back at the head of the list.
  4937. - Dividing work is like the work is never removed at all so treat it as such.
  4938. However the queued bool needs to be reset to ensure we *can* request more work
  4939. even if we didn't initially.
  4940. - Make the display options clearer.
  4941. - Add debugging output to tq_push calls.
  4942. - Add debugging output to all tq_pop calls.
  4943. CGMiner Version 1.5.0 - July 26, 2011
  4944. - Increase efficiency of slow mining threads such as CPU miners dramatically. Do
  4945. this by detecting which threads cannot complete searching a work item within the
  4946. scantime and then divide up a work item into multiple smaller work items.
  4947. Detect the age of the work items and if they've been cloned before to prevent
  4948. doing the same work over. If the work is too old to be divided, then see if it
  4949. can be time rolled and do that to generate work. This dramatically decreases the
  4950. number of queued work items from a pool leading to higher overall efficiency
  4951. (but the same hashrate and share submission rate).
  4952. - Don't request work too early for CPUs as CPUs will scan for the full
  4953. opt_scantime anyway.
  4954. - Simplify gpu management enable/disable/restart code.
  4955. - Implement much more accurate rolling statistics per thread and per gpu and
  4956. improve accuracy of rolling displayed values.
  4957. - Make the rolling log-second average more accurate.
  4958. - Add a menu to manage GPUs on the fly allowing you to enable/disable GPUs or
  4959. try restarting them.
  4960. - Keep track of which GPUs are alive versus enabled.
  4961. - Start threads for devices that are even disabled, but don't allow them to
  4962. start working.
  4963. - The last pool is when we are low in total_pools, not active_pools.
  4964. - Make the thread restart do a pthread_join after disabling the device, only
  4965. re-enabling it if we succeed in restarting the thread. Do this from a separate
  4966. thread so as to not block any other code.This will allow cgminer to continue
  4967. even if one GPU hangs.
  4968. - Try to do every curses manipulation under the curses lock.
  4969. - Only use the sockoptfunction if the version of curl is recent enough.
  4970. CGMiner Version 1.4.1 - July 24, 2011
  4971. - Do away with GET for dealing with longpoll forever. POST is the one that works
  4972. everywhere, not the other way around.
  4973. - Detect when the primary pool is lagging and start queueing requests on backup
  4974. pools if possible before needing to roll work.
  4975. - Load balancing puts more into the current pool if there are disabled pools.
  4976. Fix.
  4977. - Disable a GPU device should the thread fail to init.
  4978. - Out of order command queue may fail on osx. Try without if it fails.
  4979. - Fix possible dereference on blank inputs during input_pool.
  4980. - Defines missing would segfault on --help when no sse mining is built in.
  4981. - Revert "Free up resources/stale compilers." - didn't help.
  4982. - Only try to print the status of active devices or it would crash.
  4983. - Some hardware might benefit from the less OPS so there's no harm in leaving
  4984. kernel changes that do that apart from readability of the code.
  4985. CGMiner Version 1.4.0 - July 23, 2011
  4986. - Feature upgrade: Add keyboard input during runtime to allow modification of
  4987. and viewing of numerous settings such as adding/removing pools, changing
  4988. multipool management strategy, switching pools, changing intensiy, verbosity,
  4989. etc. with a simple keypress menu system.
  4990. - Free up resources/stale compilers.
  4991. - Kernels are safely flushed in a way that allows out of order execution to
  4992. work.
  4993. - Sometimes the cl compiler generates zero sized binaries and only a reboot
  4994. seems to fix it.
  4995. - Don't try to stop/cancel threads that don't exist.
  4996. - Only set option to show devices and exit if built with opencl support.
  4997. - Enable curses earlier and exit with message in main for messages to not be
  4998. lost in curses windows.
  4999. - Make it possible to enter server credentials with curses input if none are
  5000. specified on the command line.
  5001. - Abstract out a curses input function and separate input pool function to allow
  5002. for live adding of pools later.
  5003. - Remove the nil arguments check to allow starting without parameters.
  5004. - Disable/enable echo & cbreak modes.
  5005. - Add a thread that takes keyboard input and allow for quit, silent, debug,
  5006. verbose, normal, rpc protocol debugging and clear screen options.
  5007. - Add pool option to input and display current pool status, pending code to
  5008. allow live changes.
  5009. - Add a bool for explicit enabling/disabling of pools.
  5010. - Make input pool capable of bringing up pools while running.
  5011. - Do one last check of the work before submitting it.
  5012. - Implement the ability to live add, enable, disable, and switch to pools.
  5013. - Only internally test for block changes when the work matches the current pool
  5014. to prevent interleaved block change timing on multipools.
  5015. - Display current pool management strategy to enable changing it on the fly.
  5016. - The longpoll blanking of the current_block data may not be happening before
  5017. the work is converted and appears to be a detected block change. Blank the
  5018. current block be
  5019. - Make --no-longpoll work again.
  5020. - Abstract out active pools count.
  5021. - Allow the pool strategy to be modified on the fly.
  5022. - Display pool information on the fly as well.
  5023. - Add a menu and separate out display options.
  5024. - Clean up the messy way the staging thread communicates with the longpoll
  5025. thread to determine who found the block first.
  5026. - Make the input windows update immediately instead of needing a refresh.
  5027. - Allow log interval to be set in the menu.
  5028. - Allow scan settings to be modified at runtime.
  5029. - Abstract out the longpoll start and explicitly restart it on pool change.
  5030. - Make it possible to enable/disable longpoll.
  5031. - Set priority correctly on multipools. Display priority and alive/dead
  5032. information in display_pools.
  5033. - Implement pool removal.
  5034. - Limit rolltime work generation to 10 iterations only.
  5035. - Decrease testing log to info level.
  5036. - Extra refresh not required.
  5037. - With huge variation in GPU performance, allow intensity to go from -10 to +10.
  5038. - Tell getwork how much of a work item we're likely to complete for future
  5039. splitting up of work.
  5040. - Remove the mandatory work requirement at startup by testing for invalid work
  5041. being passed which allows for work to be queued immediately. This also
  5042. removes the requirem
  5043. - Make sure intensity is carried over to thread count and is at least the
  5044. minimum necessary to work.
  5045. - Unlocking error on retry. Locking unnecessary anyway so remove it.
  5046. - Clear log window from consistent place. No need for locking since logging is
  5047. disabled during input.
  5048. - Cannot print the status of threads that don't exist so just queue enough work
  5049. for the number of mining threads to prevent crash with -Q N.
  5050. - Update phatk kernel to one with new parameters for slightly less overhead
  5051. again. Make the queue kernel parameters call a function pointer to select
  5052. phatk or poclbm.
  5053. - Make it possible to select the choice of kernel on the command line.
  5054. - Simplify the output part of the kernel. There's no demonstrable advantage from
  5055. more complexity.
  5056. - Merge pull request #18 from ycros/cgminer
  5057. - No need to make leaveok changes win32 only.
  5058. - Build support in for all SSE if possible and only set the default according to
  5059. machine capabilities.
  5060. - Win32 threading and longpoll keepalive fixes.
  5061. - Win32: Fix for mangled output on the terminal on exit.
  5062. CGMiner Version 1.3.1 - July 20, 2011
  5063. - Feature upgrade; Multiple strategies for failover. Choose from default which
  5064. now falls back to a priority order from 1st to last, round robin which only
  5065. changes pools when one is idle, rotate which changes pools at user-defined
  5066. intervals, and load-balance which spreads the work evenly amongst all pools.
  5067. - Implement pool rotation strategy.
  5068. - Implement load balancing algorithm by rotating requests to each pool.
  5069. - Timeout on failed discarding of staged requests.
  5070. - Implement proper flagging of idle pools, test them with the watchdog thread,
  5071. and failover correctly.
  5072. - Move pool active test to own function.
  5073. - Allow multiple strategies to be set for multipool management.
  5074. - Track pool number.
  5075. - Don't waste the work items queued on testing the pools at startup.
  5076. - Reinstate the mining thread watchdog restart.
  5077. - Add a getpoll bool into the thread information and don't restart threads stuck
  5078. waiting on work.
  5079. - Rename the idlenet bool for the pool for later use.
  5080. - Allow the user/pass userpass urls to be input in any order.
  5081. - When json rpc errors occur they occur in spits and starts, so trying to limit
  5082. them with the comms error bool doesn't stop a flood of them appearing.
  5083. - Reset the queued count to allow more work to be queued for the new pool on
  5084. pool switch.
  5085. CGMiner Version 1.3.0 - July 19, 2011
  5086. - Massive infrastructure update to support pool failover.
  5087. - Accept multiple parameters for url, user and pass and set up structures of
  5088. pool data accordingly.
  5089. - Probe each pool for what it supports.
  5090. - Implement per pool feature support according to rolltime support as
  5091. advertised by server.
  5092. - Do switching automatically based on a 300 second timeout of locally generated
  5093. work or 60 seconds of no response from a server that doesn't support rolltime.
  5094. - Implement longpoll server switching.
  5095. - Keep per-pool data and display accordingly.
  5096. - Make sure cgminer knows how long the pool has actually been out for before
  5097. deeming it a prolonged outage.
  5098. - Fix bug with ever increasing staged work in 1.2.8 that eventually caused
  5099. infinite rejects.
  5100. - Make warning about empty http requests not show by default since many
  5101. servers do this regularly.
  5102. CGMiner Version 1.2.8 - July 18, 2011
  5103. - More OSX build fixes.
  5104. - Add an sse4 algorithm to CPU mining.
  5105. - Fix CPU mining with other algorithms not working.
  5106. - Rename the poclbm file to ensure a new binary is built since.
  5107. - We now are guaranteed to have one fresh work item after a block change and we
  5108. should only discard staged requests.
  5109. - Don't waste the work we retrieve from a longpoll.
  5110. - Provide a control lock around global bools to avoid racing on them.
  5111. - Iterating over 1026 nonces when confirming data from the GPU is old code
  5112. and unnecessary and can lead to repeats/stales.
  5113. - The poclbm kernel needs to be updated to work with the change to 4k sized
  5114. output buffers.
  5115. - longpoll seems to work either way with post or get but some servers prefer
  5116. get so change to httpget.
  5117. CGMiner Version 1.2.7 - July 16, 2011
  5118. - Show last 8 characters of share submitted in log.
  5119. - Display URL connected to and user logged in as in status.
  5120. - Display current block and when it was started in the status line.
  5121. - Only pthread_join the mining threads if they exist as determined by
  5122. pthread_cancel and don't fail on pthread_cancel.
  5123. - Create a unique work queue for all getworks instead of binding it to thread 0
  5124. to avoid any conflict over thread 0's queue.
  5125. - Clean up the code to make it clear it's watchdog thread being messaged to
  5126. restart the threads.
  5127. - Check the current block description hasn't been blanked pending the real
  5128. new current block data.
  5129. - Re-enable signal handlers once the signal has been received to make it
  5130. possible to kill cgminer if it fails to shut down.
  5131. - Disable restarting of CPU mining threads pending further investigation.
  5132. - Update longpoll messages.
  5133. - Add new block data to status line.
  5134. - Fix opencl tests for osx.
  5135. - Only do local generation of work if the work item is not stale itself.
  5136. - Check for stale work within the mining threads and grab new work if
  5137. positive.
  5138. - Test for idle network conditions and prevent threads from being restarted
  5139. by the watchdog thread under those circumstances.
  5140. - Make sure that local work generation does not continue indefinitely by
  5141. stopping it after 10 minutes.
  5142. - Tweak the kernel to have a shorter path using a 4k buffer and a mask on the
  5143. nonce value instead of a compare and loop for a shorter code path.
  5144. - Allow queue of zero and make that default again now that we can track how
  5145. work is being queued versus staged. This can decrease reject rates.
  5146. - Queue precisely the number of mining threads as longpoll_staged after a
  5147. new block to not generate local work.
  5148. CGMiner Version 1.2.6 - July 15, 2011
  5149. - Put a current system status line beneath the total work status line
  5150. - Fix a counting error that would prevent cgminer from correctly detecting
  5151. situations where getwork was failing - this would cause stalls sometimes
  5152. unrecoverably.
  5153. - Limit the maximum number of requests that can be put into the queue which
  5154. otherwise could get arbitrarily long during a network outage.
  5155. - Only count getworks that are real queue requests.
  5156. CGMiner Version 1.2.5 - July 15, 2011
  5157. - Conflicting -n options corrected
  5158. - Setting an intensity with -I disables dynamic intensity setting
  5159. - Removed option to manually disable dynamic intensity
  5160. - Improve display output
  5161. - Implement signal handler and attempt to clean up properly on exit
  5162. - Only restart threads that are not stuck waiting on mandatory getworks
  5163. - Compatibility changes courtesy of Ycros to build on mingw32 and osx
  5164. - Explicitly grab first work item to prevent false positive hardware errors
  5165. due to working on uninitialised work structs
  5166. - Add option for non curses --text-only output
  5167. - Ensure we connect at least once successfully before continuing to retry to
  5168. connect in case url/login parameters were wrong
  5169. - Print an executive summary when cgminer is terminated
  5170. - Make sure to refresh the status window
  5171. CGMiner Versions -> 1.2.4
  5172. - Con Kolivas - July 2011. New maintainership of code under cgminer name.
  5173. - Massive rewrite to incorporate GPU mining.
  5174. - Incorporate original oclminer c code.
  5175. - Rewrite gpu mining code to efficient work loops.
  5176. - Implement per-card detection and settings.
  5177. - Implement vector code.
  5178. - Implement bfi int patching.
  5179. - Import poclbm and phatk ocl kernels and use according to hardware type.
  5180. - Implement customised optimised versions of opencl kernels.
  5181. - Implement binary kernel generation and loading.
  5182. - Implement preemptive asynchronous threaded work gathering and pushing.
  5183. - Implement variable length extra work queues.
  5184. - Optimise workloads to be efficient miners instead of getting lots of extra
  5185. work.
  5186. - Implement total hash throughput counters, per-card accepted, rejected and
  5187. hw error count.
  5188. - Staging and watchdog threads to prevent fallover.
  5189. - Stale and reject share guarding.
  5190. - Autodetection of new blocks without longpoll.
  5191. - Dynamic setting of intensity to maintain desktop interactivity.
  5192. - Curses interface with generous statistics and information.
  5193. - Local generation of work (xroll ntime) when detecting poor network
  5194. connectivity.
  5195. cpuminer Version 1.0.2
  5196. - Linux x86_64 optimisations - Con Kolivas
  5197. - Optimise for x86_64 by default by using sse2_64 algo
  5198. - Detects CPUs and sets number of threads accordingly
  5199. - Uses CPU affinity for each thread where appropriate
  5200. - Sets scheduling policy to lowest possible
  5201. - Minor performance tweaks
  5202. cpuminer Version 1.0.1 - May 14, 2011
  5203. - OSX support
  5204. cpuminer Version 1.0 - May 9, 2011
  5205. - jansson 2.0 compatibility
  5206. - correct off-by-one in date (month) display output
  5207. - fix platform detection
  5208. - improve yasm configure bits
  5209. - support full URL, in X-Long-Polling header
  5210. cpuminer Version 0.8.1 - March 22, 2011
  5211. - Make --user, --pass actually work
  5212. - Add User-Agent HTTP header to requests, so that server operators may
  5213. more easily identify the miner client.
  5214. - Fix minor bug in example JSON config file
  5215. cpuminer Version 0.8 - March 21, 2011
  5216. - Support long polling: http://deepbit.net/longpolling.php
  5217. - Adjust max workload based on scantime (default 5 seconds,
  5218. or 60 seconds for longpoll)
  5219. - Standardize program output, and support syslog on Unix platforms
  5220. - Suport --user/--pass options (and "user" and "pass" in config file),
  5221. as an alternative to the current --userpass
  5222. cpuminer Version 0.7.2 - March 14, 2011
  5223. - Add port of ufasoft's sse2 assembly implementation (Linux only)
  5224. This is a substantial speed improvement on Intel CPUs.
  5225. - Move all JSON-RPC I/O to separate thread. This reduces the
  5226. number of HTTP connections from one-per-thread to one, reducing resource
  5227. usage on upstream bitcoind / pool server.
  5228. cpuminer Version 0.7.1 - March 2, 2011
  5229. - Add support for JSON-format configuration file. See example
  5230. file example-cfg.json. Any long argument on the command line
  5231. may be stored in the config file.
  5232. - Timestamp each solution found
  5233. - Improve sha256_4way performance. NOTE: This optimization makes
  5234. the 'hash' debug-print output for sha256_way incorrect.
  5235. - Use __builtin_expect() intrinsic as compiler micro-optimization
  5236. - Build on Intel compiler
  5237. - HTTP library now follows HTTP redirects
  5238. cpuminer Version 0.7 - February 12, 2011
  5239. - Re-use CURL object, thereby reuseing DNS cache and HTTP connections
  5240. - Use bswap_32, if compiler intrinsic is not available
  5241. - Disable full target validation (as opposed to simply H==0) for now
  5242. cpuminer Version 0.6.1 - February 4, 2011
  5243. - Fully validate "hash < target", rather than simply stopping our scan
  5244. if the high 32 bits are 00000000.
  5245. - Add --retry-pause, to set length of pause time between failure retries
  5246. - Display proof-of-work hash and target, if -D (debug mode) enabled
  5247. - Fix max-nonce auto-adjustment to actually work. This means if your
  5248. scan takes longer than 5 seconds (--scantime), the miner will slowly
  5249. reduce the number of hashes you work on, before fetching a new work unit.
  5250. cpuminer Version 0.6 - January 29, 2011
  5251. - Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
  5252. - BeeCee1's sha256 4way optimizations
  5253. - lfm's byte swap optimization (improves via, cryptopp)
  5254. - Fix non-working short options -q, -r
  5255. cpuminer Version 0.5 - December 28, 2010
  5256. - Exit program, when all threads have exited
  5257. - Improve JSON-RPC failure diagnostics and resilience
  5258. - Add --quiet option, to disable hashmeter output.
  5259. cpuminer Version 0.3.3 - December 27, 2010
  5260. - Critical fix for sha256_cryptopp 'cryptopp_asm' algo
  5261. cpuminer Version 0.3.2 - December 23, 2010
  5262. - Critical fix for sha256_via
  5263. cpuminer Version 0.3.1 - December 19, 2010
  5264. - Critical fix for sha256_via
  5265. - Retry JSON-RPC failures (see --retry, under "minerd --help" output)
  5266. cpuminer Version 0.3 - December 18, 2010
  5267. - Add crypto++ 32bit assembly implementation
  5268. - show version upon 'minerd --help'
  5269. - work around gcc 4.5.x bug that killed 4way performance
  5270. cpuminer Version 0.2.2 - December 6, 2010
  5271. - VIA padlock implementation works now
  5272. - Minor build and runtime fixes
  5273. cpuminer Version 0.2.1 - November 29, 2010
  5274. - avoid buffer overflow when submitting solutions
  5275. - add Crypto++ sha256 implementation (C only, ASM elided for now)
  5276. - minor internal optimizations and cleanups
  5277. cpuminer Version 0.2 - November 27, 2010
  5278. - Add script for building a Windows installer
  5279. - improve hash performance (hashmeter) statistics
  5280. - add tcatm 4way sha256 implementation
  5281. - Add experimental VIA Padlock sha256 implementation
  5282. cpuminer Version 0.1.2 - November 26, 2010
  5283. - many small cleanups and micro-optimizations
  5284. - build win32 exe using mingw
  5285. - RPC URL, username/password become command line arguments
  5286. - remove unused OpenSSL dependency
  5287. cpuminer Version 0.1.1 - November 24, 2010
  5288. - Do not build sha256_generic module separately from cpuminer.
  5289. cpuminer Version 0.1 - November 24, 2010
  5290. - Initial release.