gtk2passwordapp 4.2.1 → 4.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1b73326ea801481b2e29d5aa0fba8c17daef743d
4
- data.tar.gz: b91de6d0cfbfe16e3b339ae662fbfa33cef9c6b2
3
+ metadata.gz: 9ad0166a53079b380bceff42dcbef4160f23d271
4
+ data.tar.gz: c739839f3fd6fe2279682bdf6edb4df8d9e13a86
5
5
  SHA512:
6
- metadata.gz: cfa1b91ef9d5941ec50a03509d6b779e85f02fd7dba60f61dc5e90766ad16f01855bcf986c6d162745dfe202120c1642a98f4057c19a1ce9d12736abaef8e71a
7
- data.tar.gz: 7640becea3a4f46a5dad1a8d7f2f1aac04bd47d12e715fac4b1f3412e26de1d8f04c291e3df9990224c53c73b7354b4b23c15b1c7aa5ca065c1f207725d484d1
6
+ metadata.gz: 732a5bb7f3a4351e52e03ad3eedcc4da53c7f2a955f4ebe731053dba4bb9ea33dd5512055694c930e250f597d67d0b4870b714bee61297a0672e3ac7a6a1efc0
7
+ data.tar.gz: e1066e2984540996d59a114cd6d0036a5c25ad793e7baa6f1a82fa95cfb10931383ad2f8f60ea697603f42448e1b90992671e71cea2ad1c381f47d84c094e238
data/README.rdoc CHANGED
@@ -44,11 +44,16 @@ you may need to edit the new config file to match you're previously edited chang
44
44
  Also, double check the requirements to ensure the versions of ruby and gems being used
45
45
  (gtk3app, etc...) are compatible.
46
46
 
47
+ If you use a qrcode to enter your password, and
48
+ the result is a multiline string,
49
+ gtk2passwordapp will assume you want the qgraph-sha256-digest.
50
+ See gtk2passwordapp/gtk2passwordapp.rb's #process_pwd_entries to see how that's done.
51
+
47
52
  == LICENSE:
48
53
 
49
54
  (The MIT License)
50
55
 
51
- Copyright (c) 2014
56
+ Copyright (c) 2017
52
57
 
53
58
  Permission is hereby granted, free of charge, to any person obtaining
54
59
  a copy of this software and associated documentation files (the
data/data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.2.1
1
+ 4.3.0
@@ -30,7 +30,7 @@ Usage:
30
30
  TooOld: 60*60*24*365, # Year
31
31
 
32
32
  # Timeout for qr-code read.
33
- QrcTimeOut: 3,
33
+ QrcTimeOut: 9,
34
34
 
35
35
  # Password Generators
36
36
  Random: 'Random',
@@ -125,17 +125,17 @@ class Gtk2PasswordApp
125
125
  @accounts.names.sort{|a,b|a.upcase<=>b.upcase}.each do |name|
126
126
  account = @accounts.get name
127
127
  pwd, user, updated = account.password, account.username, account.updated
128
- too_old = ((now - updated) > CONFIG[:TooOld])
129
128
  selected = Such::MenuItem.new([name], 'activate') do
130
- color_code selected unless too_old
129
+ color_code selected
131
130
  @combo.set_active @names.index name if @combo
132
131
  copy2clipboard pwd, user
132
+ @program.mini_menu.reorder_child(selected,0)
133
133
  end
134
- if too_old
135
- selected.override_color :normal, @red
136
- elsif @previous.include? name
134
+ if @previous.include? name
137
135
  @current[@previous.index(name)] = selected
138
136
  selected.override_color :normal, @blue
137
+ elsif ((now - updated) > CONFIG[:TooOld])
138
+ selected.override_color :normal, @red
139
139
  end
140
140
  @program.mini_menu.append selected
141
141
  selected.show
@@ -158,7 +158,11 @@ class Gtk2PasswordApp
158
158
  begin
159
159
  pwd1 = entry1.text.strip
160
160
  if pwd1 == '' and pwd = Helpema::ZBar.qrcode(CONFIG[:QrcTimeOut])
161
- pwd1 = pwd
161
+ if pwd.include?("\n")
162
+ pwd1 = BaseConvert::FromTo.new(:hex, :qgraph).convert Digest::SHA256.hexdigest pwd
163
+ else
164
+ pwd1 = pwd
165
+ end
162
166
  end
163
167
  raise 'No password given.' if pwd1 == ''
164
168
  if entry2
@@ -1,3 +1,3 @@
1
1
  module Gtk2passwordapp
2
- VERSION = '4.2.1'
2
+ VERSION = '4.3.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gtk2passwordapp
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.2.1
4
+ version: 4.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - carlosjhr64
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-07 00:00:00.000000000 Z
11
+ date: 2017-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rafini
@@ -96,20 +96,20 @@ dependencies:
96
96
  requirements:
97
97
  - - "~>"
98
98
  - !ruby/object:Gem::Version
99
- version: '0.1'
99
+ version: '0.2'
100
100
  - - ">="
101
101
  - !ruby/object:Gem::Version
102
- version: 0.1.0
102
+ version: 0.2.0
103
103
  type: :runtime
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
107
  - - "~>"
108
108
  - !ruby/object:Gem::Version
109
- version: '0.1'
109
+ version: '0.2'
110
110
  - - ">="
111
111
  - !ruby/object:Gem::Version
112
- version: 0.1.0
112
+ version: 0.2.0
113
113
  - !ruby/object:Gem::Dependency
114
114
  name: base_convert
115
115
  requirement: !ruby/object:Gem::Requirement
@@ -136,20 +136,20 @@ dependencies:
136
136
  requirements:
137
137
  - - "~>"
138
138
  - !ruby/object:Gem::Version
139
- version: '0.1'
139
+ version: '0.2'
140
140
  - - ">="
141
141
  - !ruby/object:Gem::Version
142
- version: 0.1.0
142
+ version: 0.2.0
143
143
  type: :runtime
144
144
  prerelease: false
145
145
  version_requirements: !ruby/object:Gem::Requirement
146
146
  requirements:
147
147
  - - "~>"
148
148
  - !ruby/object:Gem::Version
149
- version: '0.1'
149
+ version: '0.2'
150
150
  - - ">="
151
151
  - !ruby/object:Gem::Version
152
- version: 0.1.0
152
+ version: 0.2.0
153
153
  description: |
154
154
  Ruby-Gnome Password Manager.
155
155