Browse Source

update i2pd to 2.21.0

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

14
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.20.0</version> <version>2.21.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>
@ -105,11 +105,13 @@ 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. LICENSE in the root of the project source code.
</description> </description>
<releaseNotes>1. Full implementation of NTCP2 <releaseNotes>1. Use EdDSA, x25519 and SipHash from openssl 1.1.1 if available
2. Provide assets for android 2. NTCP2 ipv6 incoming connections
3. Single apk for arm7 and x86 android builds 3. Bandwidth classes 'P' and 'X' without 'O'
4. Some fix in web console 4. Support android api > 26
5. Don't add address in RouterInfo if transport is disabled in config</releaseNotes> 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>
</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.20.0/i2pd_2.20.0_win32_mingw.zip' $url = 'https://github.com/PurpleI2P/i2pd/releases/download/2.21.0/i2pd_2.21.0_win32_mingw.zip'
$checksum = 'AD9A910A50F42598E7425DF137A0FEDFF929E91F095FC284F055F2E4BB38258A' $checksum = 'C2BD73CDB57D8522DECAA9BADB0F00184DD20031EC86B539D034E51AD5C0434B'
$checksumType = 'sha256' $checksumType = 'sha256'
$url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.20.0/i2pd_2.20.0_win64_mingw.zip' $url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.21.0/i2pd_2.21.0_win64_mingw.zip'
$checksum64 = 'B819B5F2C390E04C6CB4B5619498B5C0B2E948CEB4FE22FBAF3E0DB3A5EBC422' $checksum64 = 'F34ED8DD22C3E4731E66752A9DA6E73F090B58ABB66F44F875BC6638E463FEA9'
$checksumType64 = 'sha256' $checksumType64 = 'sha256'
Install-ChocolateyZipPackage -packageName "$packagename" ` Install-ChocolateyZipPackage -packageName "$packagename" `

Loading…
Cancel
Save