mirror of
https://gitlab.com/mishakmak/pam-fprint-grosshack.git
synced 2026-04-08 20:03:34 +02:00
Update for 1.92.0
This commit is contained in:
18
NEWS
18
NEWS
@ -1,6 +1,24 @@
|
|||||||
This file lists notable changes in each release. For the full history of all
|
This file lists notable changes in each release. For the full history of all
|
||||||
changes, see ChangeLog.
|
changes, see ChangeLog.
|
||||||
|
|
||||||
|
Version 1.92.0:
|
||||||
|
|
||||||
|
API users, please adjust now to planned API changes in 2.0:
|
||||||
|
- EnrollStart will throw an error if the finger was enrolled already
|
||||||
|
- Interactive DBus authentication will only happen when requested
|
||||||
|
|
||||||
|
Highlights:
|
||||||
|
- fprintd now prevents the same finger to be enrolled twice
|
||||||
|
- Support clearing storage of match-on-chip devices
|
||||||
|
- pam: Cancel authentication on SIGINT (e.g. ctrl+c with sudo)
|
||||||
|
- pam: Always return PAM_AUTHINFO_UNAVAIL for devices without prints
|
||||||
|
- Expose finger status on DBus
|
||||||
|
- Add method to delete only a specific print of a user
|
||||||
|
- Improved error reporting for deletion
|
||||||
|
- Wait for finger removal before cancelling operations
|
||||||
|
- Prefer older prints when garbage collecting
|
||||||
|
- Major improvements to test coverage
|
||||||
|
|
||||||
Version 1.90.9:
|
Version 1.90.9:
|
||||||
|
|
||||||
Highlights:
|
Highlights:
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
project('fprintd', 'c',
|
project('fprintd', 'c',
|
||||||
version: '1.90.9',
|
version: '1.92.0',
|
||||||
license: 'GPLv2+',
|
license: 'GPLv2+',
|
||||||
default_options: [
|
default_options: [
|
||||||
'buildtype=debugoptimized',
|
'buildtype=debugoptimized',
|
||||||
@ -64,7 +64,7 @@ add_project_arguments(common_cflags, language: 'c')
|
|||||||
host_system = host_machine.system()
|
host_system = host_machine.system()
|
||||||
# NOTE: Bump gdbus-codegen min version once we can depend on 2.64!
|
# NOTE: Bump gdbus-codegen min version once we can depend on 2.64!
|
||||||
glib_min_version = '2.56'
|
glib_min_version = '2.56'
|
||||||
libfprint_min_version = '1.90.4'
|
libfprint_min_version = '1.92.0'
|
||||||
|
|
||||||
fprintd_installdir = get_option('prefix') / get_option('libexecdir')
|
fprintd_installdir = get_option('prefix') / get_option('libexecdir')
|
||||||
fprintd_plugindir = get_option('prefix') / get_option('libdir') / meson.project_name() / 'modules'
|
fprintd_plugindir = get_option('prefix') / get_option('libdir') / meson.project_name() / 'modules'
|
||||||
|
|||||||
Reference in New Issue
Block a user