diff --git a/docs/README_DEV_INDEX b/docs/README_DEV_INDEX index 1180542..8e3570e 100644 --- a/docs/README_DEV_INDEX +++ b/docs/README_DEV_INDEX @@ -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) diff --git a/docs/RELEASE_NOTES b/docs/RELEASE_NOTES index 9625b9c..b10cc9d 100644 --- a/docs/RELEASE_NOTES +++ b/docs/RELEASE_NOTES @@ -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 diff --git a/libs/fingerprint.py b/libs/fingerprint.py index b4776d8..dd39427 100644 --- a/libs/fingerprint.py +++ b/libs/fingerprint.py @@ -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):