NEWS 333 KB

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