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.

Clone this repository (size: 1.8 MB): HTTPS / SSH
$ hg clone http://oss.codepoet.no/revelation
commit 322: 719b928cba32
parent 321: 82c055d03a36
branch: default
fix incorrect magic string in MIME-type entry
Erik Grinaker / erikg
5 years ago

Changed (Δ469 bytes):

raw changeset »

ChangeLog (8 lines added, 0 lines removed)

NEWS (7 lines added, 0 lines removed)

TODO (2 lines added, 0 lines removed)

data/mime/revelation.xml (1 lines added, 1 lines removed)

src/lib/datahandler/rvl.py (1 lines added, 1 lines removed)

Up to file-list ChangeLog:

1
1
Revelation changelog
2
2
3
---------------[ xxxx-xx-xx : 0.4.5 ]---------------
4
5
2005-08-09  Erik Grinaker <erikg@codepoet.no>
6
7
	* fix incorrect magic string in MIME-type entry
8
9
	* set correct app version in datafile header
10
3
11
---------------[ 2005-08-07 : 0.4.4 ]---------------
4
12
5
13
2005-08-06  Erik Grinaker <erikg@codepoet.no>

Up to file-list NEWS:

1
xxxx-xx-xx: Revelation 0.4.5
2
============================
3
4
Bugfixes:
5
- fix incorrect magic string in MIME-type entry
6
- set correct app version number in datafile header
7
1
8
2005-08-07: Revelation 0.4.4
2
9
============================
3
10

Up to file-list TODO:

@@ -9,6 +9,8 @@ 0.4.x:
9
9
- add binary entropy check to password checker
10
10
- fix drag/drop undo crashes
11
11
- make result label in password checker wrap when text overflows
12
- use icons instead of colors in password entry to indicate strength
13
  (see: epiphany address entry)
12
14
13
15
0.5.x:
14
16
- ensure complete UTF-8 support

Up to file-list data/mime/revelation.xml:

6
6
		<magic>
7
7
			<match type="string" offset="0" value="rvl\0">
8
8
				<match type="string" offset="5" value="\0">
9
					<match type="string" offset="8" value="\0\0\0" />
9
					<match type="string" offset="9" value="\0\0\0" />
10
10
				</match>
11
11
			</match>
12
12
		</magic>

Up to file-list src/lib/datahandler/rvl.py:

@@ -244,7 +244,7 @@ class Revelation(RevelationXML):
244
244
		header = "rvl\x00"		# magic string
245
245
		header += "\x01"		# data version
246
246
		header += "\x00"		# separator
247
		header += "\x00\x04\x03"	# application version TODO
247
		header += "\x00\x04\x05"	# application version TODO
248
248
		header += "\x00\x00\x00"	# separator
249
249
250
250
		return header