NEWS 335 KB

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