2
0

Fancy master password input screen.

[ADDED]     Fancy master password input screen.
[FIXED]     Key size of stored passwords.
[FIXED]     Several UI fixes.
[FIXED]     The counter wasn't correctly added to the cipherKey.
[IMPROVED]  Site style improvements.
[UPDATED]   Site algorithm explanation update.
This commit is contained in:
Maarten Billemont
2012-02-25 15:30:23 +01:00
parent ad9c52896d
commit 039ec9b082
29 changed files with 572 additions and 169 deletions

View File

@@ -15,6 +15,7 @@ cd "${0%/*}/../MasterPassword/Resources"
for size in "${!icons[@]}"; do
file=${icons[size]}
[[ iTunesArtwork.png -nt $file ]] || continue
emit "$file ($size px)" --
convert "iTunesArtwork.png" -resize "${size}x${size}" "$file"
@@ -24,8 +25,9 @@ done
echo
emit "Converting @2x artwork"
for file in ./{,Guide/}*@2x.png; do
for file in ./{,Guide,Lock,Background}/*@2x.png; do
inArray "${file##*/}" "${icons[@]}" && continue
[[ $file -nt ${file/@2x} ]] || continue
emit "${file/@2x}" --
convert "$file" -filter box -resize 50% -unsharp 0x1 "${file/@2x}"