Skip to content

Commit

Permalink
Updated Npcap version string to "0.03", Windows-format string is "0.3…
Browse files Browse the repository at this point in the history
….0.727".
  • Loading branch information
hsluoyz committed Dec 29, 2015
1 parent 83dedc2 commit c58e9b5
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 12 deletions.
4 changes: 2 additions & 2 deletions installer/Deploy.bat
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ signtool sign /f %NPF_CERT_PATH% /p %NPF_SIGN_PK% .\x64\wpcap.dll
"C:\Program Files (x86)\NSIS\makensis.exe" .\NPcap-for-nmap.nsi

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Sign npcap-nmap-0.01.exe
signtool sign /f %NPF_CERT_PATH% /p %NPF_SIGN_PK% .\npcap-nmap-0.01.exe
:: Sign the installer
signtool sign /f %NPF_CERT_PATH% /p %NPF_SIGN_PK% .\npcap-nmap-0.03.exe

pause
4 changes: 2 additions & 2 deletions installer/Deploy_WinPcap.bat
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ signtool sign /f %NPF_CERT_PATH% /p %NPF_SIGN_PK% .\x64\wpcap.dll
"C:\Program Files (x86)\NSIS\makensis.exe" .\NPcap-for-nmap.nsi

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: Sign npcap-nmap-0.01.exe
signtool sign /f %NPF_CERT_PATH% /p %NPF_SIGN_PK% .\npcap-nmap-0.01.exe
:: Sign the installer
signtool sign /f %NPF_CERT_PATH% /p %NPF_SIGN_PK% .\npcap-nmap-0.03.exe

pause
9 changes: 7 additions & 2 deletions installer/NPcap-for-nmap.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
;; Yang Luo
;; Updated to 0.02, July 2015

;; Yang Luo
;; Updated to 0.02, July 2015

SetCompressor /SOLID /FINAL lzma

;--------------------------------
Expand All @@ -37,7 +40,8 @@ SetCompressor /SOLID /FINAL lzma
;General

; The version of Npcap
!define VERSION "0.02"
!define VERSION "0.03"
!define WIN_VERSION "0.3.0.727"

; The name of the installer
Name "Npcap ${VERSION} for Nmap (beta)"
Expand All @@ -62,9 +66,10 @@ Function un.is64bit
System::Call "kernel32::IsWow64Process(i s, *i .r0)"
FunctionEnd

VIProductVersion "0.0.0.1"
VIProductVersion "${WIN_VERSION}"
VIAddVersionKey /LANG=1033 "FileVersion" "${VERSION}"
VIAddVersionKey /LANG=1033 "ProductName" "Npcap"
VIAddVersionKey /LANG=1033 "ProductVersion" "${VERSION}"
VIAddVersionKey /LANG=1033 "FileDescription" "Npcap ${VERSION} for Nmap installer"
VIAddVersionKey /LANG=1033 "LegalCopyright" "Copyright 2015 Insecure.Com LLC, Nmap Project"

Expand Down
14 changes: 8 additions & 6 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,17 @@
// 4.1.0.2001 --> WinPcap 4.1.2 RTM
// 4.1.0.2980 --> WinPcap 4.1.3 RTM
// 4.1.0.3001 --> WinPcap 4.1.3 RTM (NDIS6)
// 0.1.0.710 --> Npcap 0.01 RTM (NDIS6)
// 0.1.0.710 --> Npcap 0.01 beta (NDIS6)
// 0.2.0.718 --> Npcap 0.02 beta
// 0.3.0.727 --> Npcap 0.03 beta

#define WINPCAP_MAJOR 0
#define WINPCAP_MINOR 1
#define WINPCAP_MINOR 3
#define WINPCAP_REV 0
#define WINPCAP_BUILD 710
#define WINPCAP_VER_STRING "0.01"
#define WINPCAP_PACKET9x_STRING_VERSION "0.01"
#define WINPCAP_WPCAP_STRING_VERSION "0.01"
#define WINPCAP_BUILD 727
#define WINPCAP_VER_STRING "0.03"
#define WINPCAP_PACKET9x_STRING_VERSION WINPCAP_VER_STRING
#define WINPCAP_WPCAP_STRING_VERSION WINPCAP_VER_STRING

#define WINPCAP_COMPANY_NAME "Insecure.Com LLC."

Expand Down

0 comments on commit c58e9b5

Please sign in to comment.