Updated changelog.

This commit is contained in:
Bastian Kleineidam 2011-04-22 08:19:35 +02:00
parent 974eba5528
commit 5e6f1d2adf
6 changed files with 10 additions and 0 deletions

View file

@ -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
View 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