Skip to content

Commit 6f45891

Browse files
v.0.10.0
1 parent 7ee34a3 commit 6f45891

4 files changed

Lines changed: 31 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,36 @@ 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.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.10.0] - 2025-09-08
9+
10+
### Added
11+
12+
- `File > Open file\-s` - default extension filter set to both Nessus scan file & ZIP Archive (`*.nessus` `*.zip`)
13+
- Generated report has set document properties:
14+
- "title": "Security report",
15+
- "subject": "Vulnerability Assessment results",
16+
- "category": "Report",
17+
- "keywords": "Vulnerabilities, VA, VM, Nessus",
18+
- "comments": "Report generated with nessus file analyzer (NFA) by LimberDuck. Check https://limberduck.org for more details.",
19+
- Pipeline with Build and Release for Windows, macOS and Linux.
20+
21+
### Changed
22+
23+
- Icon file renamed from `LimberDuck-nessus-file-analyzer` to `LimberDuck-NFA`.
24+
- Default target directory changed from *current directory* to *user’s home directory*.
25+
- Fix for app build on macOS.
26+
- Update check directing to GitHub Releases as well.
27+
- `version.rc` file info updated.
28+
829
## [0.9.0] - 2025-09-01
930

1031
### Added
1132

1233
- New options:
1334
- `Help > Check for Update` - will return confirmation if you are using the latest version of NFA.
14-
- `Help > Documentation` - will open NFR documentation at LimberDuck.org.
15-
- `Help > GitHub` - will open NFR GitHub page.
16-
- `Help > Releases` - will open NFR GitHub Releases page.
35+
- `Help > Documentation` - will open NFA documentation at LimberDuck.org.
36+
- `Help > GitHub` - will open NFA GitHub page.
37+
- `Help > Releases` - will open NFA GitHub Releases page.
1738

1839
- Requirements update
1940
- from:

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.9.0"
49-
__release_date__ = "2025.09.01"
48+
__version__ = "0.10.0"
49+
__release_date__ = "2025.09.08"
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.9.0"
1+
__version__ = "0.10.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, 9, 0, 0),
4-
prodvers=(0, 9, 0, 0),
3+
filevers=(0, 10, 0, 0),
4+
prodvers=(0, 10, 0, 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.9.0.0'),
19+
StringStruct(u'FileVersion', u'0.10.0.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.9.0.0')])
24+
StringStruct(u'ProductVersion', u'0.10.0.0')])
2525
]),
2626
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
2727
]

0 commit comments

Comments
 (0)