1
0
mirror of https://github.com/r4sas/chocolatey-packages synced 2025-01-20 03:40:08 +00:00

update i2pd to 2.22.0

This commit is contained in:
R4SAS 2018-11-09 06:27:29 +03:00
parent 5186fc08d2
commit ab96926660
2 changed files with 9 additions and 7 deletions

View File

@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>i2pd</id>
<version>2.21.1</version>
<version>2.22.0</version>
<packageSourceUrl>https://github.com/r4sas/chocolatey-packages/tree/master/i2pd/</packageSourceUrl>
<owners>r4sas</owners>
<title>I2P Daemon</title>
@ -104,8 +104,10 @@ License
This project is licensed under the BSD 3-clause license, which can be found in the file
LICENSE in the root of the project source code.</description>
<releaseNotes>1. Handle I2NP messages longer than 32K
2. cost=13 for unpublished NTCP2 address</releaseNotes>
<releaseNotes>1. Fetch own RouterInfo upon SessionRequest for NTCP2
2. Fixed NTCP2 termination send
3. Multiple tunnel config files from tunnels.d folder
4. Faster XOR between AES blocks for non AVX capable CPUs</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />

View File

@ -1,11 +1,11 @@
$ErrorActionPreference = 'Stop'; # stop on all errors
$packagename = 'i2pd'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://github.com/PurpleI2P/i2pd/releases/download/2.21.1/i2pd_2.21.1_win32_mingw.zip'
$checksum = 'DCEFCFF8B3F3CD8351CE5C7C07729B02D531533A9B02304113E0A8CBDADA28AD'
$url = 'https://github.com/PurpleI2P/i2pd/releases/download/2.22.0/i2pd_2.22.0_win32_mingw.zip'
$checksum = '81B71FED1DD99778443A48EA2C8F6DD9F0F07FB3BE25DB33E873B1854A8B1662'
$checksumType = 'sha256'
$url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.21.1/i2pd_2.21.1_win64_mingw.zip'
$checksum64 = '7A12AB280B6E46E9E5A740CE5FD6062F7D244396DF4AB4FDA99E3D54EF38A035'
$url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.22.0/i2pd_2.22.0_win64_mingw.zip'
$checksum64 = '0131A1B97E8602184C6C000B391DFB13CD0C2DB2AB17FEA832BE829CEF9EBF3F'
$checksumType64 = 'sha256'
Install-ChocolateyZipPackage -packageName "$packagename" `