Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dicson
gajim
Commits
5a2a83a3
Commit
5a2a83a3
authored
Jan 23, 2017
by
Philipp Hörist
Browse files
Update available features on windows
On Windows we can now save account passwords in the Windows Credential Vault
parent
ca3b5eee
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/features_window.py
View file @
5a2a83a3
...
...
@@ -69,7 +69,7 @@ class FeaturesWindow:
_
(
'Password encryption'
):
(
self
.
some_keyring_available
,
_
(
'Passwords can be stored securely and not just in plaintext.'
),
_
(
'Requires libsecret and a provider (such as GNOME Keyring and KSecretService).'
),
_
(
'
Feature not available under Windows
.'
)),
_
(
'
On Windows the Windows Credential Vault is used
.'
)),
_
(
'Spell Checker'
):
(
self
.
speller_available
,
_
(
'Spellchecking of composed messages.'
),
_
(
'Requires libgtkspell.'
),
...
...
@@ -183,7 +183,7 @@ class FeaturesWindow:
def
some_keyring_available
(
self
):
if
os
.
name
==
'nt'
:
return
Fals
e
return
Tru
e
try
:
gi
.
require_version
(
'Secret'
,
'1'
)
from
gi.repository
import
Secret
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment