Skip to content

Commit

Permalink
2.41.0
Browse files Browse the repository at this point in the history
Signed-off-by: R4SAS <r4sas@i2pmail.org>
  • Loading branch information
r4sas committed Feb 20, 2022
1 parent a5d6972 commit b7e20b9
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 25 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build/build_mingw.cmd eol=crlf
13 changes: 7 additions & 6 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# for this file format description,
# see https://github.com/olivierlacan/keep-a-changelog

## [2.41.0] - 2022-02-21
## [2.41.0] - 2022-02-20
### Added
- Clock syncronization through SSU
- Drop routers older than 6 months on start
Expand All @@ -11,21 +11,22 @@
- Restart webconsole's acceptor in case of exception
### Changed
- Use builtin bitswap for endian on windows
- Send SessionCreated before connection close if slock skew
- Send SessionCreated before connection close if clock skew
- Try another floodfill for publishing if no compatible tunnels found
- Reduce memory usage for RouterInfo structures
- Avoid duplicated addresses in RouterInfo. Check presence of netId and version
- Avoid duplicated addresses in RouterInfo. Check presence of netId and version
- Use TCP/IP sockets for I2CP on Android instead local sockets
- Return uptime as integer in I2PControl
- Reseed servers list/cerificates
- Webconsole's dark style colors
- Webconsole's dark style colors
### Fixed
- Yggdrasil transport and reseeds on Android
- Attempt to use Yggdrasil on start on Android
- Attempts to send peer tests to itself
- Severe packets drop in SSU
- Severe packets drop in SSU
- Crash on tunnel tests
- Loading addressbook subscriptions from config
- Multiple I2CP session to the same destination
- Build on Apple Silicon

## [2.40.0] - 2021-11-29
### Added
Expand Down
2 changes: 1 addition & 1 deletion Win32/Resource.rc2
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ BEGIN
VALUE "FileDescription", "C++ I2P daemon"
VALUE "FileVersion", I2PD_VERSION
VALUE "InternalName", CODENAME
VALUE "LegalCopyright", "Copyright (C) 2013-2020, The PurpleI2P Project"
VALUE "LegalCopyright", "Copyright (C) 2013-2022, The PurpleI2P Project"
VALUE "OriginalFilename", "i2pd"
VALUE "ProductName", "Purple I2P"
VALUE "ProductVersion", I2P_VERSION
Expand Down
30 changes: 15 additions & 15 deletions build/build_mingw.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,12 @@ REM UCRT64: mingw-w64-ucrt-x86_64-boost mingw-w64-ucrt-x86_64-openssl mingw-w64-
REM MINGW32: mingw-w64-i686-boost mingw-w64-i686-openssl mingw-w64-i686-gcc

REM setting up variables for MSYS
REM Note: if you installed MSYS64 to different path, edit WD variable (only C:\msys64 needed to edit)!
set "WD=C:\msys64\usr\bin\"
REM Note: if you installed MSYS64 to different path, edit WD variable (only C:\msys64 needed to edit)
set MSYS2_PATH_TYPE=inherit
set CHERE_INVOKING=enabled_from_arguments
REM set MSYSTEM=MSYS
set MSYSTEM=MINGW32

set "WD=C:\msys64\usr\bin\"
set "xSH=%WD%bash -lc"

set "FILELIST=i2pd.exe README.txt contrib/i2pd.conf contrib/tunnels.conf contrib/certificates contrib/tunnels.d contrib/webconsole"
Expand Down Expand Up @@ -55,12 +54,12 @@ REM converting configuration files to DOS format (make usable in Windows Notepad
REM Prepare binary signing command if signing key and password provided
if defined SIGNKEY (
if defined SIGNPASS (
echo Signing options found^^!
echo Signing options found

for %%X in (signtool.exe) do (set xSIGNTOOL=%%~$PATH:X)
if not defined xSIGNTOOL (
if not defined SIGNTOOL (
echo Error: Can't find signtool^^! Please provide path to binary using SIGNTOOL variable^^!
echo Error: Can't find signtool. Please provide path to binary using SIGNTOOL variable.
exit /b 1
) else (
set "xSIGNTOOL=%SIGNTOOL%"
Expand All @@ -80,15 +79,10 @@ set MSYSTEM=UCRT64
set bitness=64
call :BUILDING

if exist C:\msys64-xp\ (
REM building for WinXP
set "WD=C:\msys64-xp\usr\bin\"
set MSYSTEM=MINGW32
set bitness=32
set "xSH=%WD%bash -lc"
call :BUILDING_XP
echo.
)
REM build for Windows XP
if exist C:\msys64-xp\ ( call :BUILDING_XP )

echo.

REM compile installer
echo Building installer...
Expand Down Expand Up @@ -125,6 +119,11 @@ REM Clean work directory
goto EOF

:BUILDING_XP
set MSYSTEM=MINGW32
set bitness=32
set "WD=C:\msys64-xp\usr\bin\"
set "xSH=%WD%bash -lc"

%xSH% "make clean" >> nul
echo Building i2pd %tag% for winxp...
%xSH% "make DEBUG=no USE_UPNP=yes USE_WINXP_FLAGS=yes -j%threads%" > build\build_winxp_%tag%.log 2>&1
Expand All @@ -139,5 +138,6 @@ REM Copy binary for installer and create distribution archive

REM Clean work directory
%xSH% "make clean" >> build\build_winxp_%tag%.log 2>&1
goto EOF

:EOF
:EOF
3 changes: 2 additions & 1 deletion contrib/rpm/i2pd-git.spec
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,9 @@ getent passwd i2pd >/dev/null || \


%changelog
* Mon Feb 21 2022 orignal <i2porignal@yandex.ru> - 2.41.0
* Sun Feb 20 2022 r4sas <r4sas@i2pmail.org> - 2.41.0
- update to 2.41.0
- fixed build on Fedora Copr over openssl trunk code

* Mon Nov 29 2021 orignal <i2porignal@yandex.ru> - 2.40.0
- update to 2.40.0
Expand Down
2 changes: 1 addition & 1 deletion contrib/rpm/i2pd.spec
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ getent passwd i2pd >/dev/null || \


%changelog
* Mon Feb 21 2022 orignal <i2porignal@yandex.ru> - 2.41.0
* Sun Feb 20 2022 r4sas <r4sas@i2pmail.org> - 2.41.0
- update to 2.41.0

* Mon Nov 29 2021 orignal <i2porignal@yandex.ru> - 2.40.0
Expand Down
2 changes: 1 addition & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ i2pd (2.41.0-1) unstable; urgency=medium

* updated to version 2.41.0/0.9.53

-- orignal <orignal@i2pmail.org> Mon, 21 Feb 2022 16:00:00 +0000
-- r4sas <r4sas@i2pmail.org> Sun, 20 Feb 2022 13:00:00 +0000

i2pd (2.40.0-1) unstable; urgency=medium

Expand Down

0 comments on commit b7e20b9

Please sign in to comment.