mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-16 22:10:26 +00:00
Updated changelog.
This commit is contained in:
parent
974eba5528
commit
5e6f1d2adf
6 changed files with 10 additions and 0 deletions
|
|
@ -11,6 +11,12 @@ Changes:
|
|||
- build: Ship Microsoft C++ runtime files directly instead
|
||||
of the installer package.
|
||||
|
||||
Features:
|
||||
- build: Support building a binary installer in 64bit Windows
|
||||
systems.
|
||||
- build: The Windows installer is now signed with a local self-signed
|
||||
certificate.
|
||||
|
||||
|
||||
6.7 "Friendship" (released 12.4.2011)
|
||||
|
||||
|
|
|
|||
4
windows/makelccert.bat
Normal file
4
windows/makelccert.bat
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
:: File to generate a code signing certificate for LinkChecker
|
||||
:: Needs makecert.exe and pkv2pfx.exe installed in the PATH
|
||||
makecert -r -pe -n "CN=LinkChecker certificate" -b 01/01/2011 -e 01/01/2021 -eku 1.3.6.1.5.5.7.3.3 -sv linkchecker.pvk linkchecker.cer
|
||||
pvk2pfx -pvk linkchecker.pvk -spc linkchecker.cer -pfx linkchecker.pfx
|
||||
Loading…
Reference in a new issue