diff --git a/NEWS b/NEWS index cf96ff33..eacd99c9 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,13 @@ This file lists notable changes in each release. For the full history of all changes, see ChangeLog. +2021-11-02: v1.94.2 release + +Highlights: + * goodixmoc: Fix protocol error with certain username lengths + * elanmoc: New PID 0x0c7d + * goodixmoc: New PID 0x63cc + 2021-09-24: v1.94.1 release Highlights: diff --git a/data/autosuspend.hwdb b/data/autosuspend.hwdb index 42d22ca7..cbc6109f 100644 --- a/data/autosuspend.hwdb +++ b/data/autosuspend.hwdb @@ -286,6 +286,7 @@ usb:v0A5Cp5842* usb:v0A5Cp5843* usb:v0A5Cp5844* usb:v0A5Cp5845* +usb:v0BDAp5812* usb:v10A5p0007* usb:v1188p9545* usb:v138Ap0007* diff --git a/doc/libfprint-2-sections.txt b/doc/libfprint-2-sections.txt index 33189854..91258b62 100644 --- a/doc/libfprint-2-sections.txt +++ b/doc/libfprint-2-sections.txt @@ -179,6 +179,7 @@ fpi_device_enroll_complete fpi_device_verify_complete fpi_device_identify_complete fpi_device_capture_complete +fpi_device_clear_storage_complete fpi_device_delete_complete fpi_device_list_complete fpi_device_suspend_complete @@ -259,7 +260,10 @@ fpi_ssm_get_device fpi_ssm_get_error fpi_ssm_dup_error fpi_ssm_get_cur_state +fpi_ssm_spi_transfer_cb +fpi_ssm_spi_transfer_with_weak_pointer_cb fpi_ssm_usb_transfer_cb +fpi_ssm_usb_transfer_with_weak_pointer_cb FpiSsm @@ -286,3 +290,20 @@ FPI_TYPE_USB_TRANSFER fpi_usb_transfer_get_type +
+fpi-spi-transfer +FpiSpiTransferCallback +FpiSpiTransfer +fpi_spi_transfer_new +fpi_spi_transfer_ref +fpi_spi_transfer_unref +fpi_spi_transfer_write +fpi_spi_transfer_write_full +fpi_spi_transfer_read +fpi_spi_transfer_read_full +fpi_spi_transfer_submit +fpi_spi_transfer_submit_sync + +FPI_TYPE_SPI_TRANSFER +fpi_spi_transfer_get_type +
diff --git a/doc/libfprint-docs.xml b/doc/libfprint-docs.xml index b866aab0..0a57efb4 100644 --- a/doc/libfprint-docs.xml +++ b/doc/libfprint-docs.xml @@ -41,7 +41,8 @@ - USB and State Machine helpers + USB, SPI and State Machine helpers + diff --git a/libfprint/fprint-list-udev-hwdb.c b/libfprint/fprint-list-udev-hwdb.c index d271752a..f5674574 100644 --- a/libfprint/fprint-list-udev-hwdb.c +++ b/libfprint/fprint-list-udev-hwdb.c @@ -60,6 +60,7 @@ static const FpIdEntry whitelist_id_table[] = { { .vid = 0x0a5c, .pid = 0x5843 }, { .vid = 0x0a5c, .pid = 0x5844 }, { .vid = 0x0a5c, .pid = 0x5845 }, + { .vid = 0x0bda, .pid = 0x5812 }, { .vid = 0x10a5, .pid = 0x0007 }, { .vid = 0x1188, .pid = 0x9545 }, { .vid = 0x138a, .pid = 0x0007 }, diff --git a/meson.build b/meson.build index d5c28772..ad105f1f 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('libfprint', [ 'c', 'cpp' ], - version: '1.94.1+tod1', + version: '1.94.2+tod1', license: 'LGPLv2.1+', default_options: [ 'buildtype=debugoptimized',