Browse Source

update i2pd to 2.28.0

Signed-off-by: R4SAS <r4sas@i2pmail.org>
master
R4SAS 5 years ago
parent
commit
67eda33fb2
Signed by: r4sas
GPG Key ID: 66F6C87B98EBCFE2
  1. 15
      i2pd/i2pd.nuspec
  2. 8
      i2pd/tools/ChocolateyInstall.ps1

15
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.27.0</version> <version>2.28.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,11 +104,14 @@ 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. Support of PSK and DH authentication for encrypted LeaseSet2 <releaseNotes>1. RAW datagrams in SAM
2. Uptime is based on monotonic timer now 2. Publishing encrypted LeaseSet2 with DH or PSH authentication
3. Correct BOB status command response 3. Ability to disable battery optimization for Android
4. Correct NTCP2 port if NTCP is disabled 4. Transport Network ID Check
5. Flood encrypted LeaseSet2 with store hash</releaseNotes> 5. Set and handle published encrypted flag for LeaseSet2
6. Fixed ReceiveID occasional change in the same stream
7. Handle "\r\n" command terminator in SAM
8. Correct handling of addressbook lines with signatures</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.27.0/i2pd_2.27.0_win32_mingw.zip' $url = 'https://github.com/PurpleI2P/i2pd/releases/download/2.28.0/i2pd_2.28.0_win32_mingw.zip'
$checksum = 'C6835FB9790DF35BD26C09FF1A0E2CFDF11EAB2DCD0BFA9171F74907C51F428A' $checksum = '3ACAABA6C123BBFAB4E2CF07AB0D755B36C2624837967BC0467274E9A6ADE36F'
$checksumType = 'sha256' $checksumType = 'sha256'
$url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.27.0/i2pd_2.27.0_win64_mingw.zip' $url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.28.0/i2pd_2.28.0_win64_mingw.zip'
$checksum64 = '7C7291802455F0755B493FCF89419323F48B6758EE6FFB94D270F4D556F17DED' $checksum64 = '598B8887EA99601DB3F2679FC39F9AFFC5FBDE02ADD5B5075245FFE49A320B67'
$checksumType64 = 'sha256' $checksumType64 = 'sha256'
Install-ChocolateyZipPackage -packageName "$packagename" ` Install-ChocolateyZipPackage -packageName "$packagename" `

Loading…
Cancel
Save