forked from blue/squawk
pasword storing options: jammed an alwaysAsk, external lib for password jamming, changelog
This commit is contained in:
parent
95f0d4008a
commit
7ce27d1c11
14 changed files with 728 additions and 18 deletions
|
@ -110,11 +110,11 @@ static const std::deque<QString> messageStateThemeIcons = {"state-offline", "sta
|
|||
enum class AccountPassword {
|
||||
plain,
|
||||
jammed,
|
||||
kwallet,
|
||||
alwaysAsk
|
||||
alwaysAsk,
|
||||
kwallet
|
||||
};
|
||||
Q_ENUM_NS(AccountPassword)
|
||||
static const AccountPassword AccountPasswordHighest = AccountPassword::alwaysAsk;
|
||||
static const AccountPassword AccountPasswordHighest = AccountPassword::kwallet;
|
||||
static const AccountPassword AccountPasswordLowest = AccountPassword::plain;
|
||||
|
||||
}
|
||||
|
|
|
@ -69,8 +69,8 @@ Shared::Global::Global():
|
|||
accountPassword({
|
||||
tr("Plain"),
|
||||
tr("Jammed"),
|
||||
tr("KWallet"),
|
||||
tr("Always Ask")
|
||||
tr("Always Ask"),
|
||||
tr("KWallet")
|
||||
})
|
||||
{
|
||||
if (instance != 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue