summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add g_usb_device_get_string_descriptor_bytes_fullmasterRicardo Cañuelo2021-09-303-15/+57
| | | | | | | Some devices won't answer to a request with a 128-byte data buffer, this allows the user to specify the size of the request data buffer. g_usb_device_get_string_descriptor_bytes still uses the default buffer size (128 bytes).
* trivial: post release version bumpRichard Hughes2021-05-242-5/+5
|
* Release version 0.3.70.3.7Richard Hughes2021-05-242-1/+15
|
* trivial: Fix a warning when used in a subprojectRichard Hughes2021-05-221-2/+1
| | | | | | | Fixes: DEPRECATION: Library was passed to the libraries keyword argument of a previous call to generate() method instead of first positional argument.
* Add a FreeBSD CI targetRichard Hughes2021-05-211-1/+18
|
* trivial: Do not hardcode the libusb.h include directoryRichard Hughes2021-05-211-5/+5
|
* Require *any* python3 to fix FreeBSD buildRichard Hughes2021-05-211-1/+1
|
* trivial: Make build_and_test.sh less of a footgunRichard Hughes2021-05-211-1/+0
|
* Do not depend on libusb_get_port_number() to fix DragonFlyBSD compileRichard Hughes2021-05-212-1/+13
|
* Do not depend on libusb_get_parent() to fix FreeBSD compileRichard Hughes2021-05-212-0/+12
|
* Lower the libusb dep to fix compile on FreeBSDRichard Hughes2021-05-212-6/+27
| | | | | | | | | | | FreeBSD is not a supported platform of libusb. The native USB access library on FreeBSD is libusb20, which provides both the non-portable FreeBSD-specific API and wrapper functions that are mostly compatible eith libusb 1.0 API. It is an integral part of FreeBSD and the version included in the oldest supported FreeBSD release reports 1.0.9 in its libusb-1.0.pc. Based on a patch by Ting-Wei Lan <lantw@src.gnome.org>, many thanks.
* Do not run the tests on FreeBSDRichard Hughes2021-05-211-0/+10
| | | | | | Root hubs on FreeBSD have vid and pid set to zero. Based on a patch by Ting-Wei Lan <lantw@src.gnome.org>
* trivial: Move Debian CI to busterRichard Hughes2021-05-212-3/+3
|
* Only run CI build on masterRichard Hughes2021-05-211-1/+5
|
* Move the CI to GitHub actionsRichard Hughes2021-05-213-15/+20
|
* device: Reference the libusb device when setMarco Trevisan (Treviño)2021-04-131-3/+13
| | | | | | | | | We used to reference a device during the initable init vfunc, however it's better to do it when the device is actually set as an object property. In this way, the device is always unreffed when the object is disposed, without having to care about the ordering.
* device: Do not double-reference USB devicesMarco Trevisan (Treviño)2021-04-131-2/+0
| | | | | | | | | | | Currently gusb-device adds two references to an internal libusb device, causing a memory leak on destruction. In fact, we add a reference when the device is constructed and when the device is inited. To avoid this and ensure that libusb will cleanup all the devices on context destruction, only reference on device initialization.
* trivial: Fix a tiny memork leak when running the gusb test toolRichard Hughes2021-04-121-0/+1
|
* trivial: post release version bumpRichard Hughes2021-03-122-5/+5
|
* Release version 0.3.60.3.6Richard Hughes2021-03-121-0/+11
|
* Add g_usb_device_get_string_descriptor_bytes()Richard Hughes2021-01-273-0/+62
| | | | This is requried for the GD32VF103 device.
* trivial: Include string.h for memcpy()Richard Hughes2020-12-141-0/+2
|
* Merge pull request #42 from benzea/benzea/fix-cancellationIgnacio Casal Quinteiro2020-11-031-27/+42
|\ | | | | device: Fix cancellation if cancellable is already cancelled
| * device: Fix cancellation if cancellable is already cancelledBenjamin Berg2020-10-011-27/+42
|/ | | | | | | | | | | libusb can only handle cancellation if the transfer is already in-flight. However, g_cancellable_connect will immediately call the callback and then libusb_cancel_transfer when the cancellable is already cancelled at the time the transfer is submitted. Move the cancellation registration to after transfer submission to avoid ordering issues. Also avoid even submitting the transfer if the cancellable is already cancelled to begin with.
* trivial: Fix up typos spotted by codespellRichard Hughes2020-09-243-8/+8
|
* trivial: Check the return code of g_option_context_parse()Richard Hughes2020-09-011-1/+6
|
* Properly set dylib versions on darwinCaleb Xu2020-08-032-3/+4
|
* trivial: post release version bumpRichard Hughes2020-07-302-4/+4
|
* Release version 0.3.50.3.5Richard Hughes2020-07-301-0/+14
|
* Add a way to get iConfigurationBenson Leung2020-07-293-0/+37
| | | | | Adds a getter for a gusb_device to get the string index for the active configuration's description.
* Allow building GtkDoc when building as a subprojectRichard Hughes2020-06-242-2/+5
| | | | Fixes https://github.com/fwupd/fwupd/issues/2178
* trivial: Sync map generator changes from libxmlbRichard Hughes2020-04-031-2/+2
|
* trivial: post release version bumpRichard Hughes2020-04-032-5/+5
|
* generate-version-script: Don't hard-code the path of python3Ting-Wei Lan2020-03-242-1/+4
| | | | | | Python can be installed in different directories on different operating systems, so we can't hard-code the path of it. Instead, use meson to find it to avoid 'no such file or directory' error on the bad path.
* build: version-script should be supported everywhere except on darwin systemLaurent Bigonville2020-03-181-1/+1
| | | | Fixes: #34
* generate-version-script: Don't skip methods on plain structsSimon McVittie2020-03-042-3/+5
| | | | | | | This resulted in losing g_usb_source_set_callback@LIBGUSB_0.1.0 from the ABI in version 0.3.4. Signed-off-by: Simon McVittie <smcv@debian.org>
* CI: Install diffutilsSimon McVittie2020-03-041-0/+1
| | | | Signed-off-by: Simon McVittie <smcv@debian.org>
* Release version 0.3.40.3.4Richard Hughes2020-02-201-0/+16
|
* Validate the exported symbol list during checkRichard Hughes2020-02-203-12/+210
| | | | | This is the same script used by fwupd, and would have caught both recent issues with the exported symbol versions being incorrect.
* trivial: Add some missing 'Since: ' valuesRichard Hughes2020-02-202-0/+14
|
* trivial: Fix the gtk-doc markup in GUsbEndpointRichard Hughes2020-02-201-5/+5
|
* Include the USB bus in the generated platform_idRichard Hughes2020-02-141-11/+6
| | | | | | | | | | | The existing logic here was unsound; the recursion only checked the string for length 0 after it had gone up the tree to the parent, and so would never match. This meant if you had identical devices with the same port hierarchy on different USB busses they had the *same* physical ID. This really upsets projects like fwupd which use the physical ID to stay the same on device replug (which worked fine), but also dedupe devices with the same physical ID, which is what broke here.
* trivial: Add exported symbol g_usb_version_string in the right placeRichard Hughes2020-02-111-0/+1
| | | | Fixes the last point in https://github.com/hughsie/libgusb/issues/27
* trivial: add missing symbols to ver fileEmmanuel Pacaud2020-02-111-0/+4
|
* trivial: typo fixEmmanuel Pacaud2020-02-111-1/+1
|
* trivial: post release version bumpRichard Hughes2020-01-302-5/+5
|
* Release version 0.3.30.3.3Richard Hughes2020-01-301-0/+12
|
* trivial: Define a G_USB_DEVICE_CLAIM_INTERFACE_NONE rather than using '0'Richard Hughes2020-01-211-0/+1
|
* trivial: Use spaces and tabs consistentlyRichard Hughes2020-01-217-263/+263
|
* Wrap the upstream libusb_strerror()Richard Hughes2020-01-212-39/+2
| | | | We depend on a libusb to always define this.