summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add g_usb_context_set_flags()wip/hughsie/GUsbContextFlagsRichard Hughes2017-07-226-15/+130
| | | | This allows us to auto-open devices as they are hotplugged.
* Fix the actual required GLib versionRichard Hughes2017-06-081-1/+1
|
* trivial: post release version bumpRichard Hughes2017-04-102-6/+6
|
* Release version 0.2.10gusb_0_2_10Richard Hughes2017-04-102-1/+11
|
* Fix a memory leak when using g_usb_device_control_transfer_async()Richard Hughes2017-03-241-5/+6
|
* Correctly detect removed devices when using g_usb_context_rescan()Richard Hughes2017-03-241-3/+3
|
* Merge pull request #8 from lantw44/masterIgnacio Casal Quinteiro2016-06-141-1/+1
|\ | | | | Fix gtk-doc build when builddir != srcdir
| * Fix gtk-doc build when builddir != srcdirTing-Wei Lan2016-06-141-1/+1
|/
* Merge pull request #7 from DimStar77/symbol_version-0.2.9Richard Hughes2016-05-311-2/+2
|\ | | | | Fixup VERSION script
| * Fixup VERSION scriptDominique Leuenberger2016-05-301-2/+2
| | | | | | | | Fix commit cfaab3e
* | Merge pull request #6 from DimStar77/symbol_version-0.2.9Richard Hughes2016-05-251-0/+24
|\ \ | |/ | | Fixup symbol version table up to version 0.2.9
| * Fixup symbol version table up to version 0.2.9Dominique Leuenberger2016-05-251-0/+24
|/
* trivial: post release version bumpRichard Hughes2016-03-212-7/+7
|
* Release version 0.2.9gusb_0_2_9Richard Hughes2016-03-211-0/+8
|
* trivial: Return the replugged device when using g_usb_context_get_devices()Richard Hughes2016-03-111-3/+8
|
* trivial: Use the defined main context when waiting for replugRichard Hughes2016-03-111-1/+1
|
* Add g_usb_context_wait_for_replug()Richard Hughes2016-03-103-3/+183
|
* trivial: Fix compile warning with GCC6Richard Hughes2016-03-101-1/+1
|
* Install gusbcmd as a debugging aidRichard Hughes2016-02-192-5/+6
| | | | lsusb requires libudev which isn't available in xdg-app runtimes.
* trivial: post release version bumpRichard Hughes2015-12-012-4/+4
|
* Release version 0.2.8gusb_0_2_8Richard Hughes2015-12-012-1/+15
|
* Revert "Allow getting the GUsbContext from the GUsbDevice"Richard Hughes2015-11-251-4/+1
| | | | | | This reverts commit 7561b53eed51776b393e0b5e270cb07d637835a9. It's a layering violation, and I've found a better way to do this now.
* Add a PERMISSION_DENIED error enumRichard Hughes2015-11-202-6/+14
| | | | Sometimes we want to handle this differently...
* Merge pull request #5 from nacho/masterRichard Hughes2015-11-173-50/+21
|\ | | | | Convert GUsbInterface to user the G_DECLARE_FINAL_TYPE macro
| * Convert GUsbInterface to user the G_DECLARE_FINAL_TYPE macroIgnacio Casal Quinteiro2015-11-173-50/+21
|/
* trivial: Remove typo that meant we only returned one interfaceRichard Hughes2015-11-161-1/+0
|
* Ignore the not-found error when resetting a deviceRichard Hughes2015-11-121-0/+2
| | | | This is what most USB device will return for success.
* Allow getting the GUsbContext from the GUsbDeviceRichard Hughes2015-11-101-1/+4
| | | | | This semi-private feature allows us to deal with resetting GUsbDevices that come back with different VID:PID values.
* Add g_usb_device_set_interface_alt()Richard Hughes2015-11-102-0/+36
| | | | | | | | I did think of adding this as g_usb_interface_set_alt_setting() but the other claim() and release() methods are already on the the device object. This lets us set an alternate setting after we've claimed an interface which allows us to select non-default targets when flashing DFU-capable devices.
* Add g_usb_device_get_interfaces()Richard Hughes2015-11-102-0/+118
| | | | This allows us to discover what interfaces are exported by a GUsbDevice.
* Add a thin glib wrapper around a libusb_interface_descriptorRichard Hughes2015-11-107-0/+358
| | | | Sometimes we do actually need to care about what interfaces a device exports.
* Add g_usb_device_get_release()Richard Hughes2015-11-102-2/+21
| | | | This allows us to get access to the bcdDevice, typically a firmware version.
* trivial: post release version bumpRichard Hughes2015-09-152-6/+6
|
* Release version 0.2.7gusb_0_2_7Richard Hughes2015-09-151-0/+10
|
* Merge pull request #4 from kalev/autocleanupsRichard Hughes2015-09-143-0/+38
|\ | | | | Support g_autoptr() for all gusb object types
| * Support g_autoptr() for all gusb object typesKalev Lember2015-09-143-0/+38
|/ | | | | | This allows using e.g. g_autoptr(GUsbDevice) in other programs, but does not make libgusb itself use g_autoptr, or require a new enough glib to support it.
* Merge pull request #3 from robert-ancell/masterIgnacio Casal Quinteiro2015-08-033-3/+3
|\ | | | | Add missing element-type annotations.
| * Add missing element-type annotations.Robert Ancell2015-08-033-3/+3
|/ | | | | | This allows g_usb_context_get_devices, usb_device_list_get_devices and g_usb_device_get_children to be used in languages that use gobject introspection like Vala, Python etc.
* trivial: post release version bumpRichard Hughes2015-07-062-6/+6
|
* Release version 0.2.6gusb_0_2_6Richard Hughes2015-07-061-0/+7
|
* Do not unref the GMainContext after each requestRichard Hughes2015-06-081-3/+0
| | | | We no longer hold a reference.
* trivial: Fix up style of new method to match the codebaseRichard Hughes2015-06-081-1/+6
|
* trivial: post release version bumpRichard Hughes2015-05-282-6/+6
|
* Release version 0.2.5gusb_0_2_5Richard Hughes2015-05-282-1/+11
|
* Allow setting the GMainContext when used for sync methodsRichard Hughes2015-05-263-3/+47
|
* trivial: Fix make checkRichard Hughes2015-05-261-1/+1
|
* Include all the USB device class codesRichard Hughes2015-05-052-2/+29
|
* Add g_usb_device_get_custom_index()Richard Hughes2015-04-295-0/+130
| | | | This allows us to get the string index for a given interface descriptor.
* Merge pull request #2 from DimStar77/masterRichard Hughes2015-01-272-1/+37
|\ | | | | Use symbol versioning
| * use symbol versioningPass Automated Testing Suite2015-01-272-1/+37
|/