diff --git a/i2pd/i2pd.nuspec b/i2pd/i2pd.nuspec index 0b35e55..a8e62b2 100644 --- a/i2pd/i2pd.nuspec +++ b/i2pd/i2pd.nuspec @@ -3,7 +3,7 @@ i2pd - 2.23.0 + 2.24.0 https://github.com/r4sas/chocolatey-packages/tree/master/i2pd/ r4sas I2P Daemon @@ -104,14 +104,17 @@ 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. - 1. Standard LeaseSet2 support -2. Multiple changes for Android: Russian translation, permissions request, cancel graceful shutdown, addressbook in assets -3. Eliminated extra copy of NTCP2 sent messages for better performance -4. Ability to adjust timestamps through the NTP -5. Ability to disable peer profile persist -6. Fixed incorrect LeaseSet published content verification -7. Removed name resolvers from transports -8. Updated reseed certificates + 1. Support of transient keys for LeaseSet2 and encrypted LeaseSet2 +2. Recognize new signature type 11 (RedDSA) +3. Support websocket connections over HTTP proxy +4. Ability to disable full addressbook persist +5. Multiple SAM fixes +6. Ability to disable full addressbook persist +7. Fixed few issues with RouterInfo addresses and floodfills +8. Fixed race condition for publishing +9. Fixed stuck addressbook update +10. Don't load peer profiles if non-persistant +11. Set REUSE_ADDR flag for ipv6 acceptors diff --git a/i2pd/tools/ChocolateyInstall.ps1 b/i2pd/tools/ChocolateyInstall.ps1 index 48b995c..a8e7a6e 100644 --- a/i2pd/tools/ChocolateyInstall.ps1 +++ b/i2pd/tools/ChocolateyInstall.ps1 @@ -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.23.0/i2pd_2.23.0_win32_mingw.zip' -$checksum = '1973B23E8A3475CBA70BBDD74FA431D991F98D1CAF44D21099C3FE9B7E3ED1A1' +$url = 'https://github.com/PurpleI2P/i2pd/releases/download/2.24.0/i2pd_2.24.0_win32_mingw.zip' +$checksum = '011EBCD5D59A83BF869D56320DB74CEE75ED3BAFC8C1D6289A48736F8441C6BA' $checksumType = 'sha256' -$url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.23.0/i2pd_2.23.0_win64_mingw.zip' -$checksum64 = '3F79809EFF534DD3A88ED259C126753935D97B5A1BF3AB836AF06F9E433DD353' +$url64 = 'https://github.com/PurpleI2P/i2pd/releases/download/2.24.0/i2pd_2.24.0_win64_mingw.zip' +$checksum64 = '35D9B619B56FD0E5C959A04F25396EAD6B869448EE5DC1FD3282CB04FC0EB28E' $checksumType64 = 'sha256' Install-ChocolateyZipPackage -packageName "$packagename" `