Browse Source

update i2pd to 2.22.0

master
R4SAS 6 years ago
parent
commit
ab96926660
  1. 8
      i2pd/i2pd.nuspec
  2. 8
      i2pd/tools/ChocolateyInstall.ps1

8
i2pd/i2pd.nuspec

@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> <package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata> <metadata>
<id>i2pd</id> <id>i2pd</id>
<version>2.21.1</version> <version>2.22.0</version>
<packageSourceUrl>https://github.com/r4sas/chocolatey-packages/tree/master/i2pd/</packageSourceUrl> <packageSourceUrl>https://github.com/r4sas/chocolatey-packages/tree/master/i2pd/</packageSourceUrl>
<owners>r4sas</owners> <owners>r4sas</owners>
<title>I2P Daemon</title> <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 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> LICENSE in the root of the project source code.</description>
<releaseNotes>1. Handle I2NP messages longer than 32K <releaseNotes>1. Fetch own RouterInfo upon SessionRequest for NTCP2
2. cost=13 for unpublished NTCP2 address</releaseNotes> 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> </metadata>
<files> <files>
<file src="tools\**" target="tools" /> <file src="tools\**" target="tools" />

8
i2pd/tools/ChocolateyInstall.ps1

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

Loading…
Cancel
Save