erikg / Revelation
Revelation is a password manager for the GNOME desktop, released under the GNU GPL license. It stores all your accounts and passwords in a single, secure place, and gives you access to it through a user-friendly graphical interface.
| commit 92: | 7de8750f759b |
| parent 91: | a7bf0383412e |
| branch: | default |
| tags: | revelation-0.3.3 |
Changed (Δ112 bytes):
ChangeLog (5 lines added, 1 lines removed)
NEWS (1 lines added, 1 lines removed)
TODO (2 lines added, 3 lines removed)
gnome/revelation.desktop (1 lines added, 1 lines removed)
src/lib/__init__.py (3 lines added, 3 lines removed)
src/lib/data.py (1 lines added, 1 lines removed)
src/lib/datahandler/__init__.py (1 lines added, 1 lines removed)
src/lib/datahandler/base.py (1 lines added, 1 lines removed)
src/lib/datahandler/fpm.py (1 lines added, 1 lines removed)
src/lib/datahandler/gpass.py (1 lines added, 1 lines removed)
src/lib/datahandler/netrc.py (1 lines added, 1 lines removed)
src/lib/datahandler/rvl.py (1 lines added, 1 lines removed)
src/lib/datahandler/xhtml.py (1 lines added, 1 lines removed)
src/lib/dialog.py (1 lines added, 1 lines removed)
src/lib/entry.py (1 lines added, 1 lines removed)
src/lib/io.py (1 lines added, 1 lines removed)
src/lib/misc.py (1 lines added, 1 lines removed)
src/lib/stock.py (1 lines added, 1 lines removed)
src/lib/widget.py (1 lines added, 1 lines removed)
src/revelation (1 lines added, 1 lines removed)
1 |
1 |
Revelation changelog |
2 |
2 |
|
3 |
---------------[ |
|
3 |
---------------[ 2004-08-30 : 0.3.3 ]--------------- |
|
4 |
||
5 |
2004-08-30 Erik Grinaker <erikg@codepoet.no> |
|
6 |
||
7 |
* bumped version number to 0.3.3 |
|
4 |
8 |
|
5 |
9 |
2004-08-29 Erik Grinaker <erikg@codepoet.no> |
6 |
10 |
1 |
|
|
1 |
2004-08-30: Revelation 0.3.3 |
|
2 |
2 |
============================ |
3 |
3 |
|
4 |
4 |
New features: |
1 |
0.3.x: |
|
2 |
- option for autolocking the file after a period of inactivity |
|
3 |
||
4 |
1 |
0.4.x: |
5 |
2 |
- will introduce a gnome 2.6 dependency |
6 |
3 |
- use autotools for installation |
| … | … | @@ -28,6 +25,8 @@ 0.4.x: |
28 |
25 |
- password strength check - build python-crack as part of revelation |
29 |
26 |
- add import/export of PasswordSafe files |
30 |
27 |
- add import/export of GPasMan files |
28 |
- option for autolocking the file after a period of inactivity |
|
29 |
||
31 |
30 |
|
32 |
31 |
0.5.x: |
33 |
32 |
- remove support for version 0 data files |
Up to file-list gnome/revelation.desktop:
1 |
1 |
[Desktop Entry] |
2 |
2 |
Name=Revelation Password Manager |
3 |
3 |
GenericName=Password Manager |
4 |
Version=0.3. |
|
4 |
Version=0.3.3 |
|
5 |
5 |
Comment=Organize and secure your passwords |
6 |
6 |
Exec=revelation |
7 |
7 |
Icon=revelation.png |
Up to file-list src/lib/__init__.py:
1 |
1 |
# |
2 |
# Revelation 0.3. |
|
2 |
# Revelation 0.3.3 - a password manager for GNOME 2 |
|
3 |
3 |
# http://oss.codepoet.no/revelation/ |
4 |
4 |
# $Id$ |
5 |
5 |
# |
27 |
27 |
import datahandler, misc, stock, entry, widget, data, io, dialog, sys |
28 |
28 |
|
29 |
29 |
APPNAME = "Revelation" |
30 |
VERSION = "0.3. |
|
30 |
VERSION = "0.3.3" |
|
31 |
31 |
DATAVERSION = 1 |
32 |
RELNAME = " |
|
32 |
RELNAME = "Colorless green ideas sleep furiously" |
|
33 |
33 |
URL = "http://oss.codepoet.no/revelation/" |
34 |
34 |
AUTHOR = "Erik Grinaker <erikg@codepoet.no>" |
35 |
35 |
COPYRIGHT = "Copyright \302\251 2003-2004 Erik Grinaker" |
Up to file-list src/lib/data.py:
1 |
1 |
# |
2 |
# Revelation 0.3. |
|
2 |
# Revelation 0.3.3 - a password manager for GNOME 2 |
|
3 |
3 |
# http://oss.codepoet.no/revelation/ |
4 |
4 |
# $Id$ |
5 |
5 |
# |
Up to file-list src/lib/datahandler/__init__.py:
1 |
1 |
# |
2 |
# Revelation 0.3. |
|
2 |
# Revelation 0.3.3 - a password manager for GNOME 2 |
|
3 |
3 |
# http://oss.codepoet.no/revelation/ |
4 |
4 |
# $Id$ |
5 |
5 |
# |
Up to file-list src/lib/datahandler/base.py:
1 |
1 |
# |
2 |
# Revelation 0.3. |
|
2 |
# Revelation 0.3.3 - a password manager for GNOME 2 |
|
3 |
3 |
# http://oss.codepoet.no/revelation/ |
4 |
4 |
# $Id$ |
5 |
5 |
# |
Up to file-list src/lib/datahandler/fpm.py:
1 |
1 |
# |
2 |
# Revelation 0.3. |
|
2 |
# Revelation 0.3.3 - a password manager for GNOME 2 |
|
3 |
3 |
# http://oss.codepoet.no/revelation/ |
4 |
4 |
# $Id$ |
5 |
5 |
# |
Up to file-list src/lib/datahandler/gpass.py:
1 |
1 |
# |
2 |
# Revelation 0.3. |
|
2 |
# Revelation 0.3.3 - a password manager for GNOME 2 |
|
3 |
3 |
# http://oss.codepoet.no/revelation/ |
4 |
4 |
# $Id$ |
5 |
5 |
# |
Up to file-list src/lib/datahandler/netrc.py:
1 |
1 |
# |
2 |
# Revelation 0.3. |
|
2 |
# Revelation 0.3.3 - a password manager for GNOME 2 |
|
3 |
3 |
# http://oss.codepoet.no/revelation/ |
4 |
4 |
# $Id$ |
5 |
5 |
# |
Up to file-list src/lib/datahandler/rvl.py:
1 |
1 |
# |
2 |
# Revelation 0.3. |
|
2 |
# Revelation 0.3.3 - a password manager for GNOME 2 |
|
3 |
3 |
# http://oss.codepoet.no/revelation/ |
4 |
4 |
# $Id$ |
5 |
5 |
# |
Up to file-list src/lib/datahandler/xhtml.py:
1 |
1 |
# |
2 |
# Revelation 0.3. |
|
2 |
# Revelation 0.3.3 - a password manager for GNOME 2 |
|
3 |
3 |
# http://oss.codepoet.no/revelation/ |
4 |
4 |
# $Id$ |
5 |
5 |
# |
Up to file-list src/lib/dialog.py:
1 |
1 |
# |
2 |
# Revelation 0.3. |
|
2 |
# Revelation 0.3.3 - a password manager for GNOME 2 |
|
3 |
3 |
# http://oss.codepoet.no/revelation/ |
4 |
4 |
# $Id$ |
5 |
5 |
# |
Up to file-list src/lib/entry.py:
1 |
1 |
# |
2 |
# Revelation 0.3. |
|
2 |
# Revelation 0.3.3 - a password manager for GNOME 2 |
|
3 |
3 |
# http://oss.codepoet.no/revelation/ |
4 |
4 |
# $Id$ |
5 |
5 |
# |
Up to file-list src/lib/io.py:
1 |
1 |
# |
2 |
# Revelation 0.3. |
|
2 |
# Revelation 0.3.3 - a password manager for GNOME 2 |
|
3 |
3 |
# http://oss.codepoet.no/revelation/ |
4 |
4 |
# $Id$ |
5 |
5 |
# |
Up to file-list src/lib/misc.py:
1 |
1 |
# |
2 |
# Revelation 0.3. |
|
2 |
# Revelation 0.3.3 - a password manager for GNOME 2 |
|
3 |
3 |
# http://oss.codepoet.no/revelation/ |
4 |
4 |
# $Id$ |
5 |
5 |
# |
Up to file-list src/lib/stock.py:
1 |
1 |
# |
2 |
# Revelation 0.3. |
|
2 |
# Revelation 0.3.3 - a password manager for GNOME 2 |
|
3 |
3 |
# http://oss.codepoet.no/revelation/ |
4 |
4 |
# $Id$ |
5 |
5 |
# |
