Skip to content

Commit b7e20b9

Browse files
committed
2.41.0
Signed-off-by: R4SAS <[email protected]>
1 parent a5d6972 commit b7e20b9

File tree

7 files changed

+28
-25
lines changed

7 files changed

+28
-25
lines changed

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build/build_mingw.cmd eol=crlf

ChangeLog

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# for this file format description,
22
# see https://github.com/olivierlacan/keep-a-changelog
33

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

3031
## [2.40.0] - 2021-11-29
3132
### Added

Win32/Resource.rc2

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ BEGIN
2525
VALUE "FileDescription", "C++ I2P daemon"
2626
VALUE "FileVersion", I2PD_VERSION
2727
VALUE "InternalName", CODENAME
28-
VALUE "LegalCopyright", "Copyright (C) 2013-2020, The PurpleI2P Project"
28+
VALUE "LegalCopyright", "Copyright (C) 2013-2022, The PurpleI2P Project"
2929
VALUE "OriginalFilename", "i2pd"
3030
VALUE "ProductName", "Purple I2P"
3131
VALUE "ProductVersion", I2P_VERSION

build/build_mingw.cmd

+15-15
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,12 @@ REM UCRT64: mingw-w64-ucrt-x86_64-boost mingw-w64-ucrt-x86_64-openssl mingw-w64-
1212
REM MINGW32: mingw-w64-i686-boost mingw-w64-i686-openssl mingw-w64-i686-gcc
1313

1414
REM setting up variables for MSYS
15-
REM Note: if you installed MSYS64 to different path, edit WD variable (only C:\msys64 needed to edit)!
16-
set "WD=C:\msys64\usr\bin\"
15+
REM Note: if you installed MSYS64 to different path, edit WD variable (only C:\msys64 needed to edit)
1716
set MSYS2_PATH_TYPE=inherit
1817
set CHERE_INVOKING=enabled_from_arguments
19-
REM set MSYSTEM=MSYS
2018
set MSYSTEM=MINGW32
2119

20+
set "WD=C:\msys64\usr\bin\"
2221
set "xSH=%WD%bash -lc"
2322

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

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

83-
if exist C:\msys64-xp\ (
84-
REM building for WinXP
85-
set "WD=C:\msys64-xp\usr\bin\"
86-
set MSYSTEM=MINGW32
87-
set bitness=32
88-
set "xSH=%WD%bash -lc"
89-
call :BUILDING_XP
90-
echo.
91-
)
82+
REM build for Windows XP
83+
if exist C:\msys64-xp\ ( call :BUILDING_XP )
84+
85+
echo.
9286

9387
REM compile installer
9488
echo Building installer...
@@ -125,6 +119,11 @@ REM Clean work directory
125119
goto EOF
126120

127121
:BUILDING_XP
122+
set MSYSTEM=MINGW32
123+
set bitness=32
124+
set "WD=C:\msys64-xp\usr\bin\"
125+
set "xSH=%WD%bash -lc"
126+
128127
%xSH% "make clean" >> nul
129128
echo Building i2pd %tag% for winxp...
130129
%xSH% "make DEBUG=no USE_UPNP=yes USE_WINXP_FLAGS=yes -j%threads%" > build\build_winxp_%tag%.log 2>&1
@@ -139,5 +138,6 @@ REM Copy binary for installer and create distribution archive
139138

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

143-
:EOF
143+
:EOF

contrib/rpm/i2pd-git.spec

+2-1
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,9 @@ getent passwd i2pd >/dev/null || \
146146

147147

148148
%changelog
149-
* Mon Feb 21 2022 orignal <[email protected]> - 2.41.0
149+
* Sun Feb 20 2022 r4sas <[email protected]> - 2.41.0
150150
- update to 2.41.0
151+
- fixed build on Fedora Copr over openssl trunk code
151152

152153
* Mon Nov 29 2021 orignal <[email protected]> - 2.40.0
153154
- update to 2.40.0

contrib/rpm/i2pd.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ getent passwd i2pd >/dev/null || \
143143

144144

145145
%changelog
146-
* Mon Feb 21 2022 orignal <[email protected]> - 2.41.0
146+
* Sun Feb 20 2022 r4sas <[email protected]> - 2.41.0
147147
- update to 2.41.0
148148

149149
* Mon Nov 29 2021 orignal <[email protected]> - 2.40.0

debian/changelog

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ i2pd (2.41.0-1) unstable; urgency=medium
22

33
* updated to version 2.41.0/0.9.53
44

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

77
i2pd (2.40.0-1) unstable; urgency=medium
88

0 commit comments

Comments
 (0)