update screenshots
|
@ -11,8 +11,6 @@
|
|||
## Screenshots
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
## Features
|
||||
|
||||
|
|
|
@ -25,11 +25,19 @@
|
|||
</screenshot>
|
||||
<screenshot>
|
||||
<image>https://gitlab.gnome.org/World/Authenticator/raw/master/data/screenshots/screenshot2.png</image>
|
||||
<caption>Add a new account</caption>
|
||||
<caption>Add a New Account</caption>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<image>https://gitlab.gnome.org/World/Authenticator/raw/master/data/screenshots/screenshot3.png</image>
|
||||
<caption>Sharing an account</caption>
|
||||
<caption>Add a New Provider</caption>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<image>https://gitlab.gnome.org/World/Authenticator/raw/master/data/screenshots/screenshot4.png</image>
|
||||
<caption>Account Details</caption>
|
||||
</screenshot>
|
||||
<screenshot>
|
||||
<image>https://gitlab.gnome.org/World/Authenticator/raw/master/data/screenshots/screenshot5.png</image>
|
||||
<caption>Backup/Restore formats support</caption>
|
||||
</screenshot>
|
||||
</screenshots>
|
||||
<url type="homepage">https://gitlab.gnome.org/World/Authenticator</url>
|
||||
|
@ -44,6 +52,8 @@
|
|||
<li>Rewrite in Rust</li>
|
||||
<li>HOTP/Steam support</li>
|
||||
<li>Scanning from a camera stream support</li>
|
||||
<li>Backup/Restore from FreeOTP+</li>
|
||||
<li>Backup/Restore from andOTP</li>
|
||||
</ul>
|
||||
</description>
|
||||
</release>
|
||||
|
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 42 KiB |
BIN
data/screenshots/screenshot4.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
data/screenshots/screenshot5.png
Normal file
After Width: | Height: | Size: 33 KiB |
|
@ -204,7 +204,7 @@ impl Window {
|
|||
"shared",
|
||||
false,
|
||||
clone!(@weak self as win => move |args| {
|
||||
let account = args.get(1).unwrap().get::<Account>().unwrap().unwrap();
|
||||
let account = args.get(1).unwrap().get::<Account>().unwrap().unwrap();
|
||||
win.set_view(View::Account(account));
|
||||
None
|
||||
}),
|
||||
|
|