Commit 6786599 1 parent e1f5c42 commit 6786599 Copy full SHA for 6786599
File tree 8 files changed +25
-7
lines changed
8 files changed +25
-7
lines changed Original file line number Diff line number Diff line change 6
6
7
7
# enum34 needs to be uninstalled on python3.7 in order to make pyinstaller work
8
8
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' ,
13
10
'pyinstaller --onefile fp_files_diff.py -y' ]
14
11
15
12
for s_command in ls_commands :
Original file line number Diff line number Diff line change
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
+
1
8
import argparse
2
9
from lib_fingerprint_files import FingerPrintFiles
3
10
from lib_fingerprint_registry import FingerPrintRegistry
Original file line number Diff line number Diff line change
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
+
1
8
import argparse
2
9
from lib_diff_files import FileDiff
3
10
from lib_diff_registry import RegistryDiff
Original file line number Diff line number Diff line change
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
+
1
7
import argparse
2
8
from lib_filter_procmon import ProcmonDiff
3
9
from lib_helper_functions import *
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ def main():
78
78
79
79
lib_helper_functions .config_console_logger ()
80
80
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 ) )
82
82
83
83
check_fp_files_dir ()
84
84
check_fp_result_filename ()
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ def __init__(self):
7
7
self .logfile_fullpath :str = ''
8
8
self .hash_files :bool = True
9
9
self .multiprocessing :bool = True
10
+ self .version :str = '2.0.0'
10
11
11
12
12
13
fp_files_conf = FPFilesConf ()
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ def main():
49
49
"""
50
50
51
51
lib_helper_functions .config_console_logger ()
52
- logger .info ('create file fingerprint diff' )
52
+ logger .info ('create file fingerprint diff {}' . format ( conf . version ) )
53
53
54
54
conf .fp1_path = check_fp_file (f_input_file = conf .fp1_path , file_number = 1 )
55
55
conf .fp2_path = check_fp_file (f_input_file = conf .fp2_path , file_number = 2 )
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ def __init__(self):
5
5
self .fp_result_filename :str = ''
6
6
self .interactive :bool = True
7
7
self .logfile_fullpath :str = ''
8
-
8
+ self . version : str = '2.0.0'
9
9
10
10
fp_files_diff_conf = FPFilesDiffConf ()
You can’t perform that action at this time.
0 commit comments