NEWS 151 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102
  1. Version ??? - Future
  2. - Major upgrade - support for the stratum mining protocol.
  3. - Fix various modminer warnings on mingw.
  4. - Fix sign warning on windows build for bitforce.
  5. - Cast socketfail to integer since SOCKET is an unsigned int on windows.
  6. - Use strtod not strtol for bitforce temp backup.
  7. - Cope with broken drivers returning nonsense values for bitforce temperatures.
  8. - Minor warning fixes.
  9. - Use the stratum thread to detect when a stratum pool has died based on no
  10. message for 2 minutes.
  11. - Only set the stratum auth flag once and once the stratum thread is started,
  12. use that to set/unset the stratum active flag.
  13. - Only hand off to stratum from getwork if we succeed in initiating the
  14. protocol.
  15. - Target should only be 32 bytes copied.
  16. - Use a static array for work submission data instead of stack memory.
  17. - Clear the buffer data before sprinting to it.
  18. - Clear work stratum strings before setting them and add them to debug output.
  19. - Drop stratum connect failed message to verbose level only since it's a regular
  20. probing message.
  21. - TCP Keepalive in curl is only in very recent versions and not required with
  22. regular messages on stratum anyway.
  23. - Move stratum sockets to curl infrastructure with locking around send+recv to
  24. begin support for proxies and ssl.
  25. - Make detect stratum fail if a proxy has been set up.
  26. - Stratum does not currently have any proxy support so do not try to switch to
  27. stratum if a proxy has been specified.
  28. - Windows doesn't work with MSG_PEEK on recv so move to a continuously updating
  29. buffer for incoming messages.
  30. - Alloca is unreliable on windows so use static arrays in util.c stratum code.
  31. - Begin support for mingw stratum build.
  32. - Add space to reject reason.
  33. - Parse the reject reason where possible from stratum share submission.
  34. - Pass json error value to share result function to be able to parse reject
  35. reason in stratum.
  36. - Don't try to parse unneeded parameters in response to mining.subscribe.
  37. - Remove the sshare hash entry if we failed to send it.
  38. - Change notify message to info level to avoid spamming repeatedly when a pool
  39. is down.
  40. - Check the stratum pool difference has not changed compared to the work diff
  41. when testing whether a share meets the target or not and retarget if necessary.
  42. - Bit error in target calculation for stratum.
  43. - Set work_block in gen_stratum_work for when work is reused to avoid thinking
  44. it's all stale.
  45. - Offset the current block detection to the prev block hash.
  46. - We should be testing for id_val, not id in parse stratum response.
  47. - Make target on stratum scale to any size by clearing sequential bits according
  48. to diff.
  49. - Correct target calculation in gen_stratum_work.
  50. - If a share result has an error code but still has an id, it is likely a
  51. reject, not an error.
  52. - Initiate stratum the first time in pool_active only, allowing us to switch to
  53. it on getting a failed getwork and detecting the presence of stratum on the url
  54. at that time.
  55. - Use 5 second timeout on sock full for now as a temporary workaround.
  56. - If no stratum url is set by the end of the detect stratum routine, copy the
  57. sockaddr url.
  58. - Make all buffers slightly larger to prevent overflow.
  59. - Make the stratum recv buffer larger than the recvsize.
  60. - Userpass needs to be copied to user and pass earlier to allow stratum
  61. authorisation to work with it.
  62. - Store a sockaddr url of the stripped url used in determining sockaddr to not
  63. confuse it with the stratum url and fix build warnings.
  64. - Decrease the queued count with stratum work once it's staged as well.
  65. - Allow the stratum retry to initiate and auth stratum in pool_alive to make
  66. sure the stratum thread is started.
  67. - Avoid duplicating pool->rpc_url and setting pool->stratum_url twice to itself.
  68. - Detect if a getwork based pool has the X-Stratum header on startup, and if so,
  69. switch to the stratum based pool.
  70. - Comment update.
  71. - Minor message change.
  72. - Create a work item from a "clean" request from stratum allowing the new block
  73. to be detected and the appropriate block change message to be given.
  74. - Use statically allocated stratum strings in struct work to cope with the
  75. inability to safely deallocate dynamically allocated ram.
  76. - Use the current pool when deciding whether to reuse work from a stratum source
  77. rather than the work's previous pool.
  78. - Copy the stratum url to the rpc url to avoid none being set.
  79. - Provide locking around stratum send operations to avoid races.
  80. - Submit shares from stratum through the abstracted submit share function
  81. detecting what message they belong to and showing the data from the associated
  82. work, and then deleting it from the hash.
  83. - Use a more robust mechanism to obtain a \n terminated string over a socket.
  84. - Abstract out share submit as a function to be useable by stratum.
  85. - Rename parse_stratum to parse_method as it is only for stratum messages that
  86. contain methods.
  87. - Display stratum as mechanism in status line when current pool is running it.
  88. - Count each stratum notify as a getwork equivalent.
  89. - Correct nonce submitted with share.
  90. - Extranonce2 should be added before coinbase2.
  91. - We should be hashing the binary coinbase, not the hex one.
  92. - Fix endianness of nonce submitted for stratum.
  93. - Check that stratum is already active in initiate_stratum to avoid
  94. de-authorising ourselves by subscribing again.
  95. - Begin implementing a hash database of submissions and attempt sending results.
  96. - Copy parameters from stratum work required for share submission.
  97. - Set lagging flag on first adding a pool to prevent pool slow warning at
  98. startup.
  99. - Fix work->target being a 32 byte binary in gen_stratum_work.
  100. - Store and display stripped url in its own variable.
  101. - Create machinery to divert work requests to stratum.
  102. - Generate the work target in gen_stratum_work, setting default diff to 1 in
  103. case it is not yet set.
  104. - Generate work data, midstate and hash1 in gen_stratum_work.
  105. - Generate header created from stratum structures in gen_stratum_work.
  106. - Generate merkle root hash in gen_stratum_work.
  107. - Generate the coinbase for generation of stratum based work.
  108. - The number of transactions is variable so make merkle a variable length
  109. dynamically allocated array and track how many there are for stratum.
  110. - Rename nonce2 to n2size reflecting that it's a size variable and not the
  111. actual nonce.
  112. - Provide rudimentary support for stratum clean work command in the stratum
  113. thread.
  114. - Cope with pools being removed in the stratum thread.
  115. - Use the pool sock value directly in the stratum thread in case it changes
  116. after reconnecting.
  117. - Create a stratum thread per pool that has stratum that monitors the socket and
  118. serves received data.
  119. - Check return value of stratum_parse.
  120. - Complete authorisation in stratum.
  121. - Implement stratum parsing of notify parameters and storing them in the pool
  122. stratum work structure.
  123. - Create helper functions for duplicating json strings to avoid keeping json
  124. references in use.
  125. - Append \n in the sock_send function instead of adding it when constructing
  126. json in stratum.
  127. - Don't keep any json references around with stratum structures.
  128. - Create parse_stratum function that hands off stratum parameters to other
  129. functions to manage pool stratum work struct variables. Implement mining
  130. difficulty setting.
  131. - Create helper functions for checking when a socket is ready to read on and
  132. receive a single line at a time. Begin stratum authorisation process.
  133. - Provide a helper function for reading a single \n terminated string from a
  134. socket.
  135. - Create a stratum work structure to store current work variables.
  136. - Test specifically for stratum being active in pool_active.
  137. - Detect stratum in common place when adding urls, and use a bool to tell us
  138. when it's active.
  139. - Fix warnings.
  140. - Extract and store various parameters on stratum init confirming successful
  141. mining notify.
  142. - Use existing socket macros and close the socket on failure in init stratum.
  143. - Initiate stratum and grab first json result.
  144. - Get detailed addressinfo from the parsed URL for future raw socket usage when
  145. possible. IPV4 only for now.
  146. - Prepare for getaddrinfo call.
  147. - Add data structures to pool struct for socket communications.
  148. - Put all socket definitions in util.h to allow reusing by added socket
  149. functions to be used in util.c.
  150. BFGMiner Version 2.8.2 - October 8, 2012
  151. - Update to libblkmaker 0.1.2
  152. - Bugfix: --temp-target no longer has a simple default (fixes build without
  153. OpenCL support)
  154. - Bugfix: icarus: Silence false epoll error
  155. - Bugfix: icarus: Set firstrun for errors starting next job, so the current
  156. one finishes properly
  157. - Bugfix: icarus: Restore generic failure management for write errors
  158. - Use strtod not strtol for bitforce temp backup.
  159. - Cope with broken drivers returning nonsense values for bitforce temperatures.
  160. - Minor warning fixes.
  161. - Fix unused warnings on ming build.
  162. - Fix sign warning in ocl.c
  163. - fds need to be zeroed before set in modminer.
  164. - Put scrypt warning on separate line to avoid 0 being shown on windows as
  165. bufsize.
  166. - Prevent corrupt values returned from the opencl code from trying to read
  167. beyond the end of the buffer by masking the value to a max of 15.
  168. - Icarus USB write failure is also a comms error
  169. - api.c DEBUG message has no paramter
  170. - Icarus catch more USB errors and close/reopen the port
  171. - API-README update cgminer verison number
  172. - hashmeter fix stats kh/s on 32bit windows
  173. - cairnsmore: Increase maximum clock frequency to 210 Mhz
  174. - icarus: Hashrate estimates really don't need the attention of a warning,
  175. demote them to debug
  176. - cairnsmore: Automatically "downgrade" default FPGA-per-device to 1 for
  177. dynclock devices
  178. - Bugfix: cairnsmore: Get autodetection of dynclock to work consistently
  179. - cairnsmore: Adjust dynclock usage to react in proper time
  180. - dynclock: Document function usage
  181. - cairnsmore: Fix race on dynclock detection
  182. - icarus: Detect attempts to send commands via work and neuter them
  183. - cairnsmore: Glasswalker has a minimum multiplier of 20 :(
  184. - cairnsmore: Detect frequency changing support despite hashing of commands
  185. - modminer: Allow clocks down to 2 Mhz just in case
  186. - Allow device drivers and users to properly change target temperatures for
  187. non-GPUs
  188. - Check that ncurses*-config installs actually work before deciding to use
  189. them
  190. - Bugfix: Fix multiple bugs in autogen.sh
  191. - - Don't use readlink -f unneccesarily (it's not portable)
  192. - - Always run autoreconf within the real source directory
  193. - - Run configure from PWD, *not* the real source directory
  194. - Bugfix: Include nonce in data buffer for debugging
  195. - Bugfix: swap32* wants count of 32-bit blocks, not bytes
  196. - Initial Cygwin port
  197. - Revert "Remove needless roundl define.", since it is needed for Cygwin and
  198. OpenWRT
  199. - Bugfix: Deal with various compiler warnings
  200. - modminer: Implement --temp-hysteresis logic
  201. - Support for maximum frequency being below the default, eg when the maximum
  202. is temporarily reduced to deal with temperature
  203. - Bugfix: modminer: Reduce dynclock max frequency as needed to keep
  204. temperature below cutoff
  205. - Bugfix: Restore disabled label, needed to skip over hashrate calculations
  206. (which mess up otherwise)
  207. - Bugfix: bitforce: Count actual throttling as hardware errors
  208. - icarus: Allow failure in case of reopen failure, now that the miner core
  209. will retry on its own
  210. - If a device dies, attempt to reinitialize it occasionally
  211. - Bugfix: The REST flag is now preferred over WAIT, since the former might
  212. trigger the latter
  213. - Bugfix: modminer: Update temperature readings when disabled (fixes thermal
  214. cutoff recovery)
  215. - Bugfix: Move thermal cutoff to general watchdog code (fixes bitforce
  216. recovery)
  217. - Rename enable_device to register_device, since it only works for setting it
  218. up at startup
  219. - Move targettemp from ADL to cgpu_info, so all devices can readily use it
  220. - Bugfix: "REST" flag had too much padding
  221. - Bugfix: adl: Only warn and disable GPU due to thermal cutoff, if it's
  222. actually enabled
  223. - Bugfix: bitforce: Only warn and disable bitforce due to thermal cutoff, if
  224. it's actually enabled
  225. BFGMiner Version 2.8.1 - September 27, 2012
  226. - Avoid strndup for Windows compatibility
  227. - Bugfix: cairnsmore: Add missing compat.h include (for sleep)
  228. - cairnsmore: Implement "identify" for supported firmware
  229. - Adjust identify_device API to return a bool whether supported or not, for
  230. runtime capability detection
  231. - Bugfix: cairnsmore: Fix invalid share detection on LE
  232. - Bugfix: icarus: Fix logging message to not assume "Icarus" always, and use
  233. device driver name
  234. - Bugfix: cairnsmore: Correct frequency scaling detection logic
  235. - cairnsmore: When changing frequency, adjust Hs expectations accordingly
  236. - cairnsmore: Detect availability of frequency scaling, and only enable it
  237. when supported
  238. - cairnsmore: Implement dynamic clocking support for Glasswalker's bitstream
  239. - Update libblkmaker to 0.1.1
  240. - Advertise BFGMiner in blocks found by default (without --coinbase-sig)
  241. - RPC: Add "Coinbase-Sig" to config/setconfig
  242. - New --coinbase-sig option to add arbitrary data to blocks you generate (GBT
  243. only)
  244. - opencl: Defer nonce validity checking to submit_nonce
  245. - scrypt: Implement test_nonce2 and submit_nonce hw error check
  246. - Bugfix: modminer: Convert nonce to native endian
  247. - Interpret any attempts to submit a H-not-zero nonce as a hardware error
  248. - make-release: Strip DLLs and EXE in Windows binary
  249. - dynclock: Use consistent messages for frequency changes
  250. - modminer: Port to dynclock
  251. - dynclock: Split dynamic clocking algorithm out of Ztex driver
  252. - Bugfix: When changing GPU memclock, adjust internal variable so it is
  253. correctly saved to config file
  254. - Bugfix: Re-probe longpoll header for each pool alive check, including
  255. retries when a preferred protocol fails
  256. - Bugfix: modminer: Bitstream binary filenames are *.bit
  257. - modminer: Start frequency off at 200 Mhz
  258. - Reorder libztex header include order to fix missing struct definition.
  259. - Display share difficulty on log with a shortened hash display on submission.
  260. - API stats add some pool getwork difficulty stats
  261. - Ignore any pings pushed to the worker threads if the thread is still paused to
  262. prevent it being enabled and disabled repeatedly.
  263. - Test for sequential getwork failures on a pool that might actually be up but
  264. failing to deliver work as we may end up hammering it repeatedly by mistake.
  265. - reduce windows compile warnings
  266. - util.c - bug - proxy - no data end condition
  267. - API don't change 'Diff1 Shares' - backward compatability FTW
  268. - miner.php highlighting correctly handling difficulty
  269. - API - Add last share difficulty for devices and pool
  270. - Store and report Accepted,Rejected,Stale difficulty in the summary and API
  271. - WorkTime - display prevblock for scrypt
  272. - api.c remove compile warnings
  273. - Calculate work difficulty for each getwork and display with WorkTime debug
  274. - FPGA - allow long or short device names in detect code + style police
  275. - WorkTime - multiple nonce per work and identify the work source
  276. - Optional WorkTime details with each Accepted/Rejected work item
  277. - Icarus - ignore hardware errors in timing mode
  278. - miner.php oops - mistype
  279. - API pgaidentify - unsupported message should be a warning
  280. - API/BFL identify a device - currently only BFL to flash the led
  281. - BFL add throttle count to internal stats + API
  282. - BFL: missing device id in log message
  283. - Bugfix: ztex: Clear device_ztex before freeing it
  284. - Bugfix: ztex: statline existence depends on whether the libztex structure
  285. exists, not whether the cgpu is enabled
  286. - Bugfix: README: Make usermod commands consistent, including important -a
  287. option
  288. - Bugfix: Address a couple of rare TQ leaks, and improve logging a bit
  289. - Bugfix: Properly quote configure options
  290. BFGMiner Version 2.8.0 - September 15, 2012
  291. - Be specific about jansson version requirement
  292. - Replace "Alive" in pool status with protocol in use (GBT or GWork)
  293. - Remove copy of old jansson from source repository
  294. - Honour block template expiry (BIP 23 Basic Pool Extensions "expires")
  295. - Add --no-gbt option so getblocktemplate can be disabled if it causes
  296. problems
  297. - BIP 22 long polling
  298. - Properly detect pool protocol
  299. - Bugfix: Sort out work template refcounting by properly using work_free and
  300. new workcpy
  301. - Support for rolling extranonce in templates
  302. - Initial libblkmaker integration, using a git submodule
  303. - cairnsmore: There's no set hashrate like Icarus, so always use short timing
  304. mode by default
  305. - Bugfix: Include unistd.h needed for ssize_t type
  306. - fpgautils: Don't try to scan serial at all anymore, if a device is claimed
  307. - fpgautils: serial_claim function to politely ask other drivers not to try to
  308. use device
  309. - RPC: Update to work with Cairnsmore
  310. - cairnsmore: Windows autodetect using FTDI library
  311. - cairnsmore: Beginnings of new driver, with automatic upgrade from Icarus
  312. detection
  313. - icarus: Support disabling reopen quirk via --icarus-options
  314. - proxy: Replace mess of encoding proxy into pool URI with a --pool-proxy
  315. option, and use cURL's builtin proxy URI support
  316. - save individual pool proxy settings to config
  317. - API-README update for pools proxy info
  318. - CURL support for individual proxy per pool and all proxy types
  319. - Bugfix: Update current_block_id for fixed set_curblock
  320. - miner.php by default don't display IP/Port numbers in error messages
  321. - api.c all STATUS messages automatically escaped
  322. - API add display of and setting queue,scantime,expiry
  323. - README - FPGA device FAQ
  324. - API add device diff1 work
  325. - count device diff1 shares
  326. - API-README update
  327. - api.c Correct diff1 field name
  328. - Bugfix: Sanitize block hash handling (including fixing on big endian)
  329. - Bugfix: Print the (full) correct block hash when warning about work issued
  330. against old blocks
  331. - Bugfix: When comparing current block, only pay attention to the prevblock
  332. header
  333. - Allow mixing user+pass and userpass, so long as user+pass are balanced
  334. before userpass options
  335. - ztex: Include device serial number and FPGA number in cgpu name field
  336. - ztex: Abstract common cgpu_info creation code
  337. - ztex: Do thread initialization in thread_init rather than thread_prepare
  338. - Bugfix: Tolerate working on old blocks when there is only one pool enabled
  339. - Bugfix: ztex: Detect through fpgautils so -S noauto correctly inhibits
  340. autodetection
  341. - ztex: Workaround duplicate share submissions by doubling "backlog" size
  342. - ztex: Use consistent device ids for logging
  343. - Bugfix: ztex: Increment global hw_errors too
  344. - Bugfix: free adhoc string elist element when removing it from list
  345. - Bugfix: icarus: Initialize lret variable after work restart reentry
  346. - Bugfix: ztex: Free lastnonce heap memory if backlog allocation fails
  347. - icarus: Initialize epoll event structure in a way Valgrind is happier with
  348. - Bugfix: Use strtok_r for parse_config since some options use strtok
  349. themselves
  350. - Import strtok_r from gnulib for Windows portability
  351. - Bugfix: ztex: Don't try to destroy a mutex that was never created (single
  352. FPGA Ztex devices)
  353. - ztex: Clean up redundant dereferencing in ztex_shutdown
  354. - API-README more debug parameter information
  355. - API allow full debug settings control
  356. - Sort the blocks database in reverse order, allowing us to remove the first
  357. block without iterating over them. Output the block number to debug.
  358. - Adjust opencl intensity when adjusting thread count to prevent it getting
  359. pegged at a value below the minimum threads possible.
  360. - miner.h max_hashes -> int64_t
  361. - Keep the local block number in the blocks structs stored and sort them by
  362. number to guarantee we delete the oldest when ageing the block struct entries.
  363. - Use correct sdk version detection for SDK 2.7
  364. - Bugfix: Align Ztex statline properly by removing redundant frequency
  365. - make-release: Convert text files to DOS format for Windows ZIP
  366. BFGMiner Version 2.7.5 - August 27, 2012
  367. - Revert "Do a complete cgminer restart if the ATI Display Library fails, as
  368. it does on windows after running for some time, when fanspeed reporting
  369. fails."
  370. - Stop special-casing worksize default to 256 for Cypress, since it incurs a 5
  371. MH/s hit with stock config
  372. - New "--scan-serial all" feature to probe all enumerated serial ports
  373. - modminer: Revamp dynamic clocking algorithm per request from cablepair
  374. - Test for lagging once more in queue_request to enable work to leak to backup
  375. pools.
  376. - There is no need to try to switch pools in select_pool since the current pool
  377. is actually not affected by the choice of pool to get work from.
  378. - Only clear the pool lagging flag if we're staging work faster than we're using
  379. it.
  380. - needed flag is currently always false in queue_request. Remove it for now.
  381. - thr is always NULL going into queue_request now.
  382. - Fix for non-ADL OpenCL device formatting issue
  383. BFGMiner Version 2.7.4 - August 23, 2012
  384. - Perform select_pool even when not lagging to allow it to switch back if needed
  385. to the primary.
  386. - Simplify macros in output kernels avoiding apparent loops and local variables.
  387. - Carry the needed bool over the work command queue.
  388. - Move the decision to queue further work upstream before threads are spawned
  389. based on fine grained per-pool stats and increment the queued count immediately.
  390. - Track queued and staged per pool once again for future use.
  391. - OpenCL 1.0 does not have native atomic_add and extremely slow support with
  392. atom_add so detect opencl1.0 and use a non-atomic workaround.
  393. - Pools: add RollTime info to API 'stats' and 'Stats' button in miner.php
  394. BFGMiner Version 2.7.3 - August 23, 2012
  395. - Minimise the number of getwork threads we generate.
  396. - Pick worksize 256 with Cypress if none is specified.
  397. - Give warning with sdk2.7 and phatk as well.
  398. - Whitelist sdk2.7 for diablo kernel as well.
  399. - Only keep the last 6 blocks in the uthash database to keep memory usage
  400. constant. Storing more is unhelpful anyway.
  401. - Increase kernel versions signifying changed APIs.
  402. - BFL flash - more FPGA-README
  403. - Check we haven't staged work while waiting for a curl entry before proceeding.
  404. - Use atomic ops to never miss a nonce on opencl kernels, including nonce==0,
  405. also allowing us to make the output buffer smaller.
  406. - Remove compile errors/warnings and document compile/usage in FPGA-README
  407. - Ignore the submit_fail flag when deciding whether to recruit more curls or not
  408. since we have upper bounds on how many curls can be recruited, this test is
  409. redundant and can lead to problems.
  410. - API-README update cgminer version number
  411. - API-README fix groups P: example mistake
  412. - API-README add COIN and other edits
  413. - miner.php allow 'coin' is custom pages
  414. BFGMiner Version 2.7.1 - August 22, 2012
  415. - Update windows build instructions courtesy of sharky.
  416. - Increase max curls to number of mining threads + queue * 2, accounting for up
  417. and downstream comms.
  418. - Queue enough requests to get started.
  419. - There is no point trying to clone_work in get_work() any more since we clone
  420. on every get_work_thread where possible.
  421. - There is no point subtracting 1 from maxq in get_work_thread.
  422. - miner.php allow page title to be defined in myminer.php
  423. - Only set lagging flag once there are no staged work items.
  424. - select_pool does not switch back to the primary once lagging is disabled.
  425. - Increment total work counter under mutex lock.
  426. - Increment the queued count after the curl is popped in case there's a delay
  427. waiting on curls and we think we've queued work when in fact we're waiting on
  428. curls.
  429. - Do the dynamic timing in opencl code over a single pass through scanhash to
  430. make sure we're only getting opencl times contributing to the measured
  431. intervals.
  432. - Increase curl reaping time to 5 minutes since comms between curl requests can
  433. be 2 mins apart with lots of rolltime.
  434. - No need for extra variable in hash_push.
  435. - Remove short options -r and -R to allow them to be reused and remove readme
  436. entries for deprecated options.
  437. - Deprecate the opt_fail_pause parameter, leaving a null placeholder for
  438. existing configurations.
  439. - Free work before retrying in get_work_thread.
  440. - Don't pause after failed getwork, set lagging flag and reassess.
  441. - We should not be pausing in trying to resubmit shares.
  442. - Get rid of the extending fail pause on failed connects since we discard work
  443. after a period.
  444. - get_work always returns true so turn it into a void function.
  445. - get_work never returns false so get rid of fail pause loop.
  446. - Get rid of pause and retry from get_upstream_work so we only do it from one
  447. place.
  448. - Remove all cases where --retries aborts BFGMiner, making it for submission
  449. retries only, where it makes sense.
  450. BFGMiner Version 2.7.0 - August 21, 2012
  451. - Implement a new pool strategy, BALANCE, which monitors work performed per pool
  452. as a rolling average every 10 minutes to try and distribute work evenly over all
  453. the pools. Do this by monitoring diff1 solutions to allow different difficulty
  454. target pools to be treated equally, along with solo mining. Update the
  455. documentation to describe this strategy and more accurately describe the
  456. load-balance one.
  457. - fpga serial I/O extra debug (disabled by default)
  458. - Getwork fail was not being detected. Remove a vast amount of unused variables
  459. and functions used in the old queue request mechanism and redefine the getfail
  460. testing.
  461. - Consider us lagging only once our queue is almost full and no staged work.
  462. - Simplify the enough work algorithm dramatically.
  463. - Only queue from backup pools once we have nothing staged.
  464. - Don't keep queueing work indefinitely if we're in opt failover mode.
  465. - Make sure we don't opt out of queueing more work if all the queued work is
  466. from one pool.
  467. - Set lagging flag if we're on the last of our staged items.
  468. - Reinstate clone on grabbing work.
  469. - Grab clones from hashlist wherever possible first.
  470. - Cull all the early queue requests since we request every time work is popped
  471. now.
  472. - Keep track of staged rollable work item counts to speed up clone_available.
  473. - Make expiry on should_roll to 2/3 time instead of share duration since some
  474. hardware will have very fast share times.
  475. - Check that we'll get 1 shares' worth of work time by rolling before saying we
  476. should roll the work.
  477. - Simplify all those total_secs usages by initialising it to 1 second.
  478. - Overlap queued decrementing with staged incrementing.
  479. - Artificially set the pool lagging flag on pool switch in failover only mode as
  480. well.
  481. - Artificially set the pool lagging flag on work restart to avoid messages about
  482. slow pools after every longpoll.
  483. - Factor in opt_queue value into enough work queued or staged.
  484. - Roll work whenever we can on getwork.
  485. - Queue requests for getwork regardless and test whether we should send for a
  486. getwork from the getwork thread itself.
  487. - Get rid of age_work().
  488. - Don't try to get bitforce temperature if we're polling for a result to
  489. minimise the chance of interleaved responses.
  490. - Fix harmless unused warnings in scrypt.h.
  491. - Check we are not lagging as well as there is enough work in getwork.
  492. BFGMiner Version 2.6.5 - August 20, 2012
  493. - API new command 'coin' with mining information
  494. - Add message to share if it's a resubmit.
  495. - Add virtual adl mapping for when none is specified on the command line to
  496. not crash without a map specified.
  497. - Fix ADL gpu-map not working when there are more ADL devices than openCL.
  498. Patch supplied and tested by Nite69.
  499. - bitforce: Initial import of Linux-only bitforce-firmware-flash utility
  500. - Revert stale-on-arrival failsafe, since it ends up needing exceptions for
  501. everything
  502. - Bugfix: opencl: Declare opencl_dynamic_cleanup in header
  503. - Even if we want to submit stale shares, give up if we have more submissions
  504. waiting on threads (even before failing)
  505. - Even if we want to submit stale shares, give up if they've failed and we
  506. have more submissions waiting on threads
  507. - opencl: Use timeBeginPeriod on Windows to ensure gettimeofday has sufficient
  508. precision for dynamic intensity
  509. - Bugfix: opencl: Move ADL fanspeed warning messages to a new thread to get
  510. around summary-update deadlocking
  511. - README: Note that user groups don't get updated until re-login
  512. - Initialise cnt in libztex.c
  513. - Don't try to start devices that don't support scrypt when scrypt mining.
  514. - Repeating on timeout in ztex could make the code never return.
  515. - Offset libusb reads/writes by length written as well in ztex.
  516. - Cope with timeouts and partial reads in ztex code.
  517. - If there are more devices than nDevs, don't iterate over them as they may
  518. overwrite devices mapped below that with the mapping option.
  519. - Fix README faq on bfl auto-detect.
  520. - Set memory clock based on memdiff if present from with engine changes,
  521. allowing it to parallel manual changes from the menu as well.
  522. - api.c typo
  523. - API allow display/change failover-only setting
  524. - API-README corrections
  525. - miner.php documentation (in API-README) v0.1
  526. - Bugfix: opencl: Show blank device-info statline area if GPU doesn't have
  527. ADL, to fix column alignment
  528. - README: Document usage of 0 to indicate "leave at default" for comma-
  529. delimited GPU options
  530. - Correct API-README versions to match when BFGMiner included them
  531. - API-README update changelog
  532. - Minimise locking and unlocking when getting counts by reusing shared mutex
  533. lock functions.
  534. - Avoid getting more work if by the time the getwork thread is spawned we find
  535. ourselves with enough work.
  536. - The bitforce buffer is cleared and hw error count incremented on return from a
  537. failed send_work already so no need to do it within the send_work function.
  538. - Don't make mandatory work and its clones last forever.
  539. - modminer: Log debug info for nonces found
  540. BFGMiner Version 2.6.4 - August 11, 2012
  541. - Bugfix: Define my_cancellable_getch in miner.h
  542. - Escape " and \ when writing json config file
  543. - miner.php allow a custom page section to select all fields with '*' - e.g. to
  544. create a STATS section on a custom page
  545. - miner.php optional single rig totals (on by default)
  546. - Bugfix: Initialize submitting mutex
  547. - Bugfix: bitforce: Allocate enough space for FTDI description pointers
  548. - Queue one request for each staged request removed, keeping the staged
  549. request count optimal at all times.
  550. - Bugfix: Avoid cancelling threads while locks are held
  551. - Set recognizable names on threads for debugging
  552. - Bugfix: Don't keep making new get_work threads if all pools are dead
  553. - Enable configuring submission thread limit with --submit-threads option
  554. - Bugfix: Limit active submission threads to 0x40 so we don't overflow
  555. - Bugfix: Properly handle switching to pools that aren't on the latest block,
  556. and warn if a pool actively switches to an old block
  557. - Log more details of reasons in stale_work debug messages
  558. - Failsafe against stale-on-arrival work: disable the pool
  559. - Bugfix: Debug message should show "Work stale due to work restart" when it's
  560. not a share
  561. - windows-build: Remove APP SDK section since it is no longer needed
  562. - modminer: HACK: Let last_work handle the end of the work, and start the next
  563. one immediately
  564. - Bugfix: modminer: Remove erroneous "else" statement, to fix hashrate
  565. reporting
  566. - README: Document user group required for FPGAs on Gentoo and Ubuntu
  567. - BFGMiner-specific README adjustments
  568. - Bugfix: opencl: Ignore error getting device ids from platforms unless they
  569. are explicitly chosen
  570. - New --debuglog option to include debug info in stderr logfile even if not in
  571. the console
  572. - Bumped down debhelper compatibility reqs so that this will build on Lucid.
  573. - Updated to match packaging changes.
  574. - Switched to native packages so we don't have to muck around creating fake
  575. upstream tarballs, and can easily generate minor versions for upload to
  576. Launchpad.
  577. - Removed accidentally included debugging line.
  578. - Minor version bump again because of launchpad. Will sort this out for next
  579. release.
  580. - Updated to patch bitforce module issue on Debian/Ubuntu.
  581. - Added local quilt config dir to ignore.
  582. - modminer: Check nonce against previous work, in case of race
  583. - Bugfix: Enable --kernel-path option if ModMiner or Ztex is enabled (even if
  584. no OpenCL)
  585. - Bugfix: Escape backslashes and double-quotes in strings that rightfully may
  586. have them, when writing JSON config file
  587. - Clean object (.o) and dependency (.d) files out of source tree
  588. - Bugfix: bitforce: Don't count hashes that never happened due to throttling
  589. - Bugfix: Deal with serial_open timeout maximum (25.5s)
  590. - - fpgautils: Linux only supports uint8_t decisecond values for timeouts, so
  591. use uint8_t for timeout value; this gets smart compilers to throw warnings
  592. when overflowed in some cases
  593. - - bitforce: Reduce serial timeout to 25 seconds (was 30) and increase job
  594. long timeout to 25 seconds (was 15) to handle throttling gracefully
  595. - modminer: Add debug info to API extra device stats
  596. - modminer: Raise clock speed when there's only good nonces for a while
  597. - modminer: Only print clock speed adjustments when they actually change
  598. - modminer: Increase tolerance for bad nonces to 2%
  599. - modminer: Reset bad-nonce ratio measurement when the clock speed changes
  600. - Bugfix: bitforce: Include the correct device id in "garbled response" warning
  601. - ADL: Add attribution and disclaimer to interfaces
  602. - Cleaned out refs to AMD SDKs.
  603. - Updated README about debian packaging, changelog with minor version bump to
  604. work around Launchpad reqs.
  605. - Updated changelog with Ubuntu release specific version, needed to build for
  606. multiple releases. Also stripped out ADL SDK stuff in the build rules.
  607. - Initial work to adjust debian packaging from cgminer. Should build correctly
  608. now with pbuilder/pdebuild, and include docs.
  609. - Adapt miner code to free ADL structures
  610. - Import free ADL interfaces
  611. - Include scrypt.h in Makefile.
  612. - Fix windows bitforce build.
  613. - Convert the serial autodetect functions to use int instead of char to
  614. enumerate devices.
  615. - Uglify windows autodetect code for BFL.
  616. - There is no point zeroing temperature in BFL if we fail to get a response, and
  617. we should register it as a HW error, suggesting throttling.
  618. - Update SCRYPT README with information about HW errors.
  619. - Use the scrypt CPU code to confirm results from OCL code, and mark failures as
  620. HW errors, making it easier to tune scrypt parameters.
  621. - We may as well leave one curl still available per pool instead of reaping the
  622. last one.
  623. - Display reaped debug message outside mutex lock to avoid recursive locking.
  624. - api.c update API start message and include port number
  625. - miner.php ignore arg when readonly
  626. - miner.php allow pool inputs: delete, addpool, poolpriority
  627. - bitforce: Reopen on communication error
  628. - Bugfix: Calculate hw err percent for the affected FPGA only
  629. - make-release: Adapt to new autogen by using NOCONFIGURE var
  630. BFGMiner Version 2.6.3 - August 6, 2012
  631. - modminer: Relax no-nonces downclocking condition to be more reasonable
  632. - README: Update scrypt configure option
  633. - README: Update configure options
  634. - Bugfix: Display --disable-modminer in configure --help now that it is
  635. enabled by default
  636. - Add specific information when ADL detects error -10 saying the device is not
  637. enabled.
  638. - modminer: Shorten upload warning message to fit better
  639. - modminer: Sending a "ping" first, to workaround bug in new firmware betas
  640. - modminer: Include Hardware Errors and Valid Nonces in extra device status
  641. - Bugfix: modminer: Calculate bad-nonce percentage based only on the same
  642. FPGA's hardware errors, accurately
  643. - modminer: Show bitstream upload progress in statline, and only report to log
  644. every 10%
  645. - modminer: Be more verbose about why the clock is getting reduced
  646. - Document how Icarus golden nonce is handled by other FPGAs
  647. - Rewrite should_run for sched, to properly handle one-shot schedules spanning
  648. midnight
  649. - Bugfix: Check list_empty in pop_curl_entry after condition wait
  650. - Bugfix: Only add new pools to array after completing basic structure
  651. initialization
  652. - If __BFGMINER_SEGFAULT_ERRQUIT is set in the environment, segfault on
  653. non-zero quit()s
  654. - Check against NULL pointers getting into curlring
  655. - modminer: Finish a process results run with a nonce poll, rather than sleep
  656. - modminer: Workaround Windows driver failures
  657. - Count likely throttling episodes on bitforce devices as hardware errors.
  658. - Bugfix: bitforce: Increase serial read timeout to 30 seconds during actual
  659. mining, to tolerate more throttling
  660. - Style cleanups.
  661. - Make pool_disabled the first in the enums == 0, fixing the pool enabled count
  662. which compares if value is not enabled before enabling it.
  663. - Correct writing of scrypt parameters to config file based on command line
  664. parameters only.
  665. - Add scrypt support while writing conf
  666. - Use different variables for command line specified lookup gap and thread
  667. concurrency to differentiate user defined versus auto chosen values.
  668. - Queue a request on pool switch in case we have no work from the new pool yet.
  669. - API remove unused warning in non-GPU compile
  670. - api.c in linux allow to open a closed socket in TIME_WAIT
  671. - Display failover only mode in pool menu and allow it to be toggled live.
  672. - Reinstate check for system queueing lag when the current pool's queue is maxed
  673. out, there is no staged work, and the work is needed now.
  674. - Fix harmless warnings.
  675. - Check the current staged and global queued as well before queueing requests.
  676. Discard stales before ageing work in the watchdog thread. Queue requests after
  677. discarding and ageing work in watchdog thread. Display accurate global queued in
  678. curses output. Reuse variable in age_work().
  679. - The queueing mechanism has become a complex state machine that is no longer
  680. predictable. Rewrite it from scratch watching only current queues in flight and
  681. staged work available on a pool by pool basis.
  682. - Update debian package configs to v2.6.2
  683. - Queue an extra request whenever staged work drops below mining thread count in
  684. hash_pop.
  685. - Bugfix: Initialize logwin to 1 line high temporarily, to avert PDCurses crash
  686. - Enable FPGA support by default, as long as their dependencies are met
  687. - Bugfix: modminer: Search for *ModMiner* in udev ID_MODEL
  688. - make-release: build with --enable-scrypt
  689. - miner.php support custom report section joins
  690. - ICA default fpga_count to work_division if specified
  691. - FPGA-README document new hidden --icarus-options
  692. - ICA support 57600 baud rate, up to 8 FPGA and partial working FPGA boards
  693. - Scrypt mining does not support block testing yet so don't try to print it.
  694. - Clear the bitforce buffer whenever we get an unexpected result as it has
  695. likely throttled and we are getting cached responses out of order, and use the
  696. temperature monitoring as a kind of watchdog to flush unexpected results.
  697. - It is not critical getting the temperature response in bitforce so don't
  698. mandatorily wait on the mutex lock.
  699. - Check there is a cutoff temp actually set in bitforce before using it as a cut
  700. off value otherwise it may think it's set to zero degrees.
  701. - We dropped the temporary stopping of curl recruiting on submit_fail by
  702. mistake, reinstate it.
  703. - Make threads report in either side of the scanhash function in case we miss
  704. reporting in when restarting work.
  705. - Add debugging output when work is found stale as to why.
  706. - Print the 3 parameters that are passed to applog for a debug line in
  707. bitforce.c
  708. - Clear bitforce buffer on init as previously.
  709. - Add some headroom to the number of curls available per pool to allow for
  710. longpoll and sendwork curls.
  711. - Show the correct base units on GPU summary.
  712. - Bugfix: bitforce: 1 decisecond timeout is unreasonably short, give it a
  713. second
  714. - Bugfix: Don't try to log abandon time, since we aren't keeping track
  715. reasonably
  716. - Import uthash 1.9.6
  717. - Bugfix: bitforce: Pause after send_work failures
  718. - Fix comm error handling to not consider work restarts an error condition
  719. - comm error bug fix
  720. - Bugfix: No endian.h on Windows
  721. - Remove unused mkinstalldirs
  722. - Display scrypt as being built in as well.
  723. - Fix build warning about KL_SCRYPT when built without scrypt support.
  724. - News update.
  725. - More scrypt intensity information.
  726. - Minor readme updates.
  727. - Update README with more build instructions.
  728. - Remove the low hash count determinant of hardware being sick. A low hash rate
  729. can be for poor network connectivity or scrypt mining, neither of which are due
  730. to sick hardware.
  731. - Style
  732. - API-README poolpriority changes
  733. - api.c verify poolpriority parameters before changing pools
  734. - api.c poolpriority changes
  735. - Implement shared swap32(yes|tole|tobe) function to handle endian flipping
  736. 32-bit chunks in blocks
  737. - Use correct macros for endian handling code
  738. BFGMiner Version 2.6.1 - July 29, 2012
  739. - Autoselect --scrypt iff all pools send scrypt work
  740. - Adapt SCRYPT-README to BFGMiner (directing Bitcoin donations the correct
  741. direction to reach Con)
  742. - Remove mentions of Litecoin specifically
  743. - Bugfix: Fix build without OpenCL but with scrypt
  744. - make-release: Add SCRYPT-README
  745. - Bump version 2.6.0, adding SCRYPT README to makefile.
  746. - Smarter autogen.sh script.
  747. - Sleeping on intensity decrease is broken, remove it.
  748. - Sleep only the extra amount of time we overran the dynamic interval in dynamic
  749. mode.
  750. - Add scrypt documentation in the form of a separate readme.
  751. - Fix build error without scrypt enabled.
  752. - Limit thread concurrency for scrypt to 5xshaders if shaders is specified.
  753. - Simplify repeated use of gpus[gpu]. in ocl.c
  754. - Find the nearest power of 2 maximum alloc size for the scrypt buffer that can
  755. successfully be allocated and is large enough to accomodate the thread
  756. concurrency chosen, thus mapping it to an intensity.
  757. - Don't make opt_scrypt mandatory blocking with opencl code.
  758. - Update kernel versions reflecting changes in the API.
  759. - Make the thread concurrency and lookup gap options hidden on the command line
  760. and autotune parameters with a newly parsed --shaders option.
  761. - Fix target testing with scrypt kernel as it would have been missing shares
  762. below target.
  763. - Always create the largest possible padbuffer for scrypt kernels even if not
  764. needed for thread_concurrency, giving us some headroom for intensity levels.
  765. - Use the detected maximum allocable memory on a GPU to determine the optimal
  766. scrypt settings when lookup_gap and thread_concurrency parameters are not given.
  767. - Check the maximum allocable memory size per opencl device.
  768. - Add debugging output if buffer allocation fails for scrypt and round up
  769. bufsize to a multiple of 256.
  770. - Nonce testing for btc got screwed up, leading to no accepted shares. Fix it.
  771. - Display size of scrypt buffer used in debug.
  772. - Allow intensities up to 20 if scrypt is compiled in.
  773. - Add name to scrypt kernel copyright.
  774. - Allow lookup gap and thread concurrency to be passed per device and store
  775. details in kernel binary filename.
  776. - Ignore negative intensities for scrypt.
  777. - Change the scale of intensity for scrypt kernel and fix a build warning.
  778. - Correct target value passed to scrypt kernel.
  779. - Use 256 output slots for kernels to allow 1 for each worksize.
  780. - Test the target in the actual scrypt kernel itself saving further
  781. calculations.
  782. - Reinstate GPU only opencl device detection.
  783. - Decrease lookup gap to 1. Does not seem to help in any way being 2.
  784. - Fix build.
  785. - Make pad0 and pad1 local variable in scrypt kernel.
  786. - Constify input variable in scrypt kernel.
  787. - Send correct values to scrypt kernel to get it finally working.
  788. - Create command queue before compiling program in opencl.
  789. - Fix external scrypt algo missing.
  790. - Limit scrypt to 1 vector.
  791. - Handle KL_SCRYPT in config write.
  792. - Get rid of stuff.
  793. - Don't enqueuewrite buffer at all for pad8 and pass work details around for
  794. scrypt in dev_blk.
  795. - Set the correct data for cldata and prepare for pad8 fixes.
  796. - Get rid of spaces in arrays in scrypt kernel.
  797. - Start with smaller amount of hashes in cpu mining to enable scrypt to return
  798. today sometime.
  799. - Free the scratchbuf memory allocated in scrypt and don't check if CPUs are
  800. sick since they can't be. Prepare for khash hash rates in display.
  801. - Add cpumining capability for scrypt.
  802. - Set scrypt settings and buffer size in ocl.c code to be future modifiable.
  803. - Cope with when we cannot set intensity low enough to meet dynamic interval by
  804. inducing a forced sleep.
  805. - Make dynamic and scrypt opencl calls blocking.
  806. - Fix nonce submission code for scrypt.
  807. - Make sure goffset is set for scrypt and drop padbuffer8 to something
  808. manageable for now.
  809. - Set up buffer8 for scrypt.
  810. - Build fix for opt scrypt.
  811. - Don't check postcalc nonce with sha256 in scrypt.
  812. - Don't test nonce with sha and various fixes for scrypt.
  813. - Make scrypt buffers and midstate compatible.
  814. - Use specific output array entries in scrypt kernel.
  815. - Provide initial support for the scrypt kernel to compile with and mine scrypt
  816. with the --scrypt option.
  817. - Enable completely compiling scrypt out.
  818. - Begin import of scrypt opencl kernel from reaper.
  819. BFGMiner Version 2.5.3 - July 29, 2012
  820. - Bugfix: Add zlib1.dll to Win32 release archive
  821. - Bugfix: SICK low-hashrate is now determined by being under 1/3 the runtime
  822. average hashrate
  823. - Bugfix: cpu_set_t is never #defined, so use CPU_ZERO which is a macro
  824. BFGMiner Version 2.5.2 - July 29, 2012
  825. - Limit total number of curls recruited per pool to the number of mining threads
  826. to prevent blasting the network when we only have one pool to talk to.
  827. - Bugfix: Skip writing configuration of range-limited int options with negative
  828. values
  829. - Bugfix: Correctly attempt to load ~/.bfgminer/bfgminer.conf or
  830. ~/.cgminer/cgminer.conf as defaults
  831. - Send X-Minimum-Wait header on longpolls, to explicitly inform pools we will
  832. handle a response with no delay
  833. - bitforce: Abandon (only) stale searches for work restarts
  834. - Keep a counter of enabled pools and use that instead of iterating over the
  835. pool list. Use that value to ensure we don't set the last remaining active pool
  836. to the rejecting state.
  837. - bitforce: Skip out of sending work if work restart requested
  838. - RPC: Writeup on poolpriority command usage
  839. - Bugfix: API: Report errors from poolpriority command
  840. - RPC: New "poolpriority" command to set the order of pool priorities
  841. - strtok_ts: Thread-safe strtok that work on POSIX or Windows
  842. - Bugfix: Supress "caught up" event when first switching to a pool
  843. - Announce and restart work immediately when current pool has caught up to the
  844. current block
  845. - Bugfix: Don't consider work stale due to other pools' longpolls, if
  846. --failover-only is active
  847. - Refactor stale_work function to only flag actual stale shares
  848. - stale_work: Don't factor getwork delay into expiry for shares (only for work
  849. itself)
  850. - Bugfix: Use pool number rather than numeric pointer to strict pool, in block
  851. found notice
  852. - Accept JSON Numbers in config file parameters
  853. - Improve readability of OPT_HASARG in parse_config
  854. - Allow JSON false as a valid value for strictly boolean options
  855. - Include scan-serial in example configuration file
  856. - fpgautils: add support for 57.6 kBd serial
  857. - miner.php add a socket RCV timeout for if cgminer is hung and the API thread
  858. is still running
  859. - BFL force all code to timeout to avoid hanging
  860. - Detach pthread from within the api thread in case it is terminated due to not
  861. being instantiated before pthread_cancel is called from main, leading to a
  862. segfault.
  863. - Initialise mdplatform.
  864. - Find the gpu platform with the most devices and use that if no platform option
  865. is passed.
  866. - Allow more platforms to be probed if first does not return GPUs.
  867. - Bugfix: It is not a hardware error if nonces returned from modminer don't
  868. meet the pool target
  869. - bitforce & icarus: Log detection failures at debug log level, so we don't
  870. confuse users who have different devices (which is why these drivers are
  871. failing detection!)
  872. - Show "WAIT" (LIFE_WAIT status) if a cgpu is idle waiting for work (pool
  873. slow/dead)
  874. - Instead of quitting on failing N retries, just discard the share
  875. - Bugfix: Don't discard stale shares after submission failure, if user or pool
  876. wants stales submitted
  877. - Bugfix: Record discard-during-retry shares in the sharelog
  878. - Bugfix: Only show Algorithm in RPC summary if CPU mining is actually active
  879. - OpenCL: Remove intensity from statline, since it overflowed
  880. - Move "Q" (requested getworks) to second status line as "GW" to balance out
  881. better
  882. - Bugfix: Use a mutex to control non-curses output
  883. - Simplify code to a single vprintf path for curses-less printing
  884. - Move opt_quiet check to my_log_curses, so it works for curses-less builds
  885. - Use log_generic for vapplog to cut down on code duplication
  886. - Add space to log output now that there is more screen real estate available.
  887. - Bugfix: Copy argv[0] given to dirname()
  888. - Find the gpu platform with the most devices and use that if no platform
  889. option is passed.
  890. - Allow more platforms to be probed if first does not return GPUs.
  891. - Detach pthread from within the api thread in case it is terminated due to not
  892. being instantiated before pthread_cancel is called from main, leading to a
  893. segfault.
  894. - Debug output per thread hashrate is out by a factor of 1000.
  895. - Don't check if CPUs are sick since they can't be.
  896. - Calculate midstate in separate function and remove likely/unlikely macros
  897. since they're dependent on pools, not code design.
  898. - Display in debug mode when we're making the midstate locally.
  899. - Bugfix: Document --no-adl and --gpu-platform
  900. - Bugfix: Remove redundant documentation of --auto-fan and --auto-gpu (they
  901. are in GPU-specific options)
  902. - CPU mining may not be included in binaries, but it's not deprecated for
  903. BFGMiner either
  904. - Bugfix: Restore case-insensitivity to input
  905. - Scroll the device list with up/down arrow keys, if it is overflowed
  906. - Use select statement to handle input
  907. - Bugfix: Actually check that the device fits in the individual summary window
  908. before trying to print it
  909. - Bugfix: Fix build without curses but with OpenCL
  910. - Bugfix: Don't show a Temperature key if it isn't known
  911. - BFGMiner-specific NEWS fix
  912. BFGMiner Version 2.5.1 - July 13, 2012
  913. - Replace CPU Algo in header with runtime
  914. - Bugfix: Calculate diff-1 utility to fix utility-hashrate on pools with
  915. diff!=1
  916. - Add utility hashrate to curses display
  917. - Show units in kh, Gh, Th, etc as needed to use at most 3 integer digits
  918. - Use FTD2XX.DLL on Windows to autodetect BitFORCE SHA256 devices
  919. - bitforce_get_result returns -1 on error now.
  920. - Check return value of read in BFgets
  921. - Bugfix: modminer: Count hashes done before work restart
  922. - Bugfix: modminer: Adapt "get nonce" error condition to new scanhash=>-1
  923. error API
  924. - Bugfix: Make our Windows nanosleep/sleep replacements standards-compliant
  925. (which fixes nmsleep) and include compat.h for bitforce (for sleep)
  926. - miner.php fix rig # when miners fail
  927. - Fix whitespace mangling.
  928. - bitforce: Use "full work" vs "nonce range" for kernel name
  929. - Abbrv. correction
  930. - Remove superfluous ave_wait
  931. - Put kname change for broken nonce-range back in
  932. - Add average wait time to api stats
  933. - Revert "Merge branch 'ave_time' of https://github.com/pshep/cgminer.git"
  934. - Add average return time to api stats
  935. - Missed one nonce-range disabling.
  936. - Remove bitforce_thread_init The delay thing does nothing useful... when long
  937. poll comes around, all threads restart at the same time anyway.
  938. - Change timeouts to time-vals for accuracy.
  939. - More BFL tweaks. Add delay between closing and reopening port. Remove buffer
  940. clear in re-init Add kernel type (mini-rig or single)
  941. - Revert "Change BFL driver thread initialising to a constant 100ms delay
  942. between devices instead of a random arrangement."
  943. - Only try to shut down work cleanly if we've successfully connected and started
  944. mining.
  945. - Fix spelling.
  946. - modminer: Firmware returns 0xffffff00 immediately if we set clockspeed too
  947. high
  948. - Bugfix: modminer: Actually count good shares
  949. - Bugfix: Adapt OpenCL scanhash errors to driver API change (errors are now -1,
  950. not 0)
  951. - Remove bitforce_thread_init The delay thing does nothing useful... when long
  952. poll comes around, all threads restart at the same time anyway.
  953. - fix API support for big endian machines
  954. - Bugfix: Use const struct device_api* for mt_disable
  955. - modminer: Show progress of bitstream upload
  956. - Bugfix: Don't declare devices SICK if they're just busy initializing
  957. - Bugfix: Calculate nsec in nmsleep correctly
  958. - miner.php allow rig names in number buttons
  959. - Change BFL driver thread initialising to a constant 100ms delay between
  960. devices instead of a random arrangement.
  961. - Spelling typo.
  962. - Time opencl work from start of queueing a kernel till it's flushed when
  963. calculating dynamic intensity.
  964. - Modify te scanhash API to use an int64_t and return -1 on error, allowing zero
  965. to be a valid return value.
  966. - Check for work restart after the hashmeter is invoked for we lose the hashes
  967. otherwise contributed in the count.
  968. - Remove disabled: label from mining thread function, using a separate
  969. mt_disable function.
  970. - Style changes.
  971. - Cope with signals interrupting the nanosleep of nmsleep.
  972. - Use standard cfsetispeed/cfsetospeed to set baud rate on *nix
  973. - miner.php split() flagged deprecated in PHP 5.3.0
  974. - Bugfix: Use nmsleep instead of restart_wait, so we always wait the full time
  975. - Make long timeout 10seconds on bitforce for when usleep or nanosleep just
  976. can't be accurate...
  977. BFGMiner Version 2.5.0 - July 7, 2012
  978. - Fix BitFORCE driver to not silenty discard valid shares (bug introduced by
  979. CGMiner merges)
  980. - Fix --benchmark not working since the dynamic addition of pools and pool
  981. stats.
  982. - Make disabling BFL nonce range support a warning since it has to be explicitly
  983. enabled on the command line now.
  984. - miner.php allow renaming table headers
  985. - Make bitforce nonce range support a command line option --bfl-range since
  986. enabling it decrease hashrate by 1%.
  987. - Add sanity checking to make sure we don't make sleep_ms less than 0 in
  988. bitforce.
  989. - The fastest minirig devices need a significantly smaller starting sleep time.
  990. - Use a much shorter initial sleep time to account for faster devices and nonce
  991. range working, and increase it if nonce range fails to work.
  992. - Use nmsleep instead of usleep in bitforce.
  993. - Provide a ms based sleep function that uses nanosleep to avoid the inaccuracy
  994. of usleep on SMP systems.
  995. - delay_time_ms is always set so need not be initialised in bitforce.
  996. - Increase bitforce timeout to 10 seconds.
  997. - Add more hysteresis and poll ~5 times to allow for timer delays in bitforce
  998. devices.
  999. - miner.php allow alternating line colours (off by default)
  1000. - Display the actual duration of wait when it is greater than the cutoff.
  1001. - Set nonce to maximum once we determine nonce range support is broken.
  1002. - Initial wait time is always known so no need to zero it beforehand in
  1003. bitforce.
  1004. - No point counting wait time until the work is actually sent to bitforce
  1005. devices.
  1006. - Use string comparison functions instead of explicit comparisons.
  1007. - Account for wait_ms time when nonce_range is in use on BFL.
  1008. - Split nonces up into 1/5 chunks when nonce range is supported.
  1009. - limit clear buffer iterations.
  1010. - Ad fd check to clear buffer.
  1011. - miner.php remove incorrect 'DATE' error message
  1012. - miner.php allow summary header in custom pages
  1013. - Disable nonce range support in BFL when broken support is detected.
  1014. - Restart_wait is only called with a ms value so incorporate that into the
  1015. function.
  1016. - Only try to adjust dev width when curses is built in.
  1017. - miner.php define custom sum fields as a simple array
  1018. - Fix off-by-one error in nonce increment in bfl.
  1019. - Use BE when setting nonce in bitforce nonce range work.
  1020. - Enable nonce range in the normal init sequence for bfl.
  1021. - Queue extra work at 2/3 differently depending on whether we're using nonce
  1022. range or not.
  1023. - Initially enable support for nonce range support on bfl, splitting nonces up
  1024. into 3/4 size and only disable it if it fails on work submit.
  1025. - Attempt to detect nonce range support in BFL by sending work requring its
  1026. support.
  1027. - Limit retrying on busy for up to BITFORCE_TIMEOUT_MS
  1028. - Attempt to initialise while bitforce device returns BUSY.
  1029. - Extend length of string that can be passed to BFL devices.
  1030. - Fix signedness warning.
  1031. - Adjust device width column to be consistent.
  1032. - Use cgpu-> not gpus[] in watchdog thread.
  1033. - Add api stats (sleep time)
  1034. - Timing tweaks Added long and short timeouts, short for detecting throttling,
  1035. long to give up totally. Reset sleep time when device re-initialised Still check
  1036. results after timeout Back up a larger time if result on first poll.
  1037. - Add API Notify counter 'Comms Error'
  1038. - Style police on api.c
  1039. - Do all logging outside of the bitforce mutex locking to avoid deadlocks.
  1040. - Remove applog call from bfwrite to prevent grabbing nested mutexes.
  1041. - Bitforce style changes.
  1042. - Minor style changes.
  1043. - Remove needless roundl define.
  1044. - Made JSON error message verbose.
  1045. - Fine-tune timing adjustment. Also remove old work_restart timing.
  1046. - Check for gpu return times of >= 0, not just 0, to fix intensity dropping to
  1047. -10.
  1048. - Restart is zeroed in the mining thread so no need to do it inside the bitforce
  1049. code.
  1050. - More improvements to comms. BFL return nothing when throttling, so should not
  1051. be considered an error. Instead repeat with a longer delay.
  1052. - Polling every 10ms there's not much point checking the pthread_cond_timedwait
  1053. as it just adds overhead. Simply check the value of work_restart in the bfl main
  1054. polling loop.
  1055. - Use a pthread conditional that is broadcast whenever work restarts are
  1056. required. Create a generic wait function waiting a specified time on that
  1057. conditional that returns if the condition is met or a specified time passed to
  1058. it has elapsed. Use this to do smarter polling in bitforce to abort work, queue
  1059. more work, and check for results to minimise time spent working needlessly.
  1060. - Add busy time to wait time.
  1061. - api.c put version up to 1.14
  1062. - Add tiny delay after writing to BFL Change BFL errors to something more human
  1063. readable Send work busy re-tries after 10ms delay
  1064. - Fix race condition in thread creation that could under some conditions crash
  1065. BFGMiner at startup
  1066. BFGMiner Version 2.4.4 - July 1, 2012
  1067. - Fix builds on non gnu platforms.
  1068. - api.c ensure old mode is always available when not using --api-groups + quit()
  1069. on param errors
  1070. - Implement rudimentary X-Mining-Hashrate support.
  1071. - Detect large swings in temperature when below the target temperature range and
  1072. change fan by amounts dependant on the value of tdiff.
  1073. - Adjust the fanspeed by the magnitude of the temperature difference when in the
  1074. optimal range.
  1075. - Revert "Restarting cgminer from within after ADL has been corrupted only leads
  1076. to a crash. Display a warning only and disable fanspeed monitoring."
  1077. - api.c fix json already closed
  1078. - implement and document API option --api-groups
  1079. - Put upper bounds to under 2 hours that work can be rolled into the future for
  1080. bitcoind will deem it invalid beyond that.
  1081. - define API option --api-groups
  1082. - api.c allow unwell devices to be enabled so they can be cured
  1083. - miner.php - fix/enable autorefresh for custom pages
  1084. - miner.php allow custom summary pages - new 'Mobile' summary
  1085. - Work around pools that advertise very low expire= time inappropriately as this
  1086. leads to many false positives for stale shares detected.
  1087. - Only show ztex board count if any exist.
  1088. - There is no need for work to be a union in struct workio_cmd
  1089. - fpgautils.c include a debug message for all unknown open errors
  1090. - Don't keep rolling work right up to the expire= cut off. Use 2/3 of the time
  1091. between the scantime and the expiry as cutoff for reusing work.
  1092. - Log a specific error when serial opens fail due to lack of user permissions
  1093. - Increase GPU timing resolution to microsecond and add sanity check to ensure
  1094. times are positive.
  1095. - Opencl code may start executing before the clfinish order is given to it so
  1096. get the start timing used for dynamic intensity from before the kernel is
  1097. queued.
  1098. - fpgautils.c - set BAUD rate according to termio spec
  1099. - fpgautils.c - linux ordering back to the correct way
  1100. - miner.php remove unneeded '.'s
  1101. - miner.php add auto refresh options
  1102. - miner.php add 'restart' next to 'quit'
  1103. - miner.php make fontname/size configurable with myminer.php
  1104. - Make the pools array a dynamically allocated array to allow unlimited pools to
  1105. be added.
  1106. - Make the devices array a dynamically allocated array of pointers to allow
  1107. unlimited devices.
  1108. - Dynamic intensity for GPUs should be calculated on a per device basis. Clean
  1109. up the code to only calculate it if required as well.
  1110. - Bugfix: Provide alternative to JSON_ENCODE_ANY for Jansson 1.x
  1111. - Use a queueing bool set under control_lock to prevent multiple calls to
  1112. queue_request racing.
  1113. - Use the work clone flag to determine if we should subtract it from the total
  1114. queued variable and provide a subtract queued function to prevent looping over
  1115. locked code.
  1116. - Don't decrement staged extras count from longpoll work.
  1117. - Count longpoll's contribution to the queue.
  1118. - Increase queued count before pushing message.
  1119. - Test we have enough work queued for pools with and without rolltime
  1120. capability.
  1121. - As work is sorted by age, we can discard the oldest work at regular intervals
  1122. to keep only 1 of the newest work items per mining thread.
  1123. - Roll work again after duplicating it to prevent duplicates on return to the
  1124. clone function.
  1125. - Abstract out work cloning and clone $mining_threads copies whenever a rollable
  1126. work item is found and return a clone instead.
  1127. - api.c display Pool Av in json
  1128. - Take into account average getwork delay as a marker of pool communications
  1129. when considering work stale.
  1130. - Work out a rolling average getwork delay stored in pool_stats.
  1131. - Getwork delay in stats should include retries for each getwork call.
  1132. - Walk through the thread list instead of searching for them when disabling
  1133. threads for dynamic mode.
  1134. - Extend nrolltime to support the expiry= parameter. Do this by turning the
  1135. rolltime bool into an integer set to the expiry time. If the pool supports
  1136. rolltime but not expiry= then set the expiry time to the standard scantime.
  1137. - When disabling fanspeed monitoring on adl failure, remove any twin GPU
  1138. association. This could have been leading to hangs on machines with dual GPU
  1139. cards when ADL failed.
  1140. - modminer: Don't delay 2nd+ FPGAs during work restart
  1141. - Disable OpenCL code when not available.
  1142. - Fix openwrt crashing on regeneratehash() by making check_solve a noop.
  1143. - FPGA - allow device detect override without an open failure
  1144. - Fix sign warning.
  1145. - Bugfix: icarus: properly store/restore info and work end times across longpoll
  1146. restarts
  1147. - Enable modminer for release builds
  1148. BFGMiner Version 2.4.3 - June 14, 2012
  1149. - Change device API "name" to reflect driver name abbreviation instead of device type name
  1150. - miner.php allow a separate user settings file
  1151. - modminer: Implement extended device stats to expose each Board to the RPC API
  1152. - Bugfix: Use new cgpu->thr for longpoll waking
  1153. - bitforce: Remove 4.5s delay before polling starts, since MiniRig finishes sooner
  1154. - FPGA - allow device detect override without an open failure
  1155. - Bugfix: Missing printf value in merge from cgminer
  1156. - Ensure C compiler is in C99 mode
  1157. - Add CPU core count detection for BSD/Mac
  1158. - Set CPU mining idle priority on Windows
  1159. - can_roll and should_roll should have no bearing on the cycle period within the
  1160. miner_thread so remove it.
  1161. - Check for strategy being changed to load balance when enabling LPs.
  1162. - Check that all threads on the device that called get_work are waiting on
  1163. getwork before considering the pool lagging.
  1164. - Iterate over each thread belonging to each device in the hashmeter instead of
  1165. searching for them now that they're a list.
  1166. - When using rotate pool strategy, ensure we only select from alive enabled
  1167. pools.
  1168. - Start longpoll from every pool when load balance strategy is in use.
  1169. - Add mandatory and block fields to the work struct. Flag any shares that are
  1170. detected as blocks as mandatory to submit, along with longpoll work from a
  1171. previously rejecting pool.
  1172. - Consider the fan optimal if fanspeed is dropping but within the optimal speed
  1173. window.
  1174. - Fix typo in some API messages (succeess/success)
  1175. - api.c MMQ stat bugs
  1176. - Bugfix: Fix warnings when built without libudev support
  1177. - Bugfix: slay a variety of warnings
  1178. - Bugfix: modminer: Fix unsigned/signed comparison and similar warnings
  1179. - API add ModMinerQuad support
  1180. - Bugfix: Honour forceauto parameter in serial_detect functions
  1181. - modminer: Temperature sensor improvements
  1182. - modminer: Make log messages more consistent in format
  1183. - Only adjust GPU speed up if the fanspeed is within the normal fanrange and
  1184. hasn't been turned to maximum speed under overheat conditions.
  1185. - ModMiner use valid .name
  1186. - New driver: BTCFPGA ModMiner
  1187. - Abstract generally useful FPGA code into fpgautils.c
  1188. - API add stats for pool getworks
  1189. - miner.php option to hide specific fields from the display
  1190. - miner.php add version numbers to the summary page
  1191. - Update debian configs to v2.4.2
  1192. - Add API and FPGA READMEs into Makefile to be included in source distribution.
  1193. - Icarus - fix unit64_t printf warnings
  1194. BFGMiner Version 2.4.2 - June 2, 2012
  1195. - Use epoll to immediately interrupt Icarus with new work on longpolls (Linux)
  1196. - API.class compiled with Java SE 6.0_03 - works with Win7x64
  1197. - miner.php highlight devs too slow finding shares (possibly failing)
  1198. - API update version to V1.11 and document changes
  1199. - API save default config file if none specified
  1200. - api.c save success incorrectly returns error
  1201. - api.c replace BUFSIZ (linux/windows have different values)
  1202. - Move RPC API content out of README to API-README
  1203. - Open a longpoll connection if a pool is in the REJECTING state as it's the
  1204. only way to re-enable it automatically.
  1205. - Use only one longpoll as much as possible by using a pthread conditional
  1206. broadcast that each longpoll thread waits on and checks if it's the current pool
  1207. before
  1208. - If shares are known stale, don't use them to decide to disable a pool for
  1209. sequential rejects.
  1210. - Restarting cgminer from within after ADL has been corrupted only leads to a
  1211. crash. Display a warning only and disable fanspeed monitoring.
  1212. - Icarus: fix abort calculation/allow user specified abort
  1213. - Icarus: make --icarus-timing hidden and document it in FPGA-README
  1214. - Icarus: high accuracy timing and other bitstream speed support
  1215. - add-MIPSEB-to-icarus-for-BIG_ENDIAN
  1216. - work_decode only needs swab32 on midstate under BIG ENDIAN
  1217. - add compile command to api-example.c
  1218. - save config bugfix: writing an extra ',' when no gpus
  1219. - Add dpkg-source commits
  1220. BFGMiner Version 2.4.1 - May 6, 2012
  1221. - Icarus: Calibrate hashrate yet even more accurately
  1222. - In the unlikely event of finding a block, display the block solved count with
  1223. the pool it came from for auditing.
  1224. - Display the device summary on exit even if a device has been disabled.
  1225. - Use correct pool enabled enums in api.c.
  1226. - Import Debian packaging configs
  1227. - Ensure we test for a pool recovering from idle so long as it's not set to
  1228. disabled.
  1229. - Fix pool number display.
  1230. - Give BFGMiner -T message only if curses is in use.
  1231. - Reinit_adl is no longer used.
  1232. - API 'stats' allow devices to add their own stats also for testing/debug
  1233. - API add getwork stats to BFGMiner - accesable from API 'stats'
  1234. - Don't initialise variables to zero when in global scope since they're already
  1235. initialised.
  1236. - Get rid of unitialised variable warning when it's false.
  1237. - Move a pool to POOL_REJECTING to be disabled only after 3 minutes of
  1238. continuous rejected shares.
  1239. - Some tweaks to reporting and logging.
  1240. - API support new pool status
  1241. - Add a temporarily disabled state for enabled pools called POOL_REJECTING and
  1242. use the work from each longpoll to help determine when a rejecting pool has
  1243. started working again. Switch pools based on the multipool strategy once a pool
  1244. is re-enabled.
  1245. - Removing extra debug
  1246. - Fix the benchmark feature by bypassing the new networking code.
  1247. - Reset sequential reject counter after a pool is disabled for when it is
  1248. re-enabled.
  1249. - ztex updateFreq was always reporting on fpga 0
  1250. - Trying harder to get 1.15y working
  1251. - Specifying threads on multi fpga boards extra cgpu
  1252. - Missing the add cgpu per extra fpga on 1.15y boards
  1253. - API add last share time to each pool
  1254. - Don't try to reap curls if benchmarking is enabled.
  1255. BFGMiner Version 2.4.0 - May 3, 2012
  1256. - Only show longpoll warning once when it has failed.
  1257. - Convert hashes to an unsigned long long as well.
  1258. - Detect pools that have issues represented by endless rejected shares and
  1259. disable them, with a parameter to optionally disable this feature.
  1260. - Bugfix: Use a 64-bit type for hashes_done (miner_thread) since it can overflow
  1261. 32-bit on some FPGAs
  1262. - Implement an older header fix for a label existing before the pthread_cleanup
  1263. macro.
  1264. - Limit the number of curls we recruit on communication failures and with
  1265. delaynet enabled to 5 by maintaining a per-pool curl count, and using a pthread
  1266. conditional that wakes up when one is returned to the ring buffer.
  1267. - Generalise add_pool() functions since they're repeated in add_pool_details.
  1268. - Bugfix: Return failure, rather than quit, if BFwrite fails
  1269. - Disable failing devices such that the user can attempt to re-enable them
  1270. - Bugfix: thread_shutdown shouldn't try to free the device, since it's needed
  1271. afterward
  1272. - API bool's and 1TBS fixes
  1273. - Icarus - minimise code delays and name timer variables
  1274. - api.c V1.9 add 'restart' + redesign 'quit' so thread exits cleanly
  1275. - api.c bug - remove extra ']'s in notify command
  1276. - Increase pool watch interval to 30 seconds.
  1277. - Reap curls that are unused for over a minute. This allows connections to be
  1278. closed, thereby allowing the number of curl handles to always be the minimum
  1279. necessary to not delay networking.
  1280. - Use the ringbuffer of curls from the same pool for submit as well as getwork
  1281. threads. Since the curl handles were already connected to the same pool and are
  1282. immediately available, share submission will not be delayed by getworks.
  1283. - Implement a scaleable networking framework designed to cope with any sized
  1284. network requirements, yet minimise the number of connections being reopened. Do
  1285. this by create a ring buffer linked list of curl handles to be used by getwork,
  1286. recruiting extra handles when none is immediately available.
  1287. - There is no need for the submit and getwork curls to be tied to the pool
  1288. struct.
  1289. - Do not recruit extra connection threads if there have been connection errors
  1290. to the pool in question.
  1291. - We should not retry submitting shares indefinitely or we may end up with a
  1292. huge backlog during network outages, so discard stale shares if we failed to
  1293. submit them and they've become stale in the interim.
  1294. BFGMiner Version 2.3.6 - April 29, 2012
  1295. - Shorten stale share messages slightly.
  1296. - Protect the freeing of current_hash under mutex_lock to prevent racing on it
  1297. when set_curblock is hit concurrently.
  1298. - Change default behaviour to submitting stale, removing the --submit-stale
  1299. option and adding a --no-submit-stale option.
  1300. - Make sure to start the getwork and submit threads when a pool is added on the
  1301. fly. This fixes a crash when a pool is added to running BFGMiner and then
  1302. switched to.
  1303. - Faster hardware can easily outstrip the speed we can get work and submit
  1304. shares when using only one connection per pool.
  1305. - Test the queued list to see if any get/submits are already queued and if they
  1306. are, start recruiting extra connections by generating new threads.
  1307. - This allows us to reuse network connections at low loads but recuit new open
  1308. connections as they're needed, so that BFGMiner can scale to hardware of any
  1309. size.
  1310. BFGMiner Version 2.3.5 - April 28, 2012
  1311. - Restarting BFGMiner leads to a socket that can't be bound for 60 seconds, so
  1312. increase the interval that API binding waits to 30 seconds to minimise the
  1313. number of times it will retry, spamming the logs.
  1314. - Give a longpoll message for any longpoll that detects a block change, primary
  1315. or backup, and also display which pool it was.
  1316. - Decrease utility display to one decimal place.
  1317. - Small cosmetic output alignment.
  1318. - Add pool number to stale share message.
  1319. - Add space to log output now that there is more screen real estate available.
  1320. - Indentation clean up.
  1321. - Remove thread id display from rejected shares as well.
  1322. - Merge pull request #185 from Diapolo/diakgcn
  1323. - add goffset support for diakgcn with -v 1 and update kernel version
  1324. - Set have_longpoll to true when there is at least one pool with longpoll.
  1325. - Don't display the thread ID since it adds no useful information over the
  1326. device number.
  1327. - Don't display the first 8 bytes of a share since they will always be zero at
  1328. >= 1 difficulty.
  1329. - work->longpoll is reset across test_work_current so we need to recheck what
  1330. pool it belongs to.
  1331. - Use longpolls from backup pools with failover-only enabled just to check for
  1332. block changes, but don't use them as work.
  1333. - Start longpoll only after we have tried to extract the longpoll URL.
  1334. - Check for submitold flag on resubmit of shares, and give different message for
  1335. stale shares on retry.
  1336. - Check for submitold before submitstale.
  1337. - Don't force fresh curl connections on anything but longpoll threads.
  1338. - Create one longpoll thread per pool, using backup pools for those pools that
  1339. don't have longpoll.
  1340. - Use the work created from the longpoll return only if we don't have
  1341. failover-enabled, and only flag the work as a longpoll if it is the current
  1342. pool.
  1343. - This will work around the problem of trying to restart the single longpoll
  1344. thread on pool changes that was leading to race conditions.
  1345. - It will also have less work restarts from the multiple longpolls received from
  1346. different pools.
  1347. - Remove the invalid entries from the example configuration file.
  1348. - Add support for latest ATI SDK on windows.
  1349. - Export missing function from libztex.
  1350. - miner.php change socktimeoutsec = 10 (it only waits once)
  1351. - Bugfix: Make initial_args a const char** to satisfy exec argument type warning
  1352. (on Windows only)
  1353. - miner.php add a timeout so you don't sit and wait ... forever
  1354. - Create discrete persistent submit and get work threads per pool, thus allowing
  1355. all submitworks belonging to the same pool to reuse the same curl handle, and
  1356. all getworks to reuse their own handle.
  1357. - Use separate handles for submission to not make getwork potentially delay
  1358. share submission which is time critical.
  1359. - This will allow much more reusing of persistent connections instead of opening
  1360. new ones which can flood routers.
  1361. - This mandated a rework of the extra longpoll support (for when pools are
  1362. switched) and this is managed by restarting longpoll cleanly and waiting for a
  1363. thread join.
  1364. - miner.php only show the current date header once
  1365. - miner.php also add current time like single rig page
  1366. - miner.php display rig 'when' table at top of the multi-rig summary page
  1367. - README - add some Ztex details
  1368. - api.c include zTex in the FPGA support list
  1369. - api.c ensure 'devs' shows PGA's when only PGA code is compiled
  1370. - miner.c sharelog code consistency and compile warning fix
  1371. - README correct API version number
  1372. - README spelling error
  1373. - api.c combine all pairs of sprintfs()
  1374. - api.c uncomment and use BLANK (and COMMA)
  1375. - Code style cleanup
  1376. - Annotating frequency changes with the changed from value
  1377. - README clarification of 'notify' command
  1378. - README update for API RPC 'devdetails'
  1379. - api.c 'devdetails' list static details of devices
  1380. - Using less heap space as my TP-Link seems to not handle this much
  1381. BFGMiner Version 2.3.4 - April 26, 2012
  1382. - New maintainership of code with modular FPGA/GPU focus, under BFGMiner name
  1383. - Complete working support for cross-compiling Windows builds on Linux.
  1384. - Fix usage of low --scan-time settings so it doesn't busy-loop
  1385. - JSON API: Add new 'devdetail' command to get fixed device information
  1386. - JSON API: Implement driver abstraction for extra device status
  1387. - Icarus: Use epoll to wait for serial port input properly, when available
  1388. - Icarus: Workaround buggy USB-UART that causes Icarus to stop mining rarely
  1389. - Icarus: Estimate mining hashrate correctly, calibrated from real-world data
  1390. - Icarus: Parallelize work setup with Icarus hash search improving performance
  1391. - Icarus: More reliable detection and runtime
  1392. - OpenCL: Move GPU-specific data fetching from JSON API to OpenCL driver
  1393. - OpenCL: Dynamically load OpenCL library, to be more vendor-independent and
  1394. allow use without actually having OpenCL (i.e. FPGA-only rigs).
  1395. CGMiner Version 2.3.4 - April 25, 2012
  1396. - Extensively document the cause of GPU device issues and the use of --gpu-map.
  1397. - Support for share logging
  1398. - Detect poorly performing combination of SDK and phatk kernel and add verbose
  1399. warning at startup.
  1400. - Icarus update to new add_cgpu()
  1401. - Icarus driver working with Linux and Windows
  1402. - api.c fix unused variable compile warning
  1403. - Display all OpenCL devices when -n is called as well to allow debugging of
  1404. differential mapping of OpenCL to ADL.
  1405. - Add a --gpu-map option which will allow arbitrarily mapping ADL devices to
  1406. OpenCL devices for instances where association by enumeration alone fails.
  1407. - Increase upper limit on number of extra items to queue as some FPGA code can't
  1408. yet reliably keep many devices busy.
  1409. - Display configuration file information when -c option is passed and only when
  1410. file exists on loading default config file.
  1411. - Display configuration file loaded, if any, and debug output if configuration
  1412. file parsing failed.
  1413. - Add missing ztex header to Makefile for distribution.
  1414. - Document long-form COM port device names on Windows, required to specify
  1415. serial ports above 9
  1416. - Include ztex bitstreams firmware in distribution and install if configured in.
  1417. - Style police on driver-ztex.c
  1418. - work_restart should only be changed by cgminer.c now
  1419. - Shut down the api cleanly when the api thread is cancelled. This should allow
  1420. the api socket to be closed successfully to next be reopened with app_restart.
  1421. - Make a union for cgpu device handles, and rename "device" to "device_ztex"
  1422. since it's Ztex-specific
  1423. - Initialise name variable.
  1424. - Remove unnecessary check for variable that always has memory allocated.
  1425. - Bugfix: Missing "break" no-op in default case
  1426. - Make the status window and log window as large as can fit on startup,
  1427. rechecking to see if it can be enlarged after the fact. This allows any number
  1428. of devices to be displayed provided the window is made long enough without
  1429. corrupting the output.
  1430. - Style police on libztex.c.
  1431. - API add removepool like the screen interface
  1432. - api.c escape required characters in return strings + pools returns the
  1433. username
  1434. - Set lp_path to NULL after free for consistency.
  1435. - Removing dmalloc import left behind by mistake
  1436. - Fixing leak in resp_hdr_cb
  1437. - miner.php warning highlight GPU stats if they are zero (e.g. ADL not enabled)
  1438. - miner.php highlight any device that isn't 'Enabled'
  1439. - miner.php highlight any Status that isn't 'Alive'
  1440. - miner.php optionally support multiple rigs
  1441. - Initial Ztex support 1.15x board.
  1442. CGMiner Version 2.3.3 - April 15, 2012
  1443. - Don't even display that cpumining is disabled on ./configure to discourage
  1444. people from enabling it.
  1445. - Do a complete cgminer restart if the ATI Display Library fails, as it does on
  1446. windows after running for some time, when fanspeed reporting fails.
  1447. - Cache the initial arguments passed to cgminer and implement an attempted
  1448. restart option from the settings menu.
  1449. - Disable per-device status lines when there are more than 8 devices since
  1450. screen output will be corrupted, enumerating them to the log output instead at
  1451. startup.
  1452. - Reuse Vals[] array more than W[] till they're re-initialised on the second
  1453. sha256 cycle in poclbm kernel.
  1454. - Minor variable alignment in poclbm kernel.
  1455. - Make sure to disable devices with any status not being DEV_ENABLED to ensure
  1456. that thermal cutoff code works as it was setting the status to DEV_RECOVER.
  1457. - Re-initialising ADL simply made the driver fail since it is corruption over
  1458. time within the windows driver that's responsible. Revert "Attempt to
  1459. re-initialise ADL should a device that previously reported fanspeed stops
  1460. reporting it."
  1461. - Microoptimise poclbm kernel by ordering Val variables according to usage
  1462. frequency.
  1463. CGMiner Version 2.3.2 - March 31, 2012
  1464. - Damping small changes in hashrate so dramatically has the tendency to always
  1465. make the hashrate underread so go back to gentle damping instead.
  1466. - Revert the crossover of variables from Vals to W in poclbm kernel now that
  1467. Vals are the first declared variables so they're used more frequently.
  1468. - Vals variables appearing first in the array in poclbm is faster.
  1469. - Change the preferred vector width to 1 for Tahiti only, not all poclbm
  1470. kernels.
  1471. - Use a time constant 0.63 for when large changes in hashrate are detected to
  1472. damp change in case the large change is an aliasing artefact instead of a real
  1473. chang
  1474. - Only increment stale counter if the detected stales are discarded.
  1475. - Attempt to re-initialise ADL should a device that previously reported fanspeed
  1476. stops reporting it.
  1477. - Move the ADL setup and clearing to separate functions and provide a reinit_adl
  1478. function to be used when adl fails while running.
  1479. - Use slightly more damping on the decay time function in the never-ending quest
  1480. to smooth off the hashmeter.
  1481. - Set the starting fanspeed to a safe and fairly neutral 50% when autofan is
  1482. enabled.
  1483. - Provide locking around updates of cgpu hashrates as well to prevent multiple
  1484. threads accessing data fields on the same device.
  1485. - Display the beginning of the new block in verbose mode in the logs.
  1486. - Reinstate old diablo kernel variable ordering from 120222, adding only goffset
  1487. and vector size hint. The massive variable ordering change only helped one SDK
  1488. on
  1489. - Change the version number on the correct kernels.
  1490. - api.c devicecode/osinfo incorrectly swapped for json
  1491. - Add extensive instructions on how to make a native windows build.
  1492. - Update version numbers of poclbm and diablo kernels as their APIs have also
  1493. changed.
  1494. - Use global offset parameter to diablo and poclbm kernel ONLY for 1 vector
  1495. kernels.
  1496. - Use poclbm preferentially on Tahiti now regardless of SDK.
  1497. - Remove unused constant passed to poclbm.
  1498. - Clean up use of macros in poclbm and use bitselect everywhere possible.
  1499. - Add vector type hint to diablo kernel.
  1500. - Add worksize and vector attribute hints to the poclbm kernel.
  1501. - Spaces for non-aligned variables in poclbm.
  1502. - More tidying of poclbm.
  1503. - Swap Vals and W variables where they can overlap in poclbm.
  1504. - More tidying of poclbm.
  1505. - Tidy up first half of poclbm.
  1506. - Clean up use of any() by diablo and poclbm kernels.
  1507. - Minor variable symmetry changes in poclbm.
  1508. - Put additions on separate lines for consistency in poclbm.
  1509. - Consolidate last use of W11 into Vals4 in poclbm.
  1510. - Change email due to SPAM
  1511. - api.c miner.php add a '*' to the front of all notify counters - simplifies
  1512. future support of new counters
  1513. - miner.php add display 'notify' command
  1514. - Small change to help arch's without processor affinity
  1515. - Fix bitforce compile error
  1516. - api.c notify should report disabled devices also - of course
  1517. - API returns the simple device history with the 'notify' command
  1518. - code changes for supporting a simple device history
  1519. - api.c Report an OS string in config to help with device issues
  1520. - api.c fix Log Interval - integer in JSON
  1521. - api.c config 'Device Code' to show list of compiled devices + README
  1522. - api.c increase buffer size close to current code allowable limit
  1523. - removed 8-component vector support from kernel, as this is not supported in
  1524. CGMINER anyway
  1525. - forgot to update kernel modification date, fixed ;)
  1526. - reordered an addition in the kernel, which results in less instructions used
  1527. in the GPU ISA code for GCN
  1528. - miner.php: option for readonly or check privileged access
  1529. - Ignore reduntant-with-build options --disable-gpu, --no-adl, and --no-restart
  1530. - miner.php: ereg_replace is DEPRECATED so use preg_replace instead
  1531. - Make curses TUI support optional at compile-time.
  1532. - Bugfix: AC_ARG_WITH provides withval instead of enableval
  1533. - miner.php split devs output for different devices
  1534. - api.c: correct error messages
  1535. - icarus.c modify (regular) timeout warning to only be debug
  1536. - icarus.c set the windows TODO timeout
  1537. - Allow specifying a specific driver for --scan-serial
  1538. - optimized nonce-check and output code for -v 2 and -v 4
  1539. - Bugfix: Check for libudev header (not just library) in configure, and document
  1540. optional dependency
  1541. - Add API support for Icarus and Bitforce
  1542. - Next API version is 1.4 (1.3 is current)
  1543. - README/api.c add "When" the request was processed to STATUS
  1544. - Bugfix: ZLX to read BitFORCE temp, not ZKX -.-
  1545. - Use libudev to autodetect BitFORCE GPUs, if available
  1546. - Use the return value of fan_autotune to set fan_optimal instead of passing it
  1547. as a pointer.
  1548. - Pass the lasttemp from the device we're using to adjust fanspeed in twin
  1549. devices.
  1550. - fix the name to 3 chars, fix the multi-icarus support
  1551. - Bugfix: "-S auto" is the default if no -S is specified, and there is no such
  1552. delay in using it
  1553. - README add information missing from --scan-serial
  1554. - Update README RPC API Version comment
  1555. - Bugfix: Allow enabling CPU even without OpenCL support
  1556. - Change failed-to-mine number of requested shares messge to avoid segfault on
  1557. recursive calling of quit().
  1558. - Get rid of extra char which is just truncated in poclbm kernel.
  1559. - only small code formating changes
  1560. - removed vec_step() as this could lead to errors on older SDKs
  1561. - unified code for generating nonce in kernel and moved addition of base to the
  1562. end -> faster
  1563. CGMiner Version 2.3.1 - February 24, 2012
  1564. - Revert input and output code on diakgcn and phatk kernels to old style which
  1565. worked better for older hardware and SDKs.
  1566. - Add a vector*worksize parameter passed to those kernels to avoid one op.
  1567. - Increase the speed of hashrate adaptation.
  1568. - Only send out extra longpoll requests if we want longpolls.
  1569. - API implement addpool command
  1570. - API return the untouched Total MH also (API now version 1.3)
  1571. - Add enable/disablepool to miner.php example and reduce font size 1pt
  1572. CGMiner Version 2.3.0 - February 23, 2012
  1573. - Consider extra longpoll work items as staged_extra so as to make sure we queue
  1574. more work if queueing regular work items as longpolls.
  1575. - Use diablo kernel on all future SDKs for Tahiti and set preferred vector width
  1576. to 1 on poclbm kernel only.
  1577. - Explicitly type the constants in diakgcn kernel as uint, to be in line with
  1578. poclbm kernel.
  1579. - Reset all hash counters at the same time as resetting start times to get
  1580. accurate hashrates on exiting which is mandatory for benchmarking.
  1581. - Report thread out before it starts to avoid being flagged as sick when waiting
  1582. for the first work item.
  1583. - Don't disable and re-enable devices as they may recover and in the meantime
  1584. have their status set to OFF.
  1585. - API new commands enablepool and disablepool (version already incremented)
  1586. - Tolerate new-format temperature readings for bitforce
  1587. - Modify cgminer.c pool control to allow API to call it
  1588. - Bugfix: Fix BitFORCE driver memory leak in debug logging
  1589. - Extra byte was being unused in poclbm leading to failure on some platforms.
  1590. - Explicitly type the constants in poclbm kernel as uint.
  1591. - Don't save 'include' when saving the configuration
  1592. - Allow configuration file to include another recursively
  1593. - Use the SDK and hardware information to choose good performing default
  1594. kernels.
  1595. - Move phatk kernel to offset vector based nonce bases as well.
  1596. - Add a --benchmark feature which works on a fake item indefinitely to compare
  1597. device performance without any server or networking influence.
  1598. - Allow writing of multiple worksizes to the configuration file.
  1599. - Allow writing of multiple vector sizes to the configuration file.
  1600. - Allow writing of multiple kernels to the configuration file.
  1601. - Allow multiple different kernels to be chosen per device.
  1602. - Allow the worksize to be set per-device.
  1603. - Allow different vectors to be set per device.
  1604. - If we're well below the target temperature, increase gpu engine speed back to
  1605. maximum in case we have gotten lost between profiles during an idle period.
  1606. - We should be setting the value of fan_optimal, not its address.
  1607. - As all kernels will be new versions it's an opportunity to change the .bin
  1608. format and make it simpler. Specifying bitalign is redundant and long can be l.
  1609. - Use any() in kernel output code.
  1610. - Put the nonce for each vector offset in advance, avoiding one extra addition
  1611. in the kernel.
  1612. - Reset times after all mining threads are started to make estimating hashrates
  1613. easier at startup.
  1614. - Bugfix: allow no-exec (NX) stack
  1615. - Fix minor warning.
  1616. - fix the bitforce.c code style follow 1TBS
  1617. - fix icarus.c compile warning
  1618. - small changes to speedup no vec for AMD 898.1 OCL runtime
  1619. - Update licensing to GPL V3.
  1620. - Reset the longpoll flag after it's been used once to prevent it restarting
  1621. work again.
  1622. - Begin import of DiabloMiner kernel.
  1623. - Modify API debug messages to say API instead of DBG
  1624. - When API shuts down cgminer don't kill itself
  1625. - Don't make rolled work from the longpoll be seen as other longpoll work items.
  1626. - API add 'privileged' command so can verify access level
  1627. - Set the lp_sent variable under lock since there will almost always be a race
  1628. on setting this variable, potentially leading to multiple LPs being sent out.
  1629. - API restrict access to all non display commands by default
  1630. - Update API version to 1.2 for new 'Log Interval'
  1631. - API add --log Interval to 'config' reply
  1632. - --api-allow special case 0/0 means all
  1633. CGMiner Version 2.2.7 - February 20, 2012
  1634. - Send out extra longpolls when we have switched pools and the longpoll thread
  1635. is still bound to the old one. This is particularly useful with p2pool where
  1636. longpolls do not correlate with main bitcoin block change and would have led to
  1637. high reject rates on failover.
  1638. - Store whether a work item is the result of a longpoll or not in struct work
  1639. and use it to help determine block changes directly from the work longpoll bool.
  1640. - Keep track of when a longpoll has been sent for a pool and if the current pool
  1641. is requesting work but has not sent a longpoll request, convert one of the work
  1642. items to a longpoll.
  1643. - Store the longpoll url in the pool struct and update it from the pool_active
  1644. test in case it changes. This is to allow further changes to longpoll management
  1645. on switching pools.
  1646. - Re-check for a longpoll supporting pool every 30 seconds if none is found
  1647. initially.
  1648. - Report threads as busy waiting on getwork on startup to avoid them being
  1649. flagged sick on startup during slow networking.
  1650. - Allow devices that are disabled due to overheating to be flagged as recovering
  1651. instead of disabling them and re-enable them if they're below ideal temperatures
  1652. - Tahiti prefers worksize 64 with poclbm.
  1653. - No need to expressly retain the opencl program now that the zero binary issue
  1654. is fixed. This actually fixes cgminer to work with the latest SDK included with
  1655. the ATI catalyst driver 12.2.
  1656. - Show error code on any opencl failure status.
  1657. - Add detection for version 898.1 SDK as well but only give SDK 2.6 warning once
  1658. on startup instead of with each device initialisation.
  1659. - Always use a fresh connection for longpoll as prolonged persistent connections
  1660. can fail for many reasons.
  1661. - Keep track of intended engine clock speed and only adjust up if it's higher
  1662. than the last intended speed. This avoids setting the clock speed to one
  1663. relative to a lower profile one by mistake.
  1664. - Use gpu-memdiff on startup if an engine clockspeed is set and a memdiff value
  1665. is set.
  1666. - Revert "Adjust engine speed up according to performance level engine setting,
  1667. not the current engine speed." - ineffectual.
  1668. - Freeze the queues on all threads that are sent the pause message to prevent
  1669. them trying to start up again with saved pings in their queues.
  1670. - Updates to diakgcn kernel/
  1671. - Consolidate all screen updates to the watchdog thread and touch both windows
  1672. before refresh.
  1673. - Curses will be disabled in clean_up so don't do it early in kill_work, and
  1674. disable_adl so that GPU settings may be restored to normal in case shutting down
  1675. curses leads to instability on windows.
  1676. - Stop the mining threads before trying to kill them.
  1677. - Plain refresh() does not give reliably screen updates so get rid of all uses
  1678. of it.
  1679. - First release with working diakgcn kernel.
  1680. CGMiner Version 2.2.6 - February 16, 2012
  1681. - Provide warning on each startup about sdk 2.6
  1682. - Fix unused warnings on win32.
  1683. - bitforce: Simplify BFopen WIN32 ifdef/else
  1684. - Fix initialization warning with jansson 1.3
  1685. - bitforce: Cleanup extraneous TODO that isn't needed
  1686. - Move tcsetattr (and new tcflush) into *nix BFopen to simplify things a bit
  1687. - Add message explaining 2nd thread disabling for dynamic mode and how to tune
  1688. it.
  1689. - Move logwindow down once number of devices is known.
  1690. - Automatically choose phatk kernel for bitalign non-gcn ATI cards, and then
  1691. only select poclbm if SDK2.6 is detected.
  1692. - Allow the refresh interval to be adjusted in dynamic intensity with a
  1693. --gpu-dyninterval parameter.
  1694. - Make curses display visible right from the beginning and fix the window sizes
  1695. so the initial messages don't get lost once the status window is drawn.
  1696. - The amount of work scanned can fluctuate when intensity changes and since we
  1697. do this one cycle behind, we increment the work more than enough to prevent
  1698. repeati
  1699. - bitforce: Set a 30 second timeout for serial port on Windows, since the
  1700. default is undefined
  1701. - Use PreVal4addT1 instead of PreVal4 in poclbm kernel.
  1702. - Import PreVal4 and PreVal0 into poclbm kernel.
  1703. - Import more prepared constants into poclbm kernel.
  1704. - Keep variables in one array but use Vals[] name for consistency with other
  1705. kernel designs.
  1706. - Replace constants that are mandatorily added in poclbm kernel with one value.
  1707. - Remove addition of final constant before testing for result in poclbm kernel.
  1708. - Hand optimise variable addition order.
  1709. - Hand optimise first variable declaration order in poclbm kernel.
  1710. - Radical reordering machine based first pass to change variables as late as
  1711. possible, bringing their usage close together.
  1712. - fix strcpy NULL pointer if env HOME unset.
  1713. - bitforce: Disable automatic scanning when at least one device is specified
  1714. manually
  1715. - Unroll all poclbm additions to enable further optimisations.
  1716. CGMiner Version 2.2.5 - February 13, 2012
  1717. - Make output buffer write only as per Diapolo's suggestion.
  1718. - Constify nonce in poclbm.
  1719. - Use local and group id on poclbm kernel as well.
  1720. - Microoptimise phatk kernel on return code.
  1721. - Adjust engine speed up according to performance level engine setting, not the
  1722. current engine speed.
  1723. - Try to load a binary if we've defaulted to the poclbm kernel on SDK2.6
  1724. - Use the poclbm kernel on SDK2.6 with bitalign devices only if there is no
  1725. binary available.
  1726. - Further generic microoptimisations to poclbm kernel.
  1727. - The longstanding generation of a zero sized binary appears to be due to the
  1728. OpenCL library putting the binary in a RANDOM SLOT amongst 4 possible binary
  1729. locations. Iterate over each of them after building from source till the real
  1730. binary is found and use that.
  1731. - Fix harmless warnings with -Wsign-compare to allow cgminer to build with -W.
  1732. - Fix missing field initialisers warnings.
  1733. - Put win32 equivalents of nanosleep and sleep into compat.h fixing sleep() for
  1734. adl.c.
  1735. - Restore compatibility with Jansson 1.3 and 2.0 (api.c required 2.1)
  1736. - Modularized logging, support for priority based logging
  1737. - Move CPU chipset specific optimization into device-cpu
  1738. CGMiner Version 2.2.4 - February 11, 2012
  1739. - Fix double definition of A0 B0 to zeroA zeroB.
  1740. - Retain cl program after successfully loading a binary image. May decrease
  1741. failures to build kernels at startup.
  1742. - Variable unused after this so remove setting it.
  1743. - BFI INT patching is not necessarily true on binary loading of files and not
  1744. true on ATI SDK2.6+. Report bitalign instead.
  1745. - Various string fixes for reject reason.
  1746. - Generalize --temp-cutoff and implement support for reading temperature from
  1747. BitFORCE FPGAs
  1748. - Change message from recovered to alive since it is used on startup as well as
  1749. when a pool has recovered.
  1750. - Start mining as soon as any pool is found active and rely on the watchpool
  1751. thread to bring up other pools.
  1752. - Delayed responses from testing pools that are down can hold up the watchdog
  1753. thread from getting to its device testing code, leading to false detection of
  1754. the GPU not checking in, and can substantially delay auto gpu/auto fan
  1755. management leading to overheating. Move pool watching to its own thread.
  1756. - Bugfix: BitFORCE index needs to be static to count correctly
  1757. - Space out retrieval of extra work according to the number of mining threads.
  1758. - Make shutdown more robust. Enable the input thread only after the other
  1759. threads exist. Don't kill off the workio thread and use it to exit main() only
  1760. if there is an unexpected problem. Use kill_work() for all anticipated shutdowns
  1761. where possible. Remove unused thread entry.
  1762. - Change poclbm version number.
  1763. - One array is faster than 2 separate arrays so change to that in poclbm kernel.
  1764. - Microoptimisations to poclbm kernel which increase throughput slightly.
  1765. - Import diablominer kernel. Currently disabled as not working.
  1766. - Import diapolo kernel. Currently disabled as not working.
  1767. - Conflicting entries of cl_kernel may have been causing problems, and
  1768. automatically chosen kernel type was not being passed on. Rename the enum to
  1769. cl_kernels and store the chosen kernel in each clState.
  1770. - Set cl_amd_media_ops with the BITALIGN flag and allow non-bitselect devices to
  1771. build.
  1772. - ALlow much longer filenames for kernels to load properly.
  1773. - Allow different kernels to be used by different devices and fix the logic fail
  1774. of overcorrecting on last commit with !strstr.
  1775. - Fix kernel selection process and build error.
  1776. - queue_phatk_kernel now uses CL_SET_VARG() for base-nonce(s), too
  1777. - added OpenCL >= 1.1 detection code, in preparation of OpenCL 1.1 global offset
  1778. parameter support
  1779. - Use K array explicitly to make it clear what is being added.
  1780. - Work items have a tendency to expire at exactly the same time and we don't
  1781. queue extra items when there are plenty in the queue, regardless of age. Allow
  1782. extra work items to be queued if adequate time has passed since we last
  1783. requested work even if over the limit.
  1784. - Discard work when failover-only is enabled and the work has come from a
  1785. different pool.
  1786. - Missing include to build on newer mingw32.
  1787. - Move from the thread safe localtime_r to regular localtime which is the only
  1788. one supported on newer pthread libraries on mingw32 to make it compile with the
  1789. newer ming. Thread safety is of no importance where localtime is used in this
  1790. code.
  1791. - Define in_addr_t in windows if required
  1792. - sys/wait.h not required in windows
  1793. - Allow API to restrict access by IP address
  1794. - Add pool switching to example miner.php
  1795. - Display X-Reject-Reason, when provided
  1796. - Remove the test for whether the device is on the highest profil level before
  1797. raising the GPU speed as it is ineffectual and may prevent raising the GPU
  1798. speed.
  1799. - Remove unnecessary check for opt_debug one every invocation of applog at
  1800. LOG_DEBUG level and place the check in applog().
  1801. CGMiner Version 2.2.3 - February 6, 2012
  1802. - Revert "Rewrite the convoluted get_work() function to be much simpler and roll
  1803. work as much as possible with each new work item." This seems to cause a race on
  1804. work in free_work(). Presumably other threads are still accessing the structure.
  1805. CGMiner Version 2.2.2 - February 6, 2012
  1806. - Provide support for the submitold extension on a per-pool basis based on the
  1807. value being detected in a longpoll.
  1808. - Don't send a ping to a dynamic device if it's not enabled as that will just
  1809. enable it for one pass and then disable it again.
  1810. - Rewrite the convoluted get_work() function to be much simpler and roll work as
  1811. much as possible with each new work item.
  1812. - Roll as much work as possible from the work returned from a longpoll.
  1813. - Rolling work on each loop through the mining thread serves no purpose.
  1814. - Allow to stage more than necessary work items if we're just rolling work.
  1815. - Replace divide_work with reuse_work function used twice.
  1816. - Give rolled work a new ID to make sure there is no confusion in the hashtable
  1817. lookups.
  1818. - Remove now-defunct hash_div variables.
  1819. - Remove unused get_dondata function.
  1820. - Silence ADL warnings.
  1821. - Silence unused parameter warnings.
  1822. - Stagger the restart of every next thread per device to keep devices busy ahead
  1823. of accessory threads per device.
  1824. - Deprecate the --donation feature. Needlessly complex, questionable usefulness,
  1825. depends on author's server and a central pool of some kind, and was not heavily
  1826. adopted.
  1827. - It's devices that report back now, not threads, update message.
  1828. - Continue auto-management of fan and engine speeds even if a device is disabled
  1829. for safety reasons.
  1830. - No need to check we're highest performance level when throttling GPU engine
  1831. speed.
  1832. - Abstract out tests for whether work has come from a block that has been seen
  1833. before and whether a string is from a previously seen block.
  1834. - Probe but don't set the timeout to 15 seconds as some networks take a long
  1835. time to timeout.
  1836. - Remove most compiler warnings from api.c
  1837. - Add last share's pool info in cgpu_info
  1838. - Allow the OpenCL platform ID to be chosen with --gpu-platform.
  1839. - Iterate over all platforms displaying their information and number of devices
  1840. when --ndevs is called.
  1841. - Deprecate main.c
  1842. - Some networks can take a long time to resolve so go back to 60 second timeouts
  1843. instead of 15.
  1844. - Only enable curses on failure if curses is desired.
  1845. - Fix warnings in bitforce.c
  1846. - Bugfix: Need to open BitForce tty for read-write
  1847. - Fix various build issues.
  1848. - Modularize code: main.c -> device-cpu + device-gpu
  1849. - Fix phatk kernel not working on non-bitalign capable devices (Nvidia, older
  1850. ATI).
  1851. - Update poclbm kernel for better performance on GCN and new SDKs with bitalign
  1852. support when not BFI INT patching. Update phatk kernel to work properly for non
  1853. BFI INT patched kernels, providing support for phatk to run on GCN and non-ATI
  1854. cards.
  1855. - Return last accepted share pool/time for devices
  1856. - Display accepted share pool/time for CPUs
  1857. - Bug intensity always shows GPU 0
  1858. - Update example web miner.php to use new API commands
  1859. CGMiner Version 2.2.1 - January 30, 2012
  1860. NOTE - The GPU Device reordering in 2.2.0 by default was considered a bad idea
  1861. so the original GPU ordering is used by default again unless reordering is
  1862. explicitly requested.
  1863. - Fix bitforce failing to build into cgminer.
  1864. - Add missing options to write config function.
  1865. - Add a --gpu-reorder option to only reorder devices according to PCI Bus ID
  1866. when requested.
  1867. - Fix for midstate support being broken on pools that supported no-midstate
  1868. work by ensuring numbers are 32 bits in sha2.c
  1869. - Set virtual GPUs to work when ADL is disabled or all mining will occur on GPU
  1870. 0.
  1871. - Add information about paused threads in the menu status.
  1872. - Disable all but the first thread on GPUs in dynamic mode for better
  1873. interactivity.
  1874. - Set the latest network access time on share submission for --net-delay even if
  1875. we're not delaying that submission for further network access.
  1876. - Clear adl on exiting after probing values since it may attempt to overclock.
  1877. - As share submission is usually staggered, and delays can be costly, submit
  1878. shares without delay even when --net-delay is enabled.
  1879. - Display GPU number and device name when ADL is successfully enabled on it.
  1880. - Display GPU ordering remapping in verbose mode.
  1881. - Don't fail in the case the number of ADL and OpenCL devices do not match, and
  1882. do not attempt to reorder devices unless they match. Instead give a warning
  1883. about
  1884. - Display error codes should ADL not return ADL_OK in the more critical function
  1885. calls.
  1886. - Fix unused warning.
  1887. - Fix compile warnings in api.c
  1888. - Add extensive ADL based device info in debug mode.
  1889. - Make --ndevs display verbose opencl information as well to make debugging
  1890. version information easier.
  1891. - Display information about the opencl platform with verbose enabled.
  1892. - Explicitly check for nvidia in opencl platform strings as well.
  1893. CGMiner Version 2.2.0 - January 29, 2012
  1894. NOTE: GPU Device order will change with this release with ATI GPUs as cgminer
  1895. now can enumerate them according to their Bus ID which means the values should
  1896. now correlate with their physical position on the motherboard.
  1897. - Default to poclbm kernel on Tahiti (7970) since phatk does not work, even
  1898. though performance is sub-standard so that at least it will mine successfully by
  1899. defau
  1900. - Retain cl program after every possible place we might build the program.
  1901. - Update ADL SDK URL.
  1902. - Fix potential overflow.
  1903. - Map GPU devices to virtual devices in their true physical order based on
  1904. BusNumber.
  1905. - Change the warning that comes with failure to init cl on a device to be more
  1906. generic and accurate.
  1907. - Advertise longpoll support in X-Mining-Extensions
  1908. - Detect dual GPU cards by iterating through all GPUs, finding ones without
  1909. fanspeed and matching twins with fanspeed one bus ID apart.
  1910. - Do not attempt to build the program that becomes the kernel twice. This could
  1911. have been leading to failures on initialising cl.
  1912. - Some opencl compilers have issues with no spaces after -D in the compiler
  1913. options.
  1914. - Allow intensity up to 14.
  1915. - Use calloced stack memory for CompilerOptions to ensure sprintf writes to the
  1916. beginning of the char.
  1917. - Whitelist 79x0 cards to prefer no vectors as they perform better without.
  1918. - Adjust fan speed gently while in the optimal range when temperature is
  1919. drifting to minimise overshoot in either direction.
  1920. - Detect dual GPU cards via the indirect information of - 1st card has a fan
  1921. controller. 2nd card does not have a fan controller, cards share the same device
  1922. name
  1923. - Instead of using the BFI_INT patching hack on any device reporting
  1924. cl_amd_media_ops, create a whitelist of devices that need it. This should enable
  1925. GCN architec
  1926. - Fixed API compiling issue on OS X
  1927. - Add more explanation of JSON format and the 'save' command
  1928. - Return an error if using ADL API commands when it's not available
  1929. - Read off lpThermalControllerInfo from each ADL device.
  1930. - Add ADL_Overdrive5_ThermalDevices_Enum interface.
  1931. - Add API commands: config, switchpool, gpu settings, save
  1932. - Implement socks4 proxy support.
  1933. - Fix send() for JSON strings
  1934. - Introduce a --net-delay option which guarantees at least 250ms between any
  1935. networking requests to not overload slow routers.
  1936. - Generalise locking init code.
  1937. - Allow invalid values to be in the configuration file, just skipping over them
  1938. provided the rest of the file is valid JSON. This will allow older configurat
  1939. - Allow CPU mining explicitly enable only if other mining support is built in.
  1940. - BitForce FPGA support
  1941. - Configure out building and support of all CPU mining code unless
  1942. --enable-cpumining is enabled.
  1943. - Allow parsed values to be zero which will allow 0 values in the config file to
  1944. work.
  1945. - Advertise that we can make our own midstate, so the pool can skip generating
  1946. it for us
  1947. - Refactor the CPU scanhash_* functions to use a common API. Fixes bugs.
  1948. - Don't consider a pool lagging if a request has only just been filed. This
  1949. should decrease the false positives for "pool not providing work fast enough".
  1950. - Invalidating work after longpoll made hash_pop return no work giving a false
  1951. positive for dead pool. Rework hash_pop to retry while finds no staged work u
  1952. - Remove TCP_NODELAY from curl options as many small packets may be contributing
  1953. to network overload, when --net-delay is enabled.
  1954. - Refactor miner_thread to be common code for any kind of device
  1955. - Simplify submit_nonce loop and avoid potentially missing FOUND - 1 entry.
  1956. Reported by Luke-Jr.
  1957. - Micro-optimisation in sha256_sse2 code courtesy of Guido Ascioti
  1958. guido.ascioti@gmail.com
  1959. - Refactor to abstract device-specific code
  1960. CGMiner Version 2.1.2 - January 6, 2012
  1961. - If api-description is specified, save it when writing the config file
  1962. - Adjust utility width to be constant maximum as well.
  1963. - Add percent signs to reject ratio outputs
  1964. - Should the donation pool fail, don't make the fallover pool behave as though
  1965. the primary pool is lagging.
  1966. - Use an alternative pool should the donation getwork fail.
  1967. CGMiner Version 2.1.1 - January 1, 2012
  1968. - Include API examples in distribution tarball.
  1969. - Don't attempt to pthread_join when cancelling threads as they're already
  1970. detached and doing so can lead to a segfault.
  1971. - Give more generic message if slow pool at startup is the donation pool.
  1972. - Continue to attempt restarting GPU threads if they're flagged dead at 1 min.
  1973. intervals.
  1974. - Don't attempt to restart sick flagged GPUs while they're still registering
  1975. activity.
  1976. - Make curl use fresh connections whenever there is any communication issue
  1977. in case there are dead persistent connections preventing further comms from
  1978. working.
  1979. - Display pool in summary if only 1 pool.
  1980. - Adjust column width of A/R/HW to be the maximum of any device and align them.
  1981. CGMiner Version 2.1.0 - December 27, 2011
  1982. - Major infrastructure upgrade with RPC interface for controlling via sockets
  1983. encoded with/without JSON courtesy of Andrew Smith. Added documentation for
  1984. use of the API and sample code to use with it.
  1985. - Updated linux-usb-cgminer document.
  1986. - Rewrite of longpoll mechanism to choose the current pool wherever possible to
  1987. use for the longpoll, or any pool that supports longpoll if the current one
  1988. does not.
  1989. - Display information about longpoll when the chosen server has changed.
  1990. - Fix the bug where longpoll generated work may have been sent back to the
  1991. wrong pool, causing rejects.
  1992. - Fix a few race conditions on closing cgminer which caused some of the crashes
  1993. on exit.
  1994. - Only adjust gpu engine speed in autotune mode if the gpu is currently at the
  1995. performance level of that being adjusted.
  1996. - Various fixes for parsing/writing of configuration files.
  1997. - Do not add blank lines for threads of unused CPUs.
  1998. - Show which pool is unresponsive on startup.
  1999. - Only show GPU management menu item if GPUs are in use.
  2000. - Align most device columns in the curses display.
  2001. CGMiner Version 2.0.8 - November 11, 2011
  2002. - Make longpoll do a mandatory flushing of all work even if the block hasn't
  2003. changed, thus supporting longpoll initiated work change of any sort and merged
  2004. mining.
  2005. - Byteswap computed hash in hashtest so it can be correctly checked. This fixes
  2006. the very rare possibility that a block solve on solo mining was missed.
  2007. - Add x86_64 w64 mingw32 target
  2008. - Allow a fixed speed difference between memory and GPU clock speed with
  2009. --gpu-memdiff that will change memory speed when GPU speed is changed in
  2010. autotune mode.
  2011. - Don't load the default config if a config file is specified on the command
  2012. line.
  2013. - Don't build VIA on apple since -a auto bombs instead of gracefully ignoring
  2014. VIA failing.
  2015. - Build fix for dlopen/dlclose errors in glibc.
  2016. CGMiner Version 2.0.7 - October 17, 2011
  2017. - Support work without midstate or hash1, which are deprecated in bitcoind 0.5+
  2018. - Go to kernel build should we fail to clCreateProgramWithBinary instead of
  2019. failing on that device. This should fix the windows problems with devices not
  2020. initialising.
  2021. - Support new configuration file format courtesy of Chris Savery which can write
  2022. the config file from the menu and will load it on startup.
  2023. - Write unix configuration to .cgminer/cgminer.conf by default and prompt to
  2024. overwrite if given a filename from the menu that exists.
  2025. CGMiner Version 2.0.6 - October 9, 2011
  2026. - Must initialise the donorpool mutex or it fails on windows.
  2027. - Don't make donation work interfere with block change detection allowing
  2028. donation to work regardless of the block chain we're mining on.
  2029. - Expire shares as stale with a separate timeout from the scantime, defaulting
  2030. to 120 seconds.
  2031. - Retry pools after a delay of 15 seconds if none can be contacted on startup
  2032. unless a key is pressed.
  2033. - Don't try to build adl features without having adl.
  2034. - Properly check shares against target difficulty - This will no longer show
  2035. shares when solo mining at all unless they're considered to be a block solve.
  2036. - Add altivec 4 way (cpu mining) support courtesy of Gilles Risch.
  2037. - Try to use SSL if the server supports it.
  2038. - Display the total solved blocks on exit (LOL if you're lucky).
  2039. - Use ADL activity report to tell us if a sick GPU is still busy suggesting it
  2040. is hard hung and do not attempt to restart it.
  2041. CGMiner Version 2.0.5 - September 27, 2011
  2042. - Intensity can now be set to dynamic or static values per-device.
  2043. - New donation feature --donation sends a proportion of shares to author's
  2044. account of choice, but is disabled by default!
  2045. - The hash being displayed and block detection has been fixed.
  2046. - Devices not being mined on will not attempt to be ADL managed.
  2047. - Intensity is now displayed per GPU device.
  2048. - Make longpoll attempt to restart as often as opt_retries specifies.
  2049. - We weren't rolling work as often as we could.
  2050. - Correct some memory management issues.
  2051. - Build fixes.
  2052. - Don't mess with GPUs if we don't have them.
  2053. CGMiner Version 2.0.4 - September 23, 2011
  2054. - Confused Longpoll messages should be finally fixed with cgminer knowing for
  2055. sure who found the new block and possibly avoiding a rare crash.
  2056. - Display now shows the actual hash and will say BLOCK! if a block is deemed
  2057. solved.
  2058. - Extra spaces, which would double space lines on small terminals, have been
  2059. removed.
  2060. - Fan speed change is now damped if it is already heading in the correct
  2061. direction to minimise overshoot.
  2062. - Building without opencl libraries is fixed.
  2063. - GPUs are autoselected if there is only one when in the GPU management menu.
  2064. - GPU menu is refreshed instead of returning to status after a GPU change.
  2065. CGMiner Version 2.0.3 - September 17, 2011
  2066. - Various modes of failure to set fanspeeds and adl values have been addressed
  2067. and auto-fan should work now on most hardware, and possibly other values
  2068. which previously would not have worked.
  2069. - Fixed a crash that can occur on switching pools due to longpoll thread races.
  2070. - Use ATISTREAMSDKROOT if available at build time.
  2071. - Fanspeed management is returned to the driver default on exit instead of
  2072. whatever it was when cgminer was started.
  2073. - Logging of events deemed WARNING or ERR now will display even during
  2074. periods where menu input is being awaited on.
  2075. CGMiner Version 2.0.2 - September 11, 2011
  2076. - Exit cleanly if we abort before various threads are set up or if they no
  2077. longer exist.
  2078. - Fix a rare crash in HASH_DEL due to using different mutexes to protect the
  2079. data.
  2080. - Flag devices that have never started and don't allow enabling of devices
  2081. without restarting them.
  2082. - Only force the adapter speed to high if we've flagged this device as being
  2083. managed.
  2084. - Flag any devices with autofan or autogpu as being managed.
  2085. - Use a re-entrant value to store what fanspeed we're trying to set in case the
  2086. card doesn't support small changes. Force it to a multiple of 10% if it
  2087. fails on trying to speed up the fan.
  2088. - Do not bother resetting values to old ones if changes to GPU parameters report
  2089. failure, instead returning a failure code only if the return value from get()
  2090. differs.
  2091. - Remove redundant check.
  2092. - Only display supported values from fanspeed on change settings.
  2093. - Missing bracket from output.
  2094. - Display fan percentage on devices that only support reporting percent and not
  2095. RPM.
  2096. - Properly substitute DLOPEN flags to build with ADL support when -ldl is needed
  2097. and not when opencl is not found.
  2098. CGMiner Version 2.0.1 - September 9, 2011
  2099. - Fix building on 32bit glibc with dlopen with -lpthread and -ldl
  2100. - ByteReverse is not used and the bswap opcode breaks big endian builds. Remove
  2101. it.
  2102. - Ignore whether the display is active or not since only display enabled devices
  2103. work this way, and we skip over repeat entries anwyay.
  2104. - Only reset values on exiting if we've ever modified them.
  2105. - Flag adl as active if any card is successfully activated.
  2106. - Add a thermal cutoff option as well and set it to 95 degrees by default.
  2107. - Change the fan speed by only 5% if it's over the target temperature but less
  2108. than the hysteresis value to minimise overshoot down in temperature.
  2109. - Add a --no-adl option to disable ADL monitoring and GPU settings.
  2110. - Only show longpoll received delayed message at verbose level.
  2111. - Allow temperatures greater than 100 degrees.
  2112. - We should be passing a float for the remainder of the vddc values.
  2113. - Implement accepting a range of engine speeds as well to allow a lower limit to
  2114. be specified on the command line.
  2115. - Allow per-device fan ranges to be set and use them in auto-fan mode.
  2116. - Display which GPU has overheated in warning message.
  2117. - Allow temperature targets to be set on a per-card basis on the command line.
  2118. - Display fan range in autofan status.
  2119. - Setting the hysteresis is unlikely to be useful on the fly and doesn't belong
  2120. in the per-gpu submenu.
  2121. - With many cards, the GPU summaries can be quite long so use a terse output
  2122. line when showing them all.
  2123. - Use a terser device status line to show fan RPM as well when available.
  2124. - Define max gpudevices in one macro.
  2125. - Allow adapterid 0 cards to enumerate as a device as they will be non-AMD
  2126. cards, and enable ADL on any AMD card.
  2127. - Do away with the increasingly confusing and irrelevant total queued and
  2128. efficiency measures per device.
  2129. - Only display values in the log if they're supported and standardise device log
  2130. line printing.
  2131. CGMiner Version 2.0.0 - September 6, 2011
  2132. Major feature upgrade - GPU monitoring, (over)clocking and fan control for ATI
  2133. GPUs.
  2134. New command line switches:
  2135. --auto-fan- Automatically adjust all GPU fan speeds to maintain a target
  2136. temperature
  2137. --auto-gpu- Automatically adjust all GPU engine clock speeds to maintain
  2138. a target temperature
  2139. --gpu-engine <arg> Set the GPU engine (over)clock in Mhz - one value for all or
  2140. separate by commas for per card.
  2141. --gpu-fan <arg> Set the GPU fan percentage - one value for all or separate
  2142. by commas for per card.
  2143. --gpu-memclock <arg> Set the GPU memory (over)clock in Mhz - one value for all
  2144. or separate by commas for per card.
  2145. --gpu-powertune <arg> Set the GPU powertune percentage - one value for all or
  2146. separate by commas for per card.
  2147. --gpu-vddc <arg> Set the GPU voltage in Volts - one value for all or separate
  2148. by commas for per card.
  2149. --temp-hysteresis <arg> Set how much the temperature can fluctuate outside
  2150. limits when automanaging speeds (default: 3)
  2151. --temp-overheat <arg> Set the overheat temperature when automatically managing
  2152. fan and GPU speeds (default: 85)
  2153. --temp-target <arg> Set the target temperature when automatically managing fan
  2154. and GPU speeds (default: 75)
  2155. - Implement ATI ADL support for GPU parameter monitoring now and setting later
  2156. (temp, fan, clocks etc.).
  2157. - Check for the presence of the ADL header files in ADL_SDK.
  2158. - Import adl_functions.h from amd overdrive ctrl.
  2159. - Implement a setup function that tries to detect GPUs that support the ADL and
  2160. link in the parameters into the gpus struct.
  2161. - Put a summary of monitoring information from the GPU menu.
  2162. - Implement changing memory speed and voltage on the fly.
  2163. - Implement fan speed setting.
  2164. - Minor corrections to set fan speed by percentage.
  2165. - Make sure to read off the value in RPM only.
  2166. - Implement auto fanspeed adjustment to maintain a target temperature and
  2167. fanspeed below 85%, with an overheat check that will speed the fan up to 100%.
  2168. - Add an --auto-fan command line option to allow all GPUs to have autofan
  2169. enabled from startup.
  2170. - Add a gpu autotune option which adjusts GPU speed to maintain a target
  2171. temperature within the bounds of the default GPU speed and any overclocking set.
  2172. - Avoid a dereference if the longpoll thread doesn't exist.
  2173. - Clean up by setting performance profiles and fan settings to startup levels on
  2174. exit.
  2175. - Add a small amount of hysteresis before lowering clock speed.
  2176. - Allow target, overheat and hysteresis temperatures to be set from command
  2177. line.
  2178. - Combine all stats collating into one function to avoid repeating function
  2179. calls on each variable.
  2180. - Add gpu statistics to debugging output via the watchdog thread.
  2181. - Implement menus to change temperature limits.
  2182. - Implement setting the GPU engine clock speed of all devices or each device as
  2183. a comma separated value.
  2184. - Implement setting the GPU memory clock speed of all devices or each device as
  2185. a comma separated value.
  2186. - Implement setting the GPU voltage of all devices or each device as a comma
  2187. separated value.
  2188. - Implement setting the GPU fan speed of all devices or each device as a comma
  2189. separated value.
  2190. - Add support for monitoring powertune setting.
  2191. - Implement changing of powertune value from the GPU change settings menu.
  2192. - Get the value of powertune in get_stats.
  2193. - Implement setting the GPU powertune value of all devices or each device as a
  2194. comma separated value.
  2195. - Remove the safety checks in speed setting since confirmation is done first in
  2196. the menu, then show the new current values after a short pause.
  2197. - Force the speed to high on startup and restore it to whatever the setting was
  2198. on exit.
  2199. - Add temperature to standard output where possible and use more compact output.
  2200. - Move and print at the same time in curses to avoid random trampling display
  2201. errors.
  2202. - Update the status window only from the watchdog thread, do not rewrite the top
  2203. status messages and only refresh once all the status window is complete,
  2204. clearing the window each time to avoid corruption.
  2205. - Set a safe starting fan speed if we're automanaging the speeds.
  2206. - Provide locking around all adl calls to prevent races.
  2207. - Lower profile settings cannot be higher than higher profile ones so link any
  2208. drops in settings.
  2209. - Add new needed text files to distribution.
  2210. - Queue requests ignoring the number of staged clones since they get discarded
  2211. very easily leading to false positives for pool not providing work fast enough.
  2212. - Include libgen.h in opt.c to fix win32 compilation warnings.
  2213. - Fix compilation warning on win32.
  2214. - Add the directory name from the arguments cgminer was called from as well to
  2215. allow it running from a relative pathname.
  2216. - Add a --disable-adl option to configure and only enable it if opencl support
  2217. exists.
  2218. - Retry before returning a failure to get upstream work as a failure to avoid
  2219. false positives for pool dead.
  2220. - Retry also if the decoding of work fails.
  2221. - Use the presence of X-Roll-Ntime in the header as a bool for exists unless N
  2222. is found in the response.
  2223. CGMiner Version 1.6.2 - September 2, 2011
  2224. - Add --failover-only option to not leak work to backup pools when the primary
  2225. pool is lagging.
  2226. - Change recommendation to intensity 9 for dedicated miners.
  2227. - Fix the bouncing short term value by allowing it to change dynamically when
  2228. the latest value is very different from the rolling value, but damp the change
  2229. when it gets close.
  2230. - Use the curses_lock to protect the curses_active variable and test it under
  2231. lock.
  2232. - Go back to requesting work 2/3 of the way through the current scantime with
  2233. CPU mining as reports of mining threads running out of work have occurred with
  2234. only 5 seconds to retrieve work.
  2235. - Add start and stop time scheduling for regular time of day running or once off
  2236. start/stop options.
  2237. - Print summary on quit modes.
  2238. - Put some sanity checks on the times that can be input.
  2239. - Give a verbose message when no active pools are found and pause before
  2240. exiting.
  2241. - Add verbose message when a GPU fails to initialise, and disable the correct
  2242. GPU.
  2243. - Cryptopp asm32 was not correctly updated to the incremental nonce code so the
  2244. hash counter was bogus.
  2245. - Get rid of poorly executed curl check.
  2246. - If curl does not have sockopts, do not try to compile the
  2247. json_rpc_call_sockopt_cb function, making it possible to build against older
  2248. curl libraries.
  2249. - Most people expect /usr/local when an unspecified prefix is used so change to
  2250. that.
  2251. - Rename localgen occasions to getwork fail occasions since localgen is
  2252. unrelated now.
  2253. CGMiner Version 1.6.1 - August 29, 2011
  2254. - Copy cgminer path, not cat it.
  2255. - Switching between redrawing windows does not fix the crash with old
  2256. libncurses, so redraw both windows, but only when the window size hasn't
  2257. changed.
  2258. - Reinstate minimum 1 extra in queue to make it extremely unlikely to ever have
  2259. 0 staged work items and any idle time.
  2260. - Return -1 if no input is detected from the menu to prevent it being
  2261. interpreted as a 0.
  2262. - Make pthread, libcurl and libcurses library checks mandatory or fail.
  2263. - Add a --disable-opencl configure option to make it possible to override
  2264. detection of opencl and build without GPU mining support.
  2265. - Confusion over the variable name for number of devices was passing a bogus
  2266. value which likely was causing the zero sized binary issue.
  2267. - cgminer no longer supports default url user and pass so remove them.
  2268. - Don't show value of intensity since it's dynamic by default.
  2269. - Add options to explicitly enable CPU mining or disable GPU mining.
  2270. - Convert the opt queue into a minimum number of work items to have queued
  2271. instead of an extra number to decrease risk of getting idle devices without
  2272. increasing risk of higher rejects.
  2273. - Statify tv_sort.
  2274. - Check for SSE2 before trying to build 32 bit SSE2 assembly version. Prevents
  2275. build failure when yasm is installed but -msse2 is not specified.
  2276. - Add some defines to configure.ac to enable exporting of values and packaging,
  2277. and clean up output.
  2278. - Give convenient summary at end of ./configure.
  2279. - Display version information and add --version command line option, and make
  2280. sure we flush stdout.
  2281. - Enable curses after the mining threads are set up so that failure messages
  2282. won't be lost in the curses interface.
  2283. - Disable curses after inputting a pool if we requested no curses interface.
  2284. - Add an option to break out after successfully mining a number of accepted
  2285. shares.
  2286. - Exit with a failed return code if we did not reach opt_shares.
  2287. - The cpu mining work data can get modified before we copy it if we submit it
  2288. async, and the sync submission is not truly sync anyway, so just submit it sync.
  2289. CGMiner Version 1.6.0 - August 26, 2011
  2290. - Make restarting of GPUs optional for systems that hang on any attempt to
  2291. restart them. Fix DEAD status by comparing it to last live time rather than
  2292. last attempted restart time since that happens every minute.
  2293. - Move staged threads to hashes so we can sort them by time.
  2294. - Create a hash list of all the blocks created and search them to detect when a
  2295. new block has definitely appeared, using that information to detect stale work
  2296. and discard it.
  2297. - Update configure.ac for newer autoconf tools.
  2298. - Use the new hashes directly for counts instead of the fragile counters
  2299. currently in use.
  2300. - Update to latest sse2 code from cpuminer-ng.
  2301. - Allow LP to reset block detect and block detect lp flags to know who really
  2302. came first.
  2303. - Get start times just before mining begins to not have very slow rise in
  2304. average.
  2305. - Add message about needing one server.
  2306. - We can queue all the necessary work without hitting frequent stales now with
  2307. the time and string stale protection active all the time. This prevents a
  2308. pool being falsely labelled as not providing work fast enough.
  2309. - Include uthash.h in distro.
  2310. - Implement SSE2 32 bit assembly algorithm as well.
  2311. - Fail gracefully if unable to open the opencl files.
  2312. - Make cgminer look in the install directory for the .cl files making make
  2313. install work correctly.
  2314. - Allow a custom kernel path to be entered on the command line.
  2315. - Bump threshhold for lag up to maximum queued but no staged work.
  2316. - Remove fragile source patching for bitalign, vectors et. al and simply pass it
  2317. with the compiler options.
  2318. - Actually check the value returned for the x-roll-ntime extension to make sure
  2319. it isn't saying N.
  2320. - Prevent segfault on exit for when accessory threads don't exist.
  2321. - Disable curl debugging with opt protocol since it spews to stderr.
  2322. CGMiner Version 1.5.8 - August 23, 2011
  2323. - Minimise how much more work can be given in cpu mining threads each interval.
  2324. - Make the fail-pause progressively longer each time it fails until the network
  2325. recovers.
  2326. - Only display the lagging message if we've requested the work earlier.
  2327. - Clean up the pool switching to not be dependent on whether the work can roll
  2328. or not by setting a lagging flag and then the idle flag.
  2329. - Only use one thread to determine if a GPU is sick or well, and make sure to
  2330. reset the sick restart attempt time.
  2331. - The worksize was unintentionally changed back to 4k by mistake, this caused a
  2332. slowdown.
  2333. CGMiner Version 1.5.7 - August 22, 2011
  2334. - Fix a crash with --algo auto
  2335. - Test at appropriate target difficulty now.
  2336. - Add per-device statics log output with --per-device-stats
  2337. - Fix breakage that occurs when 1 or 4 vectors are chosen on new phatk.
  2338. - Make rolltime report debug level only now since we check it every work
  2339. item.
  2340. - Add the ability to enable/disable per-device stats on the fly and match
  2341. logging on/off.
  2342. - Explicitly tell the compiler to retain the program to minimise the chance of
  2343. the zero sized binary errors.
  2344. - Add one more instruction to avoid one branch point in the common path in the
  2345. cl return code. Although this adds more ALUs overall and more branch points, the
  2346. common path code has the same number of ALUs and one less jmp, jmps being more
  2347. expensive.
  2348. - Explicitly link in ws2_32 on the windows build and update README file on how
  2349. to compile successfully on windows.
  2350. - Release cl resources should the gpu mining thread abort.
  2351. - Attempt to restart a GPU once every minute while it's sick.
  2352. - Don't kill off the reinit thread if it fails to init a GPU but returns safely.
  2353. - Only declare a GPU dead if there's been no sign of activity from the reinit
  2354. thread for 10 mins.
  2355. - Never automatically disable any pools but just specify them as idle if they're
  2356. unresponsive at startup.
  2357. - Use any longpoll available, and don't disable it if switching to a server that
  2358. doesn't have it. This allows you to mine solo, yet use the longpoll from a pool
  2359. even if the pool is the backup server.
  2360. - Display which longpoll failed and don't free the ram for lp_url since it
  2361. belongs to the pool hdr path.
  2362. - Make the tcp setsockopts unique to linux in the hope it allows freebsd et. al
  2363. to compile.
  2364. CGMiner Version 1.5.6 - August 17, 2011
  2365. - New phatk and poclbm kernels. Updated phatk to be in sync with latest 2.2
  2366. courtesy of phateus. Custom modified to work best with cgminer.
  2367. - Updated output buffer code to use a smaller buffer with the kernels.
  2368. - Clean up the longpoll management to ensure the right paths go to the right
  2369. pool and display whether we're connected to LP or not in the status line.
  2370. CGMiner Version 1.5.5 - August 16, 2011
  2371. - Rework entirely the GPU restart code. Strike a balance between code that
  2372. re-initialises the GPU entirely so that soft hangs in the code are properly
  2373. managed, but if a GPU is completely hung, the thread restart code fails
  2374. gracefully, so that it does not take out any other code or devices. This will
  2375. allow cgminer to keep restarting GPUs that can be restarted, but continue
  2376. mining even if one or more GPUs hangs which would normally require a reboot.
  2377. - Add --submit-stale option which submits all shares, regardless of whether they
  2378. would normally be considered stale.
  2379. - Keep options in alphabetical order.
  2380. - Probe for slightly longer for when network conditions are lagging.
  2381. - Only display the CPU algo when we're CPU mining.
  2382. - As we have keepalives now, blaming network flakiness on timeouts appears to
  2383. have been wrong. Set a timeout for longpoll to 1 hour, and most other
  2384. network connectivity to 1 minute.
  2385. - Simplify output code and remove HW errors from CPU stats.
  2386. - Simplify code and tidy output.
  2387. - Only show cpu algo in summary if cpu mining.
  2388. - Log summary at the end as per any other output.
  2389. - Flush output.
  2390. - Add a linux-usb-cgminer guide courtesy of Kano.
  2391. CGMiner Version 1.5.4 - August 14, 2011
  2392. - Add new option: --monitor <cmd> Option lets user specify a command <cmd> that
  2393. will get forked by cgminer on startup. cgminer's stderr output subsequently gets
  2394. piped directly to this command.
  2395. - Allocate work from one function to be able to initialise variables added
  2396. later.
  2397. - Add missing fflush(stdout) for --ndevs and conclusion summary.
  2398. - Preinitialise the devices only once on startup.
  2399. - Move the non cl_ variables into the cgpu info struct to allow creating a new
  2400. cl state on reinit, preserving known GPU variables.
  2401. - Create a new context from scratch in initCQ in case something was corrupted to
  2402. maximise our chance of succesfully creating a new worker thread. Hopefully this
  2403. makes thread restart on GPU failure more reliable, without hanging everything
  2404. in the case of a completely wedged GPU.
  2405. - Display last initialised time in gpu management info, to know if a GPU has
  2406. been re-initialised.
  2407. - When pinging a sick cpu, flush finish and then ping it in a separate thread in
  2408. the hope it recovers without needing a restart, but without blocking code
  2409. elsewhere.
  2410. - Only consider a pool lagging if we actually need the work and we have none
  2411. staged despite queue requests stacking up. This decreases significantly the
  2412. amount of work that leaks to the backup pools.
  2413. - The can_roll function fails inappropriately in stale_work.
  2414. - Only put the message that a pool is down if not pinging it every minute. This
  2415. prevents cgminer from saying pool down at 1 minute intervals unless in debug
  2416. mode.
  2417. - Free all work in one place allowing us to perform actions on it in the future.
  2418. - Remove the extra shift in the output code which was of dubious benefit. In
  2419. fact in cgminer's implementation, removing this caused a miniscule speedup.
  2420. - Test each work item to see if it can be rolled instead of per-pool and roll
  2421. whenever possible, adhering to the 60 second timeout. This makes the period
  2422. after a longpoll have smaller dips in throughput, as well as requiring less
  2423. getworks overall thus increasing efficiency.
  2424. - Stick to rolling only work from the current pool unless we're in load balance
  2425. mode or lagging to avoid aggressive rolling imitating load balancing.
  2426. - If a work item has had any mining done on it, don't consider it discarded
  2427. work.
  2428. CGMiner Version 1.5.3 - July 30, 2011
  2429. - Significant work went into attempting to make the thread restart code robust
  2430. to identify sick threads, tag them SICK after 1 minute, then DEAD after 5
  2431. minutes of inactivity and try to restart them. Instead of re-initialising the
  2432. GPU completely, only a new cl context is created to avoid hanging the rest of
  2433. the GPUs should the dead GPU be hung irrevocably.
  2434. - Use correct application name in syslog.
  2435. - Get rid of extra line feeds.
  2436. - Use pkg-config to check for libcurl version
  2437. - Implement per-thread getwork count with proper accounting to not over-account
  2438. queued items when local work replaces it.
  2439. - Create a command queue from the program created from source which allows us
  2440. to flush the command queue in the hope it will not generate a zero sized binary
  2441. any more.
  2442. - Be more willing to get work from the backup pools if the work is simply being
  2443. queued faster than it is being retrieved.
  2444. CGMiner Version 1.5.2 - July 28, 2011
  2445. - Restarting a hung GPU can hang the rest of the GPUs so just declare it dead
  2446. and provide the information in the status.
  2447. - The work length in the miner thread gets smaller but doesn't get bigger if
  2448. it's under 1 second. This could end up leading to CPU under-utilisation and
  2449. lower and lower hash rates. Fix it by increasing work length if it drops
  2450. under 1 second.
  2451. - Make the "quiet" mode still update the status and display errors, and add a
  2452. new --real-quiet option which disables all output and can be set once while
  2453. running.
  2454. - Update utility and efficiency figures when displaying them.
  2455. - Some Intel HD graphics support the opencl commands but return errors since
  2456. they don't support opencl. Don't fail with them, just provide a warning and
  2457. disable GPU mining.
  2458. - Add http:// if it's not explicitly set for URL entries.
  2459. - Log to the output file at any time with warnings and errors, instead of just
  2460. when verbose mode is on.
  2461. - Display the correct current hash as per blockexplorer, truncated to 16
  2462. characters, with just the time.
  2463. CGMiner Version 1.5.1 - July 27, 2011
  2464. - Two redraws in a row cause a crash in old libncurses so just do one redraw
  2465. using the main window.
  2466. - Don't adjust hash_div only up for GPUs. Disable hash_div adjustment for GPUs.
  2467. - Only free the thread structures if the thread still exists.
  2468. - Update both windows separately, but not at the same time to prevent the double
  2469. refresh crash that old libncurses has. Do the window resize check only when
  2470. about to redraw the log window to minimise ncurses cpu usage.
  2471. - Abstract out the decay time function and use it to make hash_div a rolling
  2472. average so it doesn't change too abruptly and divide work in chunks large enough
  2473. to guarantee they won't overlap.
  2474. - Sanity check to prove locking.
  2475. - Don't take more than one lock at a time.
  2476. - Make threads report out when they're queueing a request and report if they've
  2477. failed.
  2478. - Make cpu mining work submission asynchronous as well.
  2479. - Properly detect stale work based on time from staging and discard instead of
  2480. handing on, but be more lax about how long work can be divided for up to the
  2481. scantime.
  2482. - Do away with queueing work separately at the start and let each thread grab
  2483. its own work as soon as it's ready.
  2484. - Don't put an extra work item in the queue as each new device thread will do so
  2485. itself.
  2486. - Make sure to decrease queued count if we discard the work.
  2487. - Attribute split work as local work generation.
  2488. - If work has been cloned it is already at the head of the list and when being
  2489. reinserted into the queue it should be placed back at the head of the list.
  2490. - Dividing work is like the work is never removed at all so treat it as such.
  2491. However the queued bool needs to be reset to ensure we *can* request more work
  2492. even if we didn't initially.
  2493. - Make the display options clearer.
  2494. - Add debugging output to tq_push calls.
  2495. - Add debugging output to all tq_pop calls.
  2496. CGMiner Version 1.5.0 - July 26, 2011
  2497. - Increase efficiency of slow mining threads such as CPU miners dramatically. Do
  2498. this by detecting which threads cannot complete searching a work item within the
  2499. scantime and then divide up a work item into multiple smaller work items.
  2500. Detect the age of the work items and if they've been cloned before to prevent
  2501. doing the same work over. If the work is too old to be divided, then see if it
  2502. can be time rolled and do that to generate work. This dramatically decreases the
  2503. number of queued work items from a pool leading to higher overall efficiency
  2504. (but the same hashrate and share submission rate).
  2505. - Don't request work too early for CPUs as CPUs will scan for the full
  2506. opt_scantime anyway.
  2507. - Simplify gpu management enable/disable/restart code.
  2508. - Implement much more accurate rolling statistics per thread and per gpu and
  2509. improve accuracy of rolling displayed values.
  2510. - Make the rolling log-second average more accurate.
  2511. - Add a menu to manage GPUs on the fly allowing you to enable/disable GPUs or
  2512. try restarting them.
  2513. - Keep track of which GPUs are alive versus enabled.
  2514. - Start threads for devices that are even disabled, but don't allow them to
  2515. start working.
  2516. - The last pool is when we are low in total_pools, not active_pools.
  2517. - Make the thread restart do a pthread_join after disabling the device, only
  2518. re-enabling it if we succeed in restarting the thread. Do this from a separate
  2519. thread so as to not block any other code.This will allow cgminer to continue
  2520. even if one GPU hangs.
  2521. - Try to do every curses manipulation under the curses lock.
  2522. - Only use the sockoptfunction if the version of curl is recent enough.
  2523. CGMiner Version 1.4.1 - July 24, 2011
  2524. - Do away with GET for dealing with longpoll forever. POST is the one that works
  2525. everywhere, not the other way around.
  2526. - Detect when the primary pool is lagging and start queueing requests on backup
  2527. pools if possible before needing to roll work.
  2528. - Load balancing puts more into the current pool if there are disabled pools.
  2529. Fix.
  2530. - Disable a GPU device should the thread fail to init.
  2531. - Out of order command queue may fail on osx. Try without if it fails.
  2532. - Fix possible dereference on blank inputs during input_pool.
  2533. - Defines missing would segfault on --help when no sse mining is built in.
  2534. - Revert "Free up resources/stale compilers." - didn't help.
  2535. - Only try to print the status of active devices or it would crash.
  2536. - Some hardware might benefit from the less OPS so there's no harm in leaving
  2537. kernel changes that do that apart from readability of the code.
  2538. CGMiner Version 1.4.0 - July 23, 2011
  2539. - Feature upgrade: Add keyboard input during runtime to allow modification of
  2540. and viewing of numerous settings such as adding/removing pools, changing
  2541. multipool management strategy, switching pools, changing intensiy, verbosity,
  2542. etc. with a simple keypress menu system.
  2543. - Free up resources/stale compilers.
  2544. - Kernels are safely flushed in a way that allows out of order execution to
  2545. work.
  2546. - Sometimes the cl compiler generates zero sized binaries and only a reboot
  2547. seems to fix it.
  2548. - Don't try to stop/cancel threads that don't exist.
  2549. - Only set option to show devices and exit if built with opencl support.
  2550. - Enable curses earlier and exit with message in main for messages to not be
  2551. lost in curses windows.
  2552. - Make it possible to enter server credentials with curses input if none are
  2553. specified on the command line.
  2554. - Abstract out a curses input function and separate input pool function to allow
  2555. for live adding of pools later.
  2556. - Remove the nil arguments check to allow starting without parameters.
  2557. - Disable/enable echo & cbreak modes.
  2558. - Add a thread that takes keyboard input and allow for quit, silent, debug,
  2559. verbose, normal, rpc protocol debugging and clear screen options.
  2560. - Add pool option to input and display current pool status, pending code to
  2561. allow live changes.
  2562. - Add a bool for explicit enabling/disabling of pools.
  2563. - Make input pool capable of bringing up pools while running.
  2564. - Do one last check of the work before submitting it.
  2565. - Implement the ability to live add, enable, disable, and switch to pools.
  2566. - Only internally test for block changes when the work matches the current pool
  2567. to prevent interleaved block change timing on multipools.
  2568. - Display current pool management strategy to enable changing it on the fly.
  2569. - The longpoll blanking of the current_block data may not be happening before
  2570. the work is converted and appears to be a detected block change. Blank the
  2571. current block be
  2572. - Make --no-longpoll work again.
  2573. - Abstract out active pools count.
  2574. - Allow the pool strategy to be modified on the fly.
  2575. - Display pool information on the fly as well.
  2576. - Add a menu and separate out display options.
  2577. - Clean up the messy way the staging thread communicates with the longpoll
  2578. thread to determine who found the block first.
  2579. - Make the input windows update immediately instead of needing a refresh.
  2580. - Allow log interval to be set in the menu.
  2581. - Allow scan settings to be modified at runtime.
  2582. - Abstract out the longpoll start and explicitly restart it on pool change.
  2583. - Make it possible to enable/disable longpoll.
  2584. - Set priority correctly on multipools. Display priority and alive/dead
  2585. information in display_pools.
  2586. - Implement pool removal.
  2587. - Limit rolltime work generation to 10 iterations only.
  2588. - Decrease testing log to info level.
  2589. - Extra refresh not required.
  2590. - With huge variation in GPU performance, allow intensity to go from -10 to +10.
  2591. - Tell getwork how much of a work item we're likely to complete for future
  2592. splitting up of work.
  2593. - Remove the mandatory work requirement at startup by testing for invalid work
  2594. being passed which allows for work to be queued immediately. This also
  2595. removes the requirem
  2596. - Make sure intensity is carried over to thread count and is at least the
  2597. minimum necessary to work.
  2598. - Unlocking error on retry. Locking unnecessary anyway so remove it.
  2599. - Clear log window from consistent place. No need for locking since logging is
  2600. disabled during input.
  2601. - Cannot print the status of threads that don't exist so just queue enough work
  2602. for the number of mining threads to prevent crash with -Q N.
  2603. - Update phatk kernel to one with new parameters for slightly less overhead
  2604. again. Make the queue kernel parameters call a function pointer to select
  2605. phatk or poclbm.
  2606. - Make it possible to select the choice of kernel on the command line.
  2607. - Simplify the output part of the kernel. There's no demonstrable advantage from
  2608. more complexity.
  2609. - Merge pull request #18 from ycros/cgminer
  2610. - No need to make leaveok changes win32 only.
  2611. - Build support in for all SSE if possible and only set the default according to
  2612. machine capabilities.
  2613. - Win32 threading and longpoll keepalive fixes.
  2614. - Win32: Fix for mangled output on the terminal on exit.
  2615. CGMiner Version 1.3.1 - July 20, 2011
  2616. - Feature upgrade; Multiple strategies for failover. Choose from default which
  2617. now falls back to a priority order from 1st to last, round robin which only
  2618. changes pools when one is idle, rotate which changes pools at user-defined
  2619. intervals, and load-balance which spreads the work evenly amongst all pools.
  2620. - Implement pool rotation strategy.
  2621. - Implement load balancing algorithm by rotating requests to each pool.
  2622. - Timeout on failed discarding of staged requests.
  2623. - Implement proper flagging of idle pools, test them with the watchdog thread,
  2624. and failover correctly.
  2625. - Move pool active test to own function.
  2626. - Allow multiple strategies to be set for multipool management.
  2627. - Track pool number.
  2628. - Don't waste the work items queued on testing the pools at startup.
  2629. - Reinstate the mining thread watchdog restart.
  2630. - Add a getpoll bool into the thread information and don't restart threads stuck
  2631. waiting on work.
  2632. - Rename the idlenet bool for the pool for later use.
  2633. - Allow the user/pass userpass urls to be input in any order.
  2634. - When json rpc errors occur they occur in spits and starts, so trying to limit
  2635. them with the comms error bool doesn't stop a flood of them appearing.
  2636. - Reset the queued count to allow more work to be queued for the new pool on
  2637. pool switch.
  2638. CGMiner Version 1.3.0 - July 19, 2011
  2639. - Massive infrastructure update to support pool failover.
  2640. - Accept multiple parameters for url, user and pass and set up structures of
  2641. pool data accordingly.
  2642. - Probe each pool for what it supports.
  2643. - Implement per pool feature support according to rolltime support as
  2644. advertised by server.
  2645. - Do switching automatically based on a 300 second timeout of locally generated
  2646. work or 60 seconds of no response from a server that doesn't support rolltime.
  2647. - Implement longpoll server switching.
  2648. - Keep per-pool data and display accordingly.
  2649. - Make sure cgminer knows how long the pool has actually been out for before
  2650. deeming it a prolonged outage.
  2651. - Fix bug with ever increasing staged work in 1.2.8 that eventually caused
  2652. infinite rejects.
  2653. - Make warning about empty http requests not show by default since many
  2654. servers do this regularly.
  2655. CGMiner Version 1.2.8 - July 18, 2011
  2656. - More OSX build fixes.
  2657. - Add an sse4 algorithm to CPU mining.
  2658. - Fix CPU mining with other algorithms not working.
  2659. - Rename the poclbm file to ensure a new binary is built since.
  2660. - We now are guaranteed to have one fresh work item after a block change and we
  2661. should only discard staged requests.
  2662. - Don't waste the work we retrieve from a longpoll.
  2663. - Provide a control lock around global bools to avoid racing on them.
  2664. - Iterating over 1026 nonces when confirming data from the GPU is old code
  2665. and unnecessary and can lead to repeats/stales.
  2666. - The poclbm kernel needs to be updated to work with the change to 4k sized
  2667. output buffers.
  2668. - longpoll seems to work either way with post or get but some servers prefer
  2669. get so change to httpget.
  2670. CGMiner Version 1.2.7 - July 16, 2011
  2671. - Show last 8 characters of share submitted in log.
  2672. - Display URL connected to and user logged in as in status.
  2673. - Display current block and when it was started in the status line.
  2674. - Only pthread_join the mining threads if they exist as determined by
  2675. pthread_cancel and don't fail on pthread_cancel.
  2676. - Create a unique work queue for all getworks instead of binding it to thread 0
  2677. to avoid any conflict over thread 0's queue.
  2678. - Clean up the code to make it clear it's watchdog thread being messaged to
  2679. restart the threads.
  2680. - Check the current block description hasn't been blanked pending the real
  2681. new current block data.
  2682. - Re-enable signal handlers once the signal has been received to make it
  2683. possible to kill cgminer if it fails to shut down.
  2684. - Disable restarting of CPU mining threads pending further investigation.
  2685. - Update longpoll messages.
  2686. - Add new block data to status line.
  2687. - Fix opencl tests for osx.
  2688. - Only do local generation of work if the work item is not stale itself.
  2689. - Check for stale work within the mining threads and grab new work if
  2690. positive.
  2691. - Test for idle network conditions and prevent threads from being restarted
  2692. by the watchdog thread under those circumstances.
  2693. - Make sure that local work generation does not continue indefinitely by
  2694. stopping it after 10 minutes.
  2695. - Tweak the kernel to have a shorter path using a 4k buffer and a mask on the
  2696. nonce value instead of a compare and loop for a shorter code path.
  2697. - Allow queue of zero and make that default again now that we can track how
  2698. work is being queued versus staged. This can decrease reject rates.
  2699. - Queue precisely the number of mining threads as longpoll_staged after a
  2700. new block to not generate local work.
  2701. CGMiner Version 1.2.6 - July 15, 2011
  2702. - Put a current system status line beneath the total work status line
  2703. - Fix a counting error that would prevent cgminer from correctly detecting
  2704. situations where getwork was failing - this would cause stalls sometimes
  2705. unrecoverably.
  2706. - Limit the maximum number of requests that can be put into the queue which
  2707. otherwise could get arbitrarily long during a network outage.
  2708. - Only count getworks that are real queue requests.
  2709. CGMiner Version 1.2.5 - July 15, 2011
  2710. - Conflicting -n options corrected
  2711. - Setting an intensity with -I disables dynamic intensity setting
  2712. - Removed option to manually disable dynamic intensity
  2713. - Improve display output
  2714. - Implement signal handler and attempt to clean up properly on exit
  2715. - Only restart threads that are not stuck waiting on mandatory getworks
  2716. - Compatibility changes courtesy of Ycros to build on mingw32 and osx
  2717. - Explicitly grab first work item to prevent false positive hardware errors
  2718. due to working on uninitialised work structs
  2719. - Add option for non curses --text-only output
  2720. - Ensure we connect at least once successfully before continuing to retry to
  2721. connect in case url/login parameters were wrong
  2722. - Print an executive summary when cgminer is terminated
  2723. - Make sure to refresh the status window
  2724. CGMiner Versions -> 1.2.4
  2725. - Con Kolivas - July 2011. New maintainership of code under cgminer name.
  2726. - Massive rewrite to incorporate GPU mining.
  2727. - Incorporate original oclminer c code.
  2728. - Rewrite gpu mining code to efficient work loops.
  2729. - Implement per-card detection and settings.
  2730. - Implement vector code.
  2731. - Implement bfi int patching.
  2732. - Import poclbm and phatk ocl kernels and use according to hardware type.
  2733. - Implement customised optimised versions of opencl kernels.
  2734. - Implement binary kernel generation and loading.
  2735. - Implement preemptive asynchronous threaded work gathering and pushing.
  2736. - Implement variable length extra work queues.
  2737. - Optimise workloads to be efficient miners instead of getting lots of extra
  2738. work.
  2739. - Implement total hash throughput counters, per-card accepted, rejected and
  2740. hw error count.
  2741. - Staging and watchdog threads to prevent fallover.
  2742. - Stale and reject share guarding.
  2743. - Autodetection of new blocks without longpoll.
  2744. - Dynamic setting of intensity to maintain desktop interactivity.
  2745. - Curses interface with generous statistics and information.
  2746. - Local generation of work (xroll ntime) when detecting poor network
  2747. connectivity.
  2748. cpuminer Version 1.0.2
  2749. - Linux x86_64 optimisations - Con Kolivas
  2750. - Optimise for x86_64 by default by using sse2_64 algo
  2751. - Detects CPUs and sets number of threads accordingly
  2752. - Uses CPU affinity for each thread where appropriate
  2753. - Sets scheduling policy to lowest possible
  2754. - Minor performance tweaks
  2755. cpuminer Version 1.0.1 - May 14, 2011
  2756. - OSX support
  2757. cpuminer Version 1.0 - May 9, 2011
  2758. - jansson 2.0 compatibility
  2759. - correct off-by-one in date (month) display output
  2760. - fix platform detection
  2761. - improve yasm configure bits
  2762. - support full URL, in X-Long-Polling header
  2763. cpuminer Version 0.8.1 - March 22, 2011
  2764. - Make --user, --pass actually work
  2765. - Add User-Agent HTTP header to requests, so that server operators may
  2766. more easily identify the miner client.
  2767. - Fix minor bug in example JSON config file
  2768. cpuminer Version 0.8 - March 21, 2011
  2769. - Support long polling: http://deepbit.net/longpolling.php
  2770. - Adjust max workload based on scantime (default 5 seconds,
  2771. or 60 seconds for longpoll)
  2772. - Standardize program output, and support syslog on Unix platforms
  2773. - Suport --user/--pass options (and "user" and "pass" in config file),
  2774. as an alternative to the current --userpass
  2775. cpuminer Version 0.7.2 - March 14, 2011
  2776. - Add port of ufasoft's sse2 assembly implementation (Linux only)
  2777. This is a substantial speed improvement on Intel CPUs.
  2778. - Move all JSON-RPC I/O to separate thread. This reduces the
  2779. number of HTTP connections from one-per-thread to one, reducing resource
  2780. usage on upstream bitcoind / pool server.
  2781. cpuminer Version 0.7.1 - March 2, 2011
  2782. - Add support for JSON-format configuration file. See example
  2783. file example-cfg.json. Any long argument on the command line
  2784. may be stored in the config file.
  2785. - Timestamp each solution found
  2786. - Improve sha256_4way performance. NOTE: This optimization makes
  2787. the 'hash' debug-print output for sha256_way incorrect.
  2788. - Use __builtin_expect() intrinsic as compiler micro-optimization
  2789. - Build on Intel compiler
  2790. - HTTP library now follows HTTP redirects
  2791. cpuminer Version 0.7 - February 12, 2011
  2792. - Re-use CURL object, thereby reuseing DNS cache and HTTP connections
  2793. - Use bswap_32, if compiler intrinsic is not available
  2794. - Disable full target validation (as opposed to simply H==0) for now
  2795. cpuminer Version 0.6.1 - February 4, 2011
  2796. - Fully validate "hash < target", rather than simply stopping our scan
  2797. if the high 32 bits are 00000000.
  2798. - Add --retry-pause, to set length of pause time between failure retries
  2799. - Display proof-of-work hash and target, if -D (debug mode) enabled
  2800. - Fix max-nonce auto-adjustment to actually work. This means if your
  2801. scan takes longer than 5 seconds (--scantime), the miner will slowly
  2802. reduce the number of hashes you work on, before fetching a new work unit.
  2803. cpuminer Version 0.6 - January 29, 2011
  2804. - Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
  2805. - BeeCee1's sha256 4way optimizations
  2806. - lfm's byte swap optimization (improves via, cryptopp)
  2807. - Fix non-working short options -q, -r
  2808. cpuminer Version 0.5 - December 28, 2010
  2809. - Exit program, when all threads have exited
  2810. - Improve JSON-RPC failure diagnostics and resilience
  2811. - Add --quiet option, to disable hashmeter output.
  2812. cpuminer Version 0.3.3 - December 27, 2010
  2813. - Critical fix for sha256_cryptopp 'cryptopp_asm' algo
  2814. cpuminer Version 0.3.2 - December 23, 2010
  2815. - Critical fix for sha256_via
  2816. cpuminer Version 0.3.1 - December 19, 2010
  2817. - Critical fix for sha256_via
  2818. - Retry JSON-RPC failures (see --retry, under "minerd --help" output)
  2819. cpuminer Version 0.3 - December 18, 2010
  2820. - Add crypto++ 32bit assembly implementation
  2821. - show version upon 'minerd --help'
  2822. - work around gcc 4.5.x bug that killed 4way performance
  2823. cpuminer Version 0.2.2 - December 6, 2010
  2824. - VIA padlock implementation works now
  2825. - Minor build and runtime fixes
  2826. cpuminer Version 0.2.1 - November 29, 2010
  2827. - avoid buffer overflow when submitting solutions
  2828. - add Crypto++ sha256 implementation (C only, ASM elided for now)
  2829. - minor internal optimizations and cleanups
  2830. cpuminer Version 0.2 - November 27, 2010
  2831. - Add script for building a Windows installer
  2832. - improve hash performance (hashmeter) statistics
  2833. - add tcatm 4way sha256 implementation
  2834. - Add experimental VIA Padlock sha256 implementation
  2835. cpuminer Version 0.1.2 - November 26, 2010
  2836. - many small cleanups and micro-optimizations
  2837. - build win32 exe using mingw
  2838. - RPC URL, username/password become command line arguments
  2839. - remove unused OpenSSL dependency
  2840. cpuminer Version 0.1.1 - November 24, 2010
  2841. - Do not build sha256_generic module separately from cpuminer.
  2842. cpuminer Version 0.1 - November 24, 2010
  2843. - Initial release.