RELEASE: 1.00b
This commit is contained in:
parent
a141b51529
commit
44bd8a54dd
|
@ -37,7 +37,9 @@ md5_table TEXT PRIMARY KEY, (hash value of the table schema)
|
||||||
fp_list TEXT, (CVS list of fingerprint file names)
|
fp_list TEXT, (CVS list of fingerprint file names)
|
||||||
fp_count INTEGER); (count of the fingerprints)
|
fp_count INTEGER); (count of the fingerprints)
|
||||||
|
|
||||||
|
*
|
||||||
|
* The md5_db is not a primary key, is not unique because it is for each app info
|
||||||
|
*
|
||||||
[ Table: metadata ]
|
[ Table: metadata ]
|
||||||
md5_db TEXT, (hash value of the database schema)
|
md5_db TEXT, (hash value of the database schema)
|
||||||
app_name TEXT, (name of the app)
|
app_name TEXT, (name of the app)
|
||||||
|
|
|
@ -9,8 +9,15 @@
|
||||||
History
|
History
|
||||||
------------
|
------------
|
||||||
|
|
||||||
version 1.0b
|
version 1.00b
|
||||||
|
-NEW: added a new table in the index database that has app details (metadata)
|
||||||
|
-NEW: added documentation for the index database schema
|
||||||
|
-NEW: added documentation for the fingerprint format
|
||||||
|
-NEW: added new functions to query the metadata table
|
||||||
|
-MOD: improved the scanning of the database to be fingerprinted
|
||||||
|
-MOD: improved the compareFingerprintDir, split find fingerprint functions
|
||||||
|
-MOD: improved index creation with commit() and rollback()
|
||||||
|
-FIX: bug fix for the path parsing of the database file
|
||||||
|
|
||||||
version 0.98
|
version 0.98
|
||||||
-new feature: query for md5 hash
|
-new feature: query for md5 hash
|
||||||
|
|
|
@ -57,11 +57,6 @@ class FingerprintDB:
|
||||||
self.metadata['app-ver'] = ""
|
self.metadata['app-ver'] = ""
|
||||||
self.metadata['notes'] = ""
|
self.metadata['notes'] = ""
|
||||||
self.metadata['scan-date'] = ""
|
self.metadata['scan-date'] = ""
|
||||||
# self.db_name = ""
|
|
||||||
# self.app_name = ""
|
|
||||||
# self.app_ver = ""
|
|
||||||
# self.notes = ""
|
|
||||||
# self.scan_date = ""
|
|
||||||
|
|
||||||
#
|
#
|
||||||
def scanDBFile(self, filein):
|
def scanDBFile(self, filein):
|
||||||
|
|
Loading…
Reference in New Issue