Skip to content

Commit

Permalink
cleanups; bump gnome version to 3.26
Browse files Browse the repository at this point in the history
  • Loading branch information
thilomaurer committed Mar 3, 2018
1 parent 6864f24 commit fc9a8a7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"shell-version": ["3.10","3.12","3.14","3.16","3.18","3.20","3.22","3.24"],
"shell-version": ["3.10","3.12","3.14","3.16","3.18","3.20","3.22","3.24","3.26"],
"uuid": "[email protected]",
"name": "Password Calculator",
"description": "This extension calculates strong passwords for each alias from your single secret. No need to remember dozens of passwords any longer. No need for a password manager any longer. Full freedom in choosing aliases and secret, e.g. alias: \"[email protected]#2014\", secret: \"saFe⚿in漢字\". Recent aliases are kept in a easily accessible drop-down. You may choose between HMAC_SHA1 and SHA1. The formula is as simple as \"[secret][alias]\" → SHA1 → BASE64 ",
Expand Down
8 changes: 1 addition & 7 deletions prefs.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Password Calculator extension for GNOME Shell preferences
* - Creates a widget to set the preferences of the pwcalc extension
*
* Copyright (C) 2014
* Copyright (C) 2014-2018
* Thilo Maurer <[email protected]>
*
* This file is part of gnome-shell-extension-pwcalc.
Expand Down Expand Up @@ -330,13 +330,7 @@ function buildPrefsWidget() {
var string2combo=function(objectkey,settingskey) {
var s=self.Builder.get_object(objectkey);
s.active_id=getString(settingskey);
/*
s.connect("notify::active_id",function() {
setString(settingskey,arguments[0].active_id);
});
*/
s.connect("notify::active",function() {
global.log("active",JSON.stringify(arguments));
setString(settingskey,arguments[0].active_id);
});
};
Expand Down
13 changes: 7 additions & 6 deletions stylesheet.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.pwCalc .pwd {
font-family: monospace;
padding-top: 10px;
text-align: center;
font-size: 127%;
font-family: monospace;
padding-top: 10px;
text-align: center;
font-size: 127%;
}

.pwCalcSuggestion {
Expand All @@ -23,8 +23,8 @@
}

.pwCalc .heading {
text-align: center;
padding: 4px;
text-align: center;
padding: 4px;
}

.pwCalc {
Expand All @@ -39,6 +39,7 @@
.pwCalc .last:focus {
border-color:#215d9c;
}

.pwCalc .first:focus {
border-color:#215d9c;
}
Expand Down

0 comments on commit fc9a8a7

Please sign in to comment.