NEWS 310 KB

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