1
0
mirror of https://github.com/r4sas/chocolatey-packages synced 2025-01-20 11:50:04 +00:00

update i2pd to 2.21.0

This commit is contained in:
R4SAS 2018-10-05 02:45:06 +03:00
parent 0c2907cb1a
commit 3978bdee58
2 changed files with 12 additions and 10 deletions

View File

@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>i2pd</id>
<version>2.20.0</version>
<version>2.21.0</version>
<packageSourceUrl>https://github.com/r4sas/chocolatey-packages/tree/master/i2pd/</packageSourceUrl>
<owners>r4sas</owners>
<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
LICENSE in the root of the project source code.
</description>
<releaseNotes>1. Full implementation of NTCP2
2. Provide assets for android
3. Single apk for arm7 and x86 android builds
4. Some fix in web console
5. Don't add address in RouterInfo if transport is disabled in config</releaseNotes>
<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>
</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.20.0/i2pd_2.20.0_win32_mingw.zip'
$checksum = 'AD9A910A50F42598E7425DF137A0FEDFF929E91F095FC284F055F2E4BB38258A'
$url = 'https://github.com/PurpleI2P/i2pd/releases/download/2.21.0/i2pd_2.21.0_win32_mingw.zip'
$checksum = 'C2BD73CDB57D8522DECAA9BADB0F00184DD20031EC86B539D034E51AD5C0434B'
$checksumType = 'sha256'
$url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.20.0/i2pd_2.20.0_win64_mingw.zip'
$checksum64 = 'B819B5F2C390E04C6CB4B5619498B5C0B2E948CEB4FE22FBAF3E0DB3A5EBC422'
$url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.21.0/i2pd_2.21.0_win64_mingw.zip'
$checksum64 = 'F34ED8DD22C3E4731E66752A9DA6E73F090B58ABB66F44F875BC6638E463FEA9'
$checksumType64 = 'sha256'
Install-ChocolateyZipPackage -packageName "$packagename" `