diff --git a/app.py b/app.py index a4d9a61..3bb415f 100644 --- a/app.py +++ b/app.py @@ -404,7 +404,7 @@ def __init__(self, myapp): # self.input_label.grid(row=1, column=0, padx=(150, 0), pady=(0, 40)) # Version Information - self.version_label = tk.Label(self.about_frame, text='Version: 1.0.4', bg='grey', fg='white', font=('Calibri', 12)) + self.version_label = tk.Label(self.about_frame, text='Version: 1.0.5', bg='grey', fg='white', font=('Calibri', 12)) self.version_label.grid(row=1, column=0, padx=(150, 0), pady=(0, 40)) self.version_label.bind('', lambda e: self.open_url('https://github.com/PeanutTheAdmin/IP-Analyzer-Tool')) self.version_label_tooltip = Hovertip(self.version_label, 'Github Link: https://github.com/PeanutTheAdmin/IP-Analyzer-Tool') diff --git a/changelog.txt b/changelog.txt index a97cccc..06f91df 100644 --- a/changelog.txt +++ b/changelog.txt @@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - Removed things go here. +## [1.0.5] - 2022-11-15 +### Changed +- Fixed an issue in the function filter_data of virustotal_analyzer when no network is found it returns N/A. + ## [1.0.4] - 2022-11-15 ### Changed - Fixed an issue in the function get_tags of alienvault_analyzer when no tags are found. diff --git a/version.rc b/version.rc index de3b409..c51d850 100644 --- a/version.rc +++ b/version.rc @@ -2,8 +2,8 @@ VSVersionInfo( ffi=FixedFileInfo( # filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4) # Set not needed items to zero 0. - filevers=(1, 0, 4, 0), - prodvers=(1, 0, 4, 0), + filevers=(1, 0, 5, 0), + prodvers=(1, 0, 5, 0), # Contains a bitmask that specifies the valid bits 'flags'r mask=0x17, # Contains a bitmask that specifies the Boolean attributes of the file. @@ -27,12 +27,12 @@ VSVersionInfo( u'040904b0', [StringStruct(u'CompanyName', u''), StringStruct(u'FileDescription', u'IP Analyzer Tool'), - StringStruct(u'FileVersion', u'1, 0, 4, 0'), + StringStruct(u'FileVersion', u'1, 0, 5, 0'), StringStruct(u'InternalName', u'IP Analyzer Tool.exe'), StringStruct(u'LegalCopyright', u''), StringStruct(u'OriginalFilename', u'IP Analyzer Tool.exe'), StringStruct(u'ProductName', u'IP Analyzer Tool'), - StringStruct(u'ProductVersion', u'1, 0, 4, 0'), + StringStruct(u'ProductVersion', u'1, 0, 5, 0'), StringStruct(u'CompanyShortName', u''), StringStruct(u'Official Build', u'1')]) ]),