Skip to content

Commit

Permalink
Version 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
PeanutTheAdmin committed Nov 29, 2022
1 parent 89afd23 commit 86b6f97
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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('<Button-1>', 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')
Expand Down
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions version.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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')])
]),
Expand Down

0 comments on commit 86b6f97

Please sign in to comment.