gtk2passwordapp 2.6.0 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/gtk2passwordapp/appconfig.rb +3 -3
- metadata +6 -6
@@ -36,7 +36,7 @@ module Configuration
|
|
36
36
|
shorten_b = {:width_request= => entry - spin - check - 4*padding, :visibility= => false}
|
37
37
|
go_width = {:width_request= => go}
|
38
38
|
check_width = {:width_request= => check, :active= => true}
|
39
|
-
spin_width = {:width_request= => spin, :set_range => [3,
|
39
|
+
spin_width = {:width_request= => spin, :set_range => [3,100]}
|
40
40
|
clicked = 'clicked'
|
41
41
|
|
42
42
|
PARAMETERS[:Account_Label] = ['Account:',label_width]
|
@@ -123,7 +123,7 @@ module Configuration
|
|
123
123
|
COMMAND_LINE_MSG2 = "Warning: selected passwords will be shown.\nEnter Account pattern:"
|
124
124
|
end
|
125
125
|
|
126
|
-
# Set OTP to true if you're going to use otpr (search for it in rubygems.org)
|
126
|
+
# Set OTP to true if you're going to use otpr, version 1 (search for it in rubygems.org)
|
127
127
|
OTP = false
|
128
128
|
|
129
129
|
# arguments for otpr
|
@@ -178,7 +178,7 @@ end
|
|
178
178
|
if password = Gtk2AppLib::DIALOGS.entry( prompt, {:TITLE=>title, :Entry => [{:visibility= => false},'activate']} ) then
|
179
179
|
password.strip!
|
180
180
|
if OTP then
|
181
|
-
if password.length ==
|
181
|
+
if password.length == 7 then
|
182
182
|
# the user sent the pin
|
183
183
|
password = Gtk2Password.get_password_from_pad(password)
|
184
184
|
# You might want to back up your otp here
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gtk2passwordapp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.7.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-04-
|
12
|
+
date: 2013-04-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: crypt-tea
|
16
|
-
requirement: &
|
16
|
+
requirement: &8819400 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - =
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 1.3.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *8819400
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: gtk2applib
|
27
|
-
requirement: &
|
27
|
+
requirement: &8818880 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: '15.3'
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *8818880
|
36
36
|
description: ! 'A Ruby-Gnome password manager.
|
37
37
|
|
38
38
|
Uses crypt-tea''s Tiny Encryption Algorithm to encrypt the datafile.
|