Skip to content

Commit

Permalink
Bump version and changelog for 1.55 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bonsaiviking committed Aug 31, 2021
1 parent ea92c1e commit 29033a2
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 4 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,36 @@

## Npcap 1.55 [2021-08-31]

* Npcap installer can now recognize NetCfg status codes indicating that a
reboot is required (0x0004a020, `NETCFG_S_REBOOT`), and will prompt the user
to reboot. In silent mode, the installer will return code 3010 (0x0bc2,
`ERROR_SUCCESS_REBOOT_REQUIRED`) to indicate this result. Fixes [#224](http://issues.npcap.org/224).

* Npcap installer's silent mode now offers better control over when to remove
and reinstall an existing Npcap installation. Documentation has been updated
for the new installation options `/require_version`, `/require_features`, and
`/force` and will be published with the new Npcap SDK 1.11. Fixes [#523](http://issues.npcap.org/523).

* Fixed an installation failure (0xe0000247) on Windows 8.1/Server 2012 R2 and
earlier systems which have not updated root certificates. The root certificates
are now installed to the Roots trust store. Fixes [#233](http://issues.npcap.org/233).

* Fixed an issue since Npcap 1.30 where broadcast and subnet masks for adapters
returned by `pcap_findalldevs()` were in host byte order, displaying values
like "0.240.255.255". Fixes [#525](http://issues.npcap.org/525).

* Added specific bad-value checks for issues originating in other drivers which
may be incorrectly attributed to Npcap. These checks, in combination with
additional `const` qualifiers, should serve as assurance that Npcap is not
modifying traffic during capture and cannot be responsible for such crashes.

* Powershell commands launched by the installer are now run with the
`-NoProfile` option. Fixes [#529](http://issues.npcap.org/529).

* Npcap SDK minor change to add const qualifiers to parameters to several Packet.dll functions.

* Npcap installer now uses Unicode internally. This may result in mixed-encoding install.log files.

## Npcap 1.50 [2021-06-22]

* Fixed [#513](http://issues.npcap.org/513) which prevented Npcap 1.40 from installing.
Expand Down
8 changes: 4 additions & 4 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,13 +99,13 @@
!define /**/ WINPCAP_MINOR 1
/* WINPCAP_REV should be less than 256 to fit in UCHAR */
#define /*
!define /**/ WINPCAP_REV 50
!define /**/ WINPCAP_REV 55
#define /*
!define /**/ WINPCAP_BUILD 622
!define /**/ WINPCAP_BUILD 828
#define /*
!define /**/ WINPCAP_VER_STRING "1.50"
!define /**/ WINPCAP_VER_STRING "1.55"
#define /*
!define /**/ NPCAP_SDK_VERSION "1.10"
!define /**/ NPCAP_SDK_VERSION "1.11"

#define WINPCAP_WPCAP_STRING_VERSION WINPCAP_VER_STRING

Expand Down

0 comments on commit 29033a2

Please sign in to comment.