Browse Source

update i2pd to 2.21.1

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

14
i2pd/i2pd.nuspec

@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>i2pd</id>
<version>2.21.0</version>
<version>2.21.1</version>
<packageSourceUrl>https://github.com/r4sas/chocolatey-packages/tree/master/i2pd/</packageSourceUrl>
<owners>r4sas</owners>
<title>I2P Daemon</title>
@ -103,15 +103,9 @@ License @@ -103,15 +103,9 @@ 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. Use EdDSA, x25519 and SipHash from openssl 1.1.1 if available
2. NTCP2 ipv6 incoming connections
3. Bandwidth classes 'P' and 'X' without 'O'
4. Support android api > 26
5. Update own RouterInfo if no SSU
6. Fixed NTCP address disappears if NTCP2 enabled
7. Show total number of destination's outgoing tags in the web console</releaseNotes>
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>
</metadata>
<files>
<file src="tools\**" target="tools" />

8
i2pd/tools/ChocolateyInstall.ps1

@ -1,11 +1,11 @@ @@ -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.0/i2pd_2.21.0_win32_mingw.zip'
$checksum = 'C2BD73CDB57D8522DECAA9BADB0F00184DD20031EC86B539D034E51AD5C0434B'
$url = 'https://github.com/PurpleI2P/i2pd/releases/download/2.21.1/i2pd_2.21.1_win32_mingw.zip'
$checksum = 'DCEFCFF8B3F3CD8351CE5C7C07729B02D531533A9B02304113E0A8CBDADA28AD'
$checksumType = 'sha256'
$url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.21.0/i2pd_2.21.0_win64_mingw.zip'
$checksum64 = 'F34ED8DD22C3E4731E66752A9DA6E73F090B58ABB66F44F875BC6638E463FEA9'
$url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.21.1/i2pd_2.21.1_win64_mingw.zip'
$checksum64 = '7A12AB280B6E46E9E5A740CE5FD6062F7D244396DF4AB4FDA99E3D54EF38A035'
$checksumType64 = 'sha256'
Install-ChocolateyZipPackage -packageName "$packagename" `

Loading…
Cancel
Save