mirror of
https://gitlab.gnome.org/World/Authenticator.git
synced 2025-03-04 08:44:40 +01:00
Release 4.4.0
This commit is contained in:
parent
f137c86c73
commit
5b3a31a047
4 changed files with 13 additions and 7 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -242,7 +242,7 @@ checksum = "112ef6b3f6cb3cb6fc5b6b494ef7a848492cff1ab0ef4de10b0f7d572861c905"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "authenticator"
|
name = "authenticator"
|
||||||
version = "4.3.1"
|
version = "4.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aes-gcm",
|
"aes-gcm",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
name = "authenticator"
|
name = "authenticator"
|
||||||
version = "4.3.1"
|
version = "4.4.0"
|
||||||
rust-version = "1.70"
|
rust-version = "1.70"
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
|
|
|
@ -48,6 +48,13 @@
|
||||||
<url type="vcs-browser">https://gitlab.gnome.org/World/Authenticator</url>
|
<url type="vcs-browser">https://gitlab.gnome.org/World/Authenticator</url>
|
||||||
<content_rating type="oars-1.1" />
|
<content_rating type="oars-1.1" />
|
||||||
<releases>
|
<releases>
|
||||||
|
<release version="4.4.0" date="2023-10-13">
|
||||||
|
<ul>
|
||||||
|
<li>Display an error dialog when the application fails to use the keyring</li>
|
||||||
|
<li>Use new Adwaita widgets</li>
|
||||||
|
<li>Camera improvements thanks to Aperture, the library used by Snapshot</li>
|
||||||
|
</ul>
|
||||||
|
</release>
|
||||||
<release version="4.3.1" date="2023-04-22">
|
<release version="4.3.1" date="2023-04-22">
|
||||||
<ul>
|
<ul>
|
||||||
<li>Add support for rotated camera</li>
|
<li>Add support for rotated camera</li>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('authenticator', 'rust',
|
project('authenticator', 'rust',
|
||||||
version: '4.3.1',
|
version: '4.4.0',
|
||||||
meson_version: '>= 0.59',
|
meson_version: '>= 0.59',
|
||||||
license: 'GPL-3.0-or-later'
|
license: 'GPL-3.0-or-later'
|
||||||
)
|
)
|
||||||
|
@ -15,9 +15,9 @@ dependency('gstreamer-base-1.0', version: '>= 1.18')
|
||||||
dependency('gstreamer-plugins-base-1.0', version: '>= 1.18')
|
dependency('gstreamer-plugins-base-1.0', version: '>= 1.18')
|
||||||
dependency('gstreamer-plugins-bad-1.0', version: '>= 1.18')
|
dependency('gstreamer-plugins-bad-1.0', version: '>= 1.18')
|
||||||
|
|
||||||
cargo = find_program('cargo', required: true)
|
cargo = find_program('cargo')
|
||||||
glib_compile_schemas = find_program('glib-compile-schemas', required: true)
|
glib_compile_schemas = find_program('glib-compile-schemas')
|
||||||
glib_compile_resources = find_program('glib-compile-resources', required: true)
|
glib_compile_resources = find_program('glib-compile-resources')
|
||||||
|
|
||||||
version = meson.project_version()
|
version = meson.project_version()
|
||||||
|
|
||||||
|
@ -46,7 +46,6 @@ else
|
||||||
version_suffix = ''
|
version_suffix = ''
|
||||||
application_id = 'com.belmoussaoui.Authenticator'
|
application_id = 'com.belmoussaoui.Authenticator'
|
||||||
object_path = '/com/belmoussaoui/Authenticator/SearchProvider'
|
object_path = '/com/belmoussaoui/Authenticator/SearchProvider'
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
i18n = import('i18n')
|
i18n = import('i18n')
|
||||||
|
|
Loading…
Add table
Reference in a new issue