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

update i2pd to 2.30.0

Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
R4SAS 2020-02-25 21:34:51 +03:00
parent 5233bea751
commit 5e2e7da2a9
Signed by: r4sas
GPG Key ID: 66F6C87B98EBCFE2
2 changed files with 11 additions and 11 deletions

View File

@ -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.29.0</version> <version>2.30.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,12 +104,12 @@ 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. Send and handle client auth flag for b33 address <releaseNotes>1. Single threaded SAM
2. Fixed SAM crash if invalid lookup address 2. Experimental support of ECIES-X25519-AEAD-Ratchet crypto type
3. Fixed possible crash when UPnP enabled on shutdown 3. Works on Android 10
4. Fixed failure to start on Windows XP 4. Reported minimal MTU size is 1280 for ipv6
5. Handle errors for NTCP2 SessionConfrimed send 5. Updated reseeds list
6. Remove incoming NTCP2 session from pending list when established</releaseNotes> 6. Correct response to RouterInfo in I2PControl</releaseNotes>
</metadata> </metadata>
<files> <files>
<file src="tools\**" target="tools" /> <file src="tools\**" target="tools" />

View File

@ -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.29.0/i2pd_2.29.0_win32_mingw.zip' $url = 'https://github.com/PurpleI2P/i2pd/releases/download/2.30.0/i2pd_2.30.0_win32_mingw.zip'
$checksum = '67B5209174681935596ADAC1CA11D3BF660ABEFBC27003414D4F7E6D39B248BA' $checksum = 'a941078877b12346ea25acf625fd2998410b1a1c5f5c7ecf798399d0ba3ebc38'
$checksumType = 'sha256' $checksumType = 'sha256'
$url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.29.0/i2pd_2.29.0_win64_mingw.zip' $url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.30.0/i2pd_2.30.0_win64_mingw.zip'
$checksum64 = '6F8B9900BF5216D8A9E7DBA8028678F848ED63DE395ADB23577DE3C7E75C8436' $checksum64 = '0734238e3fa3b51b509ba009a6c518f06e85d2fc77ead82e9fc05277a1e0744d'
$checksumType64 = 'sha256' $checksumType64 = 'sha256'
Install-ChocolateyZipPackage -packageName "$packagename" ` Install-ChocolateyZipPackage -packageName "$packagename" `