Skip to content

Commit 11bdebe

Browse files
v0.12.1
1 parent 9a8697f commit 11bdebe

6 files changed

Lines changed: 35 additions & 24 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ This document records all notable changes to [nessus file analyzer (NFA) by Limb
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.1] - 2026-01-19
9+
10+
### Changed
11+
12+
- Requirements update
13+
- from:
14+
- nfa-plugin-software-enumeration>=0.1.1
15+
- to:
16+
- nfa-plugin-software-enumeration>=0.1.2
17+
- removed:
18+
- imageio>=2.37.0
19+
820
## [0.12.0] - 2026-01-18
921

1022
### Added

nessus_file_analyzer/__about__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
"effortless analysis."
4646
)
4747
__uri__ = "https://limberduck.org"
48-
__version__ = "0.12.0"
49-
__release_date__ = "2026.01.18"
48+
__version__ = "0.12.1"
49+
__release_date__ = "2026.01.19"
5050
__author__ = "Damian Krawczyk"
5151
__email__ = "damian.krawczyk@limberduck.org"
5252
__license_name__ = "GNU GPLv3"

nessus_file_analyzer/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.12.0"
1+
__version__ = "0.12.1"

nessus_file_analyzer/utilities.py

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"""
2222

2323
import base64
24-
import imageio
24+
# import imageio
2525
import os
2626
import chardet
2727
import csv
@@ -44,22 +44,22 @@ def file_to_base64(filename):
4444
return encoded_string
4545

4646

47-
def png_to_ico(filename):
48-
"""
49-
Function converts given png file into ico.
50-
:param filename: png file name
51-
:return: ico file name
52-
"""
53-
filename_without_extension = os.path.splitext(filename)[0]
54-
target_file_name = filename_without_extension + ".ico"
55-
img = imageio.imread(filename)
56-
imageio.imwrite(target_file_name, img)
47+
# def png_to_ico(filename):
48+
# """
49+
# Function converts given png file into ico.
50+
# :param filename: png file name
51+
# :return: ico file name
52+
# """
53+
# filename_without_extension = os.path.splitext(filename)[0]
54+
# target_file_name = filename_without_extension + ".ico"
55+
# img = imageio.imread(filename)
56+
# imageio.imwrite(target_file_name, img)
5757

58-
# img = Image.open(filename)
59-
# icon_sizes = [(16, 16), (32, 32), (48, 48), (64, 64)]
60-
# img.save(target_file_name, sizes=icon_sizes)
58+
# # img = Image.open(filename)
59+
# # icon_sizes = [(16, 16), (32, 32), (48, 48), (64, 64)]
60+
# # img.save(target_file_name, sizes=icon_sizes)
6161

62-
return target_file_name
62+
# return target_file_name
6363

6464

6565
def base64_to_ico(ico_in_base64, filename):

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
chardet>=5.2.0
2-
imageio>=2.37.0
32
nessus-file-reader>=0.7.0
4-
nfa-plugin-software-enumeration>=0.1.1
3+
nfa-plugin-software-enumeration>=0.1.2
54
PyQt5>=5.15.11
65
XlsxWriter>=3.2.5
76
packaging>=25.0

version.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
VSVersionInfo(
22
ffi=FixedFileInfo(
3-
filevers=(0, 12, 0, 0),
4-
prodvers=(0, 12, 0, 0),
3+
filevers=(0, 12, 1, 0),
4+
prodvers=(0, 12, 1, 0),
55
mask=0x3f,
66
flags=0x0,
77
OS=0x40004,
@@ -16,12 +16,12 @@ VSVersionInfo(
1616
u'040904B0',
1717
[StringStruct(u'CompanyName', u'LimberDuck'),
1818
StringStruct(u'FileDescription', u'nessus file analyzer (NFA) by LimberDuck. Visit https://limberduck.org'),
19-
StringStruct(u'FileVersion', u'0.12.0.0'),
19+
StringStruct(u'FileVersion', u'0.12.1.0'),
2020
StringStruct(u'InternalName', u'nessus-file-analyzer'),
2121
StringStruct(u'LegalCopyright', u'\xa9 Damian Krawczyk.'),
2222
StringStruct(u'OriginalFilename', u'LimberDuck NFA.exe'),
2323
StringStruct(u'ProductName', u'nessus file analyzer (NFA)'),
24-
StringStruct(u'ProductVersion', u'0.12.0.0')])
24+
StringStruct(u'ProductVersion', u'0.12.1.0')])
2525
]),
2626
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
2727
]

0 commit comments

Comments
 (0)