NEWS 278 KB

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