RELEASE: 1.00b

This commit is contained in:
JohnE 2016-02-26 20:46:22 -08:00
parent a141b51529
commit 44bd8a54dd
3 changed files with 12 additions and 8 deletions

View File

@ -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_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 ]
md5_db TEXT, (hash value of the database schema)
app_name TEXT, (name of the app)

View File

@ -9,8 +9,15 @@
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
-new feature: query for md5 hash

View File

@ -57,11 +57,6 @@ class FingerprintDB:
self.metadata['app-ver'] = ""
self.metadata['notes'] = ""
self.metadata['scan-date'] = ""
# self.db_name = ""
# self.app_name = ""
# self.app_ver = ""
# self.notes = ""
# self.scan_date = ""
#
def scanDBFile(self, filein):