diff options
author | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2025-02-20 18:08:48 +0100 |
---|---|---|
committer | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2025-02-20 18:41:27 +0100 |
commit | dc8b05f0a30e93174e861977cede8427c22f8f76 (patch) | |
tree | 1b369cda5beef3217835b2370e98d84c5fbbc48a | |
parent | c37da8568fda577dd7004e69f2eaa97217c96e2d (diff) |
-rw-r--r-- | NEWS | 15 | ||||
-rw-r--r-- | meson.build | 2 |
2 files changed, 16 insertions, 1 deletions
@@ -1,9 +1,24 @@ This file lists notable changes in each release. For the full history of all changes, see ChangeLog. +2025-02-20: v1.94.9 release + +Highlights: + * uru4000: Use OpenSSL to perform AES-ECB encryption, as per this libfprint + does not support on NSS, but on openssl (>= 3.0). + * goodixmoc: New PIDs 0x60C2, 0x689A + * synaptics: New PIDs 0x016C, 0x0174, 0x0107, 0x0108, 0x00C2, 0x00F0 + * fpcmoc: New PID 0xC844 + * focaltech_moc: New PIDs 0xA99A, 0xA57A, 0xA78A + * elanmoc: New PIDs 0x0C98, 0x0C9D, 0x0CA3 + * elanspi: New PIDs 0x3128, 0x2766 + * fp-device: Add FP_DEVICE_RETRY_TOO_FAST retry error + * data: AppStream meta info listing supported USB devices. + * fixed various memory issues in multiple devices + 2024-09-03: v1.94.8 release Highlights: * build: Support building in non-linux unix environments (tested in FreeBSD) * egismoc: New PIDs 0x0583, 0x0586, 0x0587. * elanmoc: New PID 0x0C9F. diff --git a/meson.build b/meson.build index 44be5aa..baafa19 100644 --- a/meson.build +++ b/meson.build @@ -1,8 +1,8 @@ project('libfprint', [ 'c', 'cpp' ], - version: '1.94.8', + version: '1.94.9', license: 'LGPLv2.1+', default_options: [ 'buildtype=debugoptimized', 'warning_level=1', 'c_std=gnu99', ], |