Skip to content

Commit 6786599

Browse files
committed
V2.0.0 Pre-Release
py_files.py py_files_diff.py other old functions are broken
1 parent e1f5c42 commit 6786599

8 files changed

+25
-7
lines changed

build.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66

77
# enum34 needs to be uninstalled on python3.7 in order to make pyinstaller work
88

9-
ls_commands = ['pyinstaller --onefile fingerprint.py -y',
10-
'pyinstaller --onefile fingerprint_diff.py -y',
11-
'pyinstaller --onefile fingerprint_filter.py -y',
12-
'pyinstaller --onefile fp_files.py -y',
9+
ls_commands = ['pyinstaller --onefile fp_files.py -y',
1310
'pyinstaller --onefile fp_files_diff.py -y']
1411

1512
for s_command in ls_commands:

fingerprint.py

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
####################################################################################
2+
# DEPRICATED OLD VERSION - WILL BE SPLITTED INTO DIFFERENT FILES, WORK IN PROGRESS #
3+
# THIS FILE IS BROKEN !!! WORK IN PROGRESS #
4+
# --> fp_files.py V2.0.0 (finished) #
5+
# --> fp_reg.py V2.0.0 (TODO) #
6+
####################################################################################
7+
18
import argparse
29
from lib_fingerprint_files import FingerPrintFiles
310
from lib_fingerprint_registry import FingerPrintRegistry

fingerprint_diff.py

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
####################################################################################
2+
# DEPRICATED OLD VERSION - WILL BE SPLITTED INTO DIFFERENT FILES, WORK IN PROGRESS #
3+
# THIS FILE IS BROKEN !!! WORK IN PROGRESS #
4+
# --> fp_files_diff.py V2.0.0 (finished) #
5+
# --> fp_reg_diff.py V2.0.0 (TODO) #
6+
####################################################################################
7+
18
import argparse
29
from lib_diff_files import FileDiff
310
from lib_diff_registry import RegistryDiff

fingerprint_filter.py

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
####################################################################################
2+
# DEPRICATED OLD VERSION - WILL BE SPLITTED INTO DIFFERENT FILES, WORK IN PROGRESS #
3+
# THIS FILE IS BROKEN !!! WORK IN PROGRESS #
4+
# -->fp_procmon_filter.py V2.0.0 (TODO) #
5+
####################################################################################
6+
17
import argparse
28
from lib_filter_procmon import ProcmonDiff
39
from lib_helper_functions import *

fp_files.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def main():
7878

7979
lib_helper_functions.config_console_logger()
8080
lib_helper_functions.inform_if_not_run_as_admin(exit_if_not_admin=conf.exit_if_not_admin, interactive=conf.interactive)
81-
logger.info('create files fingerprint')
81+
logger.info('create files fingerprint {}'.format(conf.version))
8282

8383
check_fp_files_dir()
8484
check_fp_result_filename()

fp_files_conf.py

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ def __init__(self):
77
self.logfile_fullpath:str = ''
88
self.hash_files:bool = True
99
self.multiprocessing:bool = True
10+
self.version:str = '2.0.0'
1011

1112

1213
fp_files_conf = FPFilesConf()

fp_files_diff.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def main():
4949
"""
5050

5151
lib_helper_functions.config_console_logger()
52-
logger.info('create file fingerprint diff')
52+
logger.info('create file fingerprint diff {}'.format(conf.version))
5353

5454
conf.fp1_path = check_fp_file(f_input_file=conf.fp1_path, file_number=1)
5555
conf.fp2_path = check_fp_file(f_input_file=conf.fp2_path, file_number=2)

fp_files_diff_conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ def __init__(self):
55
self.fp_result_filename:str = ''
66
self.interactive:bool = True
77
self.logfile_fullpath:str = ''
8-
8+
self.version:str = '2.0.0'
99

1010
fp_files_diff_conf = FPFilesDiffConf()

0 commit comments

Comments
 (0)