libusbx 1.0.12-rc1
This commit is contained in:
parent
beeb662e7c
commit
c38f551e16
4 changed files with 17 additions and 3 deletions
1
AUTHORS
1
AUTHORS
|
@ -24,6 +24,7 @@ Hector Martin
|
||||||
Hoi-Ho Chan
|
Hoi-Ho Chan
|
||||||
James Hanko
|
James Hanko
|
||||||
Konrad Rzepecki
|
Konrad Rzepecki
|
||||||
|
Lars Wirzenius
|
||||||
Ludovic Rousseau
|
Ludovic Rousseau
|
||||||
Martin Koegler
|
Martin Koegler
|
||||||
Mike Frysinger
|
Mike Frysinger
|
||||||
|
|
13
NEWS
13
NEWS
|
@ -2,6 +2,19 @@ This file lists notable changes in each release.
|
||||||
For fine grained history, please see the git log at:
|
For fine grained history, please see the git log at:
|
||||||
http://libusbx.git.sourceforge.net/git/gitweb.cgi?p=libusbx/libusbx;a=log
|
http://libusbx.git.sourceforge.net/git/gitweb.cgi?p=libusbx/libusbx;a=log
|
||||||
|
|
||||||
|
2012-06-11: v1.0.12-rc1
|
||||||
|
* Fix a potential major regression with pthread on Linux
|
||||||
|
* Fix missing thread ID from debug log output on cygwin
|
||||||
|
* Fix possible crash when using longjmp and MinGW's gcc 4.6
|
||||||
|
* Add topology calls: libusb_get_port_number(), libusb_get_parent() & libusb_get_port_path()
|
||||||
|
* Add toggleable debug, using libusb_set_debug() or the LIBUSB_DEBUG environment variable
|
||||||
|
* Define log levels in libusb.h and set timestamp origin to first init call
|
||||||
|
* All logging is now sent to to stderr (info was sent to stdout previously)
|
||||||
|
* Update log messages severity and avoid polluting log output on OS-X
|
||||||
|
* Add HID driver support on Windows
|
||||||
|
* Enable MSVC and MinGW DLLs to be interchanged
|
||||||
|
* Other bug fixes and improvements
|
||||||
|
|
||||||
2012-05-08: v1.0.11
|
2012-05-08: v1.0.11
|
||||||
* Revert removal of critical Windows event handling that was introduced in 1.0.10
|
* Revert removal of critical Windows event handling that was introduced in 1.0.10
|
||||||
* Fix a possible deadlock in Windows when submitting transfers
|
* Fix a possible deadlock in Windows when submitting transfers
|
||||||
|
|
|
@ -7,12 +7,12 @@
|
||||||
#define LIBUSB_MINOR 0
|
#define LIBUSB_MINOR 0
|
||||||
#endif
|
#endif
|
||||||
#ifndef LIBUSB_MICRO
|
#ifndef LIBUSB_MICRO
|
||||||
#define LIBUSB_MICRO 11
|
#define LIBUSB_MICRO 12
|
||||||
#endif
|
#endif
|
||||||
#ifndef LIBUSB_NANO
|
#ifndef LIBUSB_NANO
|
||||||
#define LIBUSB_NANO 0
|
#define LIBUSB_NANO 0
|
||||||
#endif
|
#endif
|
||||||
/* LIBUSB_RC is the release candidate suffix. Should normally be empty. */
|
/* LIBUSB_RC is the release candidate suffix. Should normally be empty. */
|
||||||
#ifndef LIBUSB_RC
|
#ifndef LIBUSB_RC
|
||||||
#define LIBUSB_RC ""
|
#define LIBUSB_RC "-rc1"
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
#define LIBUSB_NANO 10527
|
#define LIBUSB_NANO 10528
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue