Skip to content

Commit

Permalink
Merge pull request #31 from LimberDuck/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
damian-krawczyk authored Feb 20, 2025
2 parents e351b53 + 212c0a6 commit acec96d
Show file tree
Hide file tree
Showing 16 changed files with 2,447 additions and 1,237 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tools
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ test_files
_build
.vscode
_build
*.egg-info
*.egg-info
.DS_Store
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,29 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [0.7.3] - 2025-02-20

### Changed

- code formatted with [black](https://black.readthedocs.io)
- requirements update
- from:
- chardet>=4.0.0
- imageio>=2.9.0
- nessus-file-reader>=0.4.1
- PyQt5>=5.15.4
- XlsxWriter>=3.0.1
- to:
- chardet>=5.2.0
- imageio>=2.37.0
- nessus-file-reader>=0.4.3
- PyQt5>=5.15.11
- XlsxWriter>=3.2.2

- tests for python
- added: 3.10, 3.11, 3.12, 3.13
- removed: 3.7, 3.8

## [0.7.2] - 2022-05-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ decrease our workload and focus on data analysis.

## Documentation

Visit https://nessus-file-analyzer.readthedocs.io to find out more.
Visit https://limberduck.org/en/latest/tools/nessus-file-analyzer/ or https://nessus-file-analyzer.readthedocs.io to find out more.

## Installation

Expand Down
35 changes: 25 additions & 10 deletions nessus_file_analyzer/__about__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
u"""
"""
nessus file analyzer by LimberDuck (pronounced *ˈlɪm.bɚ dʌk*) is a GUI
tool which enables you to parse multiple nessus files containing the results
of scans performed by using Nessus by (C) Tenable, Inc. and exports parsed
Expand All @@ -20,22 +20,37 @@
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""

import datetime

__all__ = [
"__title__", "__icon__", "__summary__", "__uri__", "__version__", "__release_date__", "__author__",
"__email__", "__license_name__", "__license_link__", "__copyright__"
"__title__",
"__icon__",
"__summary__",
"__uri__",
"__version__",
"__release_date__",
"__author__",
"__email__",
"__license_name__",
"__license_link__",
"__copyright__",
]

__title__ = "nessus file analyzer by LimberDuck"
__package_name__ = "nessus-file-analyzer"
__icon__ = "LimberDuck-nessus-file-analyzer.ico"
__summary__ = "nessus file analyzer by LimberDuck is a GUI tool which enables you to parse nessus scan files from " \
"Nessus and Tenable.SC by (C) Tenable, Inc. and exports results to a Microsoft Excel Workbook for " \
"effortless analysis."
__summary__ = (
"nessus file analyzer by LimberDuck is a GUI tool which enables you to parse nessus scan files from "
"Nessus and Tenable.SC by (C) Tenable, Inc. and exports results to a Microsoft Excel Workbook for "
"effortless analysis."
)
__uri__ = "https://limberduck.org"
__version__ = "0.7.2"
__release_date__ = "2022.05.13"
__author__ = u"Damian Krawczyk"
__version__ = "0.7.3"
__release_date__ = "2025.02.20"
__author__ = "Damian Krawczyk"
__email__ = "damian.krawczyk@limberduck.org"
__license_name__ = "GNU GPLv3"
__license_link__ = "https://www.gnu.org/licenses/gpl-3.0.en.html"
__copyright__ = u"\N{COPYRIGHT SIGN} 2019-2022 by %s" % __author__
__copyright__ = "\N{COPYRIGHT SIGN} 2019-{} by {}".format(
datetime.datetime.now().year, __author__
)
26 changes: 22 additions & 4 deletions nessus_file_analyzer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,29 @@
from .__about__ import (
__title__, __icon__, __summary__, __uri__, __version__, __release_date__, __author__,
__email__, __license_name__, __license_link__, __copyright__
__title__,
__icon__,
__summary__,
__uri__,
__version__,
__release_date__,
__author__,
__email__,
__license_name__,
__license_link__,
__copyright__,
)

__all__ = [
"__title__", "__icon__", "__summary__", "__uri__", "__version__", "__release_date__", "__author__",
"__email__", "__license_name__", "__license_link__", "__copyright__"
"__title__",
"__icon__",
"__summary__",
"__uri__",
"__version__",
"__release_date__",
"__author__",
"__email__",
"__license_name__",
"__license_link__",
"__copyright__",
]

from .dialogs.about import About
Expand Down
4 changes: 2 additions & 2 deletions nessus_file_analyzer/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
u"""
"""
nessus file analyzer by LimberDuck (pronounced *ˈlɪm.bɚ dʌk*) is a GUI
tool which enables you to parse multiple nessus files containing the results
of scans performed by using Nessus by (C) Tenable, Inc. and exports parsed
Expand Down Expand Up @@ -29,6 +29,6 @@ def main():
app.main()


if __name__ == '__main__':
if __name__ == "__main__":

main()
2 changes: 1 addition & 1 deletion nessus_file_analyzer/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.2"
__version__ = "0.7.3"
Loading

0 comments on commit acec96d

Please sign in to comment.