dmiller
b6e67f834c
Fix #2854 : crash if Ndiff exits with error status
2024-05-28 19:30:06 +00:00
dmiller
c840e236cb
Ensure UTF-8 encoding used throughout zenmap
2024-04-26 17:25:40 +00:00
dmiller
95b974b101
Merge 7.95 release branch into trunk
2024-04-23 19:34:03 +00:00
dmiller
a566fc1b8d
Update run_tests.py for setuptools build
2024-04-11 21:34:11 +00:00
dmiller
db9a5801d0
Fix check for os.add_dll_directory
2024-04-09 17:34:01 +00:00
dmiller
dbedc5838b
Fixes for Windows Zenmap build
2024-04-01 22:32:49 +00:00
dmiller
17ee0b3362
Update Windows build for Zenmap data files relocation
2024-03-27 16:51:53 +00:00
dmiller
b41175cd6c
Zenmap: keep data files within package
2024-03-27 16:35:29 +00:00
dmiller
60a762c745
macOS: install Zenmap clean each time when building
2024-03-27 16:34:39 +00:00
dmiller
cbd5da1b5d
MSYS2 git package name changed
2024-03-25 15:14:42 +00:00
dmiller
a946c5682d
Transition from setup.py to pyproject.toml
2024-03-21 20:20:00 +00:00
dmiller
ce9a5773c2
Migrate from setup.py to pyproject.toml for Zenmap
2024-03-21 18:20:47 +00:00
nnposter
96dcf4e9ed
Remove various "the the" repeats. Closes #2804
2024-03-16 01:16:34 +00:00
dmiller
f999182d0f
Bump date and reapply header templates
2024-02-28 18:46:45 +00:00
dmiller
c0e172806f
Change Zenmap version syntax to meet pip standards. Fixes #2714
2024-02-27 20:22:43 +00:00
dmiller
a182e963b9
Zenmap bugs go to Github, not dev@nmap.org
2024-01-29 22:29:10 +00:00
dmiller
d4ee92478e
Update calls to gtk.TextBuffer.get_text to include all args. Fixes #2739 . Closes #2740 .
2024-01-29 18:31:37 +00:00
dmiller
19fc89840f
Convert ndiff and zenmap to setuptools. Fixes #2649
2024-01-29 17:09:26 +00:00
dmiller
85f38cb858
Bump version to 7.94SVN post-release
2023-05-20 23:05:18 +00:00
dmiller
72d67cf401
Merge 7.94 release branch
2023-05-20 22:59:41 +00:00
dmiller
5bcf45f3d8
Revert unrelated change in zenmap.conf
2023-05-18 18:48:04 +00:00
dmiller
30a46c0269
Commit some changes to generated files
2023-04-14 17:22:12 +00:00
dmiller
6f6b2de214
Apply new license templates, bump copyright date
2023-04-14 17:11:46 +00:00
dmiller
ca24fb11c1
Fix a couple deprecations
2023-03-21 16:47:20 +00:00
dmiller
851bc83dfb
Fix auth wrapper: args not supported. Add error reporting
2023-03-18 20:26:54 +00:00
dmiller
37ac2f482e
Ensure Zenmap modules are available for calculating deps
2023-03-18 20:26:02 +00:00
dmiller
c0b8bc300f
Remove accidental debugging exit
2023-03-17 17:10:06 +00:00
dmiller
d8f6a8672a
Use correct interpreter and environment for getting Python deps
2023-03-17 16:54:58 +00:00
dmiller
ebb87e0b40
Add needed GtkOSXLaunchScriptFile key
2023-03-17 16:54:07 +00:00
dmiller
ee15013404
Use zenmapGUI.App directly instead of wrapper script when getting dependencies
2023-03-17 16:53:35 +00:00
dmiller
5fd12db129
Remove unneeded use of deprecated imp module
2023-03-17 16:51:38 +00:00
dmiller
3b3a4fa46a
Bundling update for macOS
2023-03-01 22:05:40 +00:00
dmiller
f61773ac9f
Update Windows zenmap build
2023-02-27 18:15:20 +00:00
dmiller
fc73c35f4d
Use a Makefile for Windows build (run from MSYS2-mingw64 shell)
2023-02-09 21:10:06 +00:00
dmiller
9db1818f0f
Updates to zenmap bundling script for Windows
2023-02-09 18:01:07 +00:00
dmiller
26996989ee
Handle vanilla install case apart from py2exe
2023-02-03 23:14:49 +00:00
dmiller
4a41125fbc
Fix DeprecationWarnings about string escapes in regex
2023-02-03 23:12:45 +00:00
dmiller
2d4e45ead8
Ensure config file is closed after save, fixing ResourceWarning
2023-02-03 23:12:44 +00:00
dmiller
2465e56e7d
Fixes for zenmap Windows staging
2023-02-01 21:26:34 +00:00
dmiller
a8dedf7f5f
Fixes for zenmap Windows build
2023-02-01 20:05:27 +00:00
dmiller
3cf5f5e7a1
Update zenmap.pot
2023-01-31 23:06:30 +00:00
dmiller
7162b00788
Un-localize things like 'IPv4', 'PDF', etc.
2023-01-31 23:06:30 +00:00
dmiller
99b121d0a2
Remove an old Python 2 workaround
2023-01-31 23:06:28 +00:00
dmiller
68a5f5d743
Fix encoding for zenmap i18n/l10n
2023-01-31 23:06:27 +00:00
dmiller
d0413baa93
Update Zenmap README. Fixes #2601
2023-01-31 23:06:26 +00:00
dmiller
973b5aacf5
Preliminary Windows bundling for Zenmap and Ndiff
2023-01-20 18:29:54 +00:00
dmiller
87778f7693
Fix Python2-isms in uninstallers. Closes #2580
2022-12-14 22:38:00 +00:00
dmiller
9e4d6f5f5c
Fix encoding issues related to Python 3 upgrade.
...
Python 3 str() is a unicode already, so can't be decoded.
subprocess.Popen needs to be in text mode (universal_newlines is the
oldest compatible kwarg for this) in order to do line-based buffering.
In general, all the filesystem encoding stuff we were doing is done by
Python itself now.
2022-12-07 20:34:07 +00:00
dmiller
24b26317c7
Merge #2088 : Update Zenmap to Python 3 and PyGObject
...
Note: Ndiff build will be broken until subsequent changes are made.
Deprecation warnings will need to be addressed in future changes.
Closes #2088
2022-12-07 20:34:03 +00:00
dmiller
9732e6979e
Merge Nmap 7.93 release branch
2022-09-02 14:38:17 +00:00