pull/1525/head
orignal 4 years ago
parent 50c8a84037
commit 0e0169d22b

@ -1,6 +1,30 @@
# for this file format description,
# see https://github.com/olivierlacan/keep-a-changelog
## [2.32.0] - 2020-05-25
### Added
- Multiple encryption types for local destinations
- Next key and tagset for ECIES-X25519-AEAD-Ratchet
- NTCP2 through SOCKS proxy
- Throw error message if any port to bind is occupied
- gzip parameter for UDP tunnels
- Show ECIES-X25519-AEAD-Ratchet sessions and tags on the web console
- Simplified implementation of gzip for no compression mode
- Allow ECIES-X25519-AEAD-Ratchet session restart after 2 minutes
### Changed
- Select peers for client tunnels among routers >= 0.9.36
- Check ECIES flag for encrypted lookup reply
- Streaming MTU size 1812 for ECIES-X25519-AEAD-Ratchet
- Don't calculate checksum for Data message send through ECIES-X25519-AEAD-Ratchet
- Catch network connectivity status for Windows
- Stop as soon as no more transit tunnels during graceful shutdown for Android
- RouterInfo gzip compression level depends on size
- Send response to received datagram from ECIES-X25519-AEAD-Ratchet session
- Reseeds list
### Fixed
- Correct timestamp check for LeaseSet2
- Encrypted leaseset without authentication
## [2.31.0] - 2020-04-10
### Added
- NTCP2 through HTTP proxy

@ -1,5 +1,5 @@
#define I2Pd_AppName "i2pd"
#define I2Pd_ver "2.31.0"
#define I2Pd_ver "2.32.0"
#define I2Pd_Publisher "PurpleI2P"
[Setup]

@ -30,8 +30,8 @@ android {
applicationId "org.purplei2p.i2pd"
targetSdkVersion 29
minSdkVersion 14
versionCode 2310
versionName "2.31.0"
versionCode 2320
versionName "2.32.0"
setProperty("archivesBaseName", archivesBaseName + "-" + versionName)
ndk {
abiFilters 'armeabi-v7a'

@ -1,4 +1,4 @@
version: 2.31.0.{build}
version: 2.32.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:

@ -16,7 +16,7 @@
#define MAKE_VERSION_NUMBER(a,b,c) ((a*100+b)*100+c)
#define I2PD_VERSION_MAJOR 2
#define I2PD_VERSION_MINOR 31
#define I2PD_VERSION_MINOR 32
#define I2PD_VERSION_MICRO 0
#define I2PD_VERSION_PATCH 0
#define I2PD_VERSION MAKE_VERSION(I2PD_VERSION_MAJOR, I2PD_VERSION_MINOR, I2PD_VERSION_MICRO)
@ -30,7 +30,7 @@
#define I2P_VERSION_MAJOR 0
#define I2P_VERSION_MINOR 9
#define I2P_VERSION_MICRO 45
#define I2P_VERSION_MICRO 46
#define I2P_VERSION_PATCH 0
#define I2P_VERSION MAKE_VERSION(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO)
#define I2P_VERSION_NUMBER MAKE_VERSION_NUMBER(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO)

@ -35,6 +35,7 @@
<translation type="qt" />
<releases>
<release version="2.32.0" date="2020-05-25" />
<release version="2.31.0" date="2020-04-10" />
<release version="2.30.0" date="2020-02-25" />
<release version="2.29.0" date="2019-10-21" />

Loading…
Cancel
Save