summaryrefslogtreecommitdiff
path: root/AUTHORS
AgeCommit message (Collapse)AuthorFilesLines
2014-06-13libusb 1.0.19Hans de Goede1-0/+1
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
2014-05-30libusb 1.0.19-rc2Hans de Goede1-0/+1
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
2014-05-19libusb 1.0.19-rc1Hans de Goede1-0/+4
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
2014-01-25libusb 1.0.18Pete Batard1-0/+1
2014-01-08libusb 1.0.18-rc1Pete Batard1-0/+9
2013-08-28Release 1.0.17-rc1Hans de Goede1-5/+7
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
2013-07-01Prepare for 1.0.16-rc2 releaseHans de Goede1-0/+1
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
2013-06-20Misc: Update AUTHORS filePete Batard1-2/+4
2013-06-20Prepare for 1.0.16-rc1 releaseHans de Goede1-1/+3
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
2013-04-02libusbx 1.0.15-rc1Pete Batard1-1/+3
* Also fix missing header in release tarball
2013-02-02Windows: Fixed bug in interface autoclaimBenjamin Dobell1-0/+1
* Bug was introduced in f2b19e4a32c1445f4fea06beca61e8c7e7757950 * Closes #78 * Closes #80
2013-01-29Core: Don't wait for completion if cancel_transfer failedZoltán Kovács1-0/+1
* See http://libusbx.1081486.n5.nabble.com/Libusbx-devel-libusb-interrupt-transfer-does-not-return-in-case-of-error-td626.html * Closes #76
2013-01-23WinCE: Add support for WinCE (Solution files)Toby Gray1-1/+1
2013-01-07Core: Filter out 8-bit characters in libusb_get_string_descriptor_asciiРоман Донченко1-0/+1
* Closes #68
2012-09-18Misc: Update copyrights, TODO and libusb_version.describePete Batard1-2/+2
* Changes suggested by Chuck Cook & Xiaofan Chen
2012-09-16libusbx 1.0.13-rc1Pete Batard1-0/+6
2012-06-11libusbx 1.0.12-rc1Pete Batard1-0/+1
2012-05-07libusbx 1.0.11-rc1Pete Batard1-0/+3
2012-04-02libusbx 1.0.9Pete Batard1-6/+22
* Also updated AUTHORS and THANKS
2011-06-13Revert libusb_strerror() until we have i18n and l10nPeter Stuge1-1/+0
2010-07-27Darwin: handle kIOReturnUnderrunHoi-Ho Chan1-0/+1
This return code indicates that the device returned a data packet less than the max packet size. In libusb backend terms, this is a successful transfer.
2010-07-27Add Windows supportPete Batard1-2/+2
Via Cygwin/MinGW, libusb now has windows support. Thanks to contributors: Michael Plante, Orin Eman, Peter Stuge, Stephan Meyer, Xiaofan Chen.
2010-05-18Rename all interface parameters to usb_interface or interface_numberPete Batard1-0/+1
Remove the use of the ambiguous "interface" where possible without breaking the API. 'interface' is a preprocessor #define already associated with COM on Windows, that can cause a conflict as soon as windows.h is included. There are a few more places where interface is still used, which should be changed for libusb-2.0
2010-05-12Add libusb_strerror() to get short error message in English from enumFrancesco1-0/+1
[dsd: small tweaks]
2010-05-12Fix libusb_device::lock memory leakMichael Plante1-0/+1
2010-05-12Add internal abstraction for POSIX ThreadsPeter Stuge1-0/+1
This prepares for a Windows backend without dependency on pthreads-w32. pthread_* is renamed to usbi_* and PTHREAD_* to USBI_*. A usbi_mutex_static_t and usbi_mutex_static_lock() and _unlock() are introduced for statically initialized mutexes, since they may be implemented using other types when pthreads mutexes aren't used. Move -pthread from libusb/Makefile.am to host-specific THREAD_CFLAGS in configure.ac. This will enable optional use of -lpthread for cygwin. [dsd: minor tweaks, and roll in a change based on patches from Pete Batard to only build dpfp_threaded example when we're using pthreads]
2010-04-05Linux: Fix endianness handling of usbfs config descriptors (#27)Martin Koegler1-0/+1
driver/usb/core/devio.c function usbdev_read translate the follwing files to CPU endianess: le16_to_cpus(&temp_desc.bcdUSB); le16_to_cpus(&temp_desc.idVendor); le16_to_cpus(&temp_desc.idProduct); le16_to_cpus(&temp_desc.bcdDevice); All other data is passed without any change. libusb/os/linux_usbfs.c calls usbi_parse_descriptor with host_endian=1 for config descriptors. According to the kernel code, they must be processed with host_endian=0, as they are not translated by the kernel. Signed-off-by: Martin Koegler <mkoegler@auto.tuwien.ac.at>
2010-02-15Darwin: use logging functionsNathan Hjelm1-1/+1
Use usbi_warn, usbi_err, and usbi_info instead of _usbi_log.
2009-11-15v1.0.5 releaseDaniel Drake1-0/+1
2009-11-07Use timerfd for timeout handlingDaniel Drake1-1/+1
Use a new file descriptor from the timerfd system calls to handle timeouts. On supported systems, this means that there is less hassle figuring out when the poll() timeout should be, since libusb_get_next_timeout() will always return 0 and the timeout events will be triggered as regular activity on the file descriptor set. Add API function libusb_pollfds_handle_timeouts() to detect whether you're on a platform with the timing headache, and flesh out the surrounding documentation.
2009-11-06v1.0.4 releaseDaniel Drake1-0/+1
2009-05-28pre-gcc-3.4 compatibilityAlex Vatchenko1-0/+1
The -fvisibility and -Wno-pointer-sign options are not available on old GCC versions.
2009-05-12Update AUTHORSDaniel Drake1-0/+3
2009-02-16Darwin backendNathan Hjelm1-0/+1
2008-11-21v0.9.4 releaseDaniel Drake1-0/+3
2008-06-17a fix for SIGSEGV in handle_bulk_completion()Artem Egorkine1-0/+1
We cannot dereference tpriv after calling usbi_handle_transfer_cancellation() because that function may invoke the user-supplied callback which may free the transfer.
2008-06-15docs updateDaniel Drake1-1/+8
Add a THANKS file, make copyright notices easily accessible, update TODO
2007-12-02Initial commitDaniel Drake1-0/+1
Basic library structure which supports enumerating detected USB devices