Version 2.1.3
This commit is contained in:
parent
61392dc673
commit
922ce0b92e
4 changed files with 17 additions and 3 deletions
14
NEWS
14
NEWS
|
@ -1,3 +1,17 @@
|
||||||
|
Version 2.1.3 - Feb 12, 2012
|
||||||
|
|
||||||
|
- Smart handling of long polling failures: switch to short scan time
|
||||||
|
if long polling fails, and only try to reactivate it if the server
|
||||||
|
continues to advertise the feature in HTTP headers
|
||||||
|
- Add "X-Mining-Extensions: midstate" to HTTP headers (p2k)
|
||||||
|
- Add support for the "submitold" extension, used by p2pool
|
||||||
|
- It is now possible to specify username and password in the URL,
|
||||||
|
like this: http://username:password@host:port/
|
||||||
|
- Add a --version option, and clean up --help output
|
||||||
|
- Avoid division by zero when computing hash rates
|
||||||
|
- Handle empty responses properly (TimothyA)
|
||||||
|
- Eliminate the delay between starting threads
|
||||||
|
|
||||||
Version 2.1.2 - Jan 26, 2012
|
Version 2.1.2 - Jan 26, 2012
|
||||||
|
|
||||||
- Do not submit work that is known to be stale
|
- Do not submit work that is known to be stale
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
AC_INIT([cpuminer], [2.1.2])
|
AC_INIT([cpuminer], [2.1.3])
|
||||||
|
|
||||||
AC_PREREQ(2.52)
|
AC_PREREQ(2.52)
|
||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 2010 Jeff Garzik
|
* Copyright 2010 Jeff Garzik, 2012 pooler
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify it
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
* under the terms of the GNU General Public License as published by the Free
|
* under the terms of the GNU General Public License as published by the Free
|
||||||
|
|
2
util.c
2
util.c
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 2010 Jeff Garzik
|
* Copyright 2010 Jeff Garzik, 2012 pooler
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify it
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
* under the terms of the GNU General Public License as published by the Free
|
* under the terms of the GNU General Public License as published by the Free
|
||||||
|
|
Loading…
Add table
Reference in a new issue