mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 11:04:00 +01:00
2.40.0
Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
parent
8ac2ee49a8
commit
27116b9f30
|
@ -10,11 +10,12 @@
|
||||||
- Windows menu item for opening datadir
|
- Windows menu item for opening datadir
|
||||||
- Reseed if too few floodfills
|
- Reseed if too few floodfills
|
||||||
- Don't publish old and replacing tunnel in LeaseSet
|
- Don't publish old and replacing tunnel in LeaseSet
|
||||||
|
- Webconsole light/dark theme depending on system settings (via CSS)
|
||||||
### Changed
|
### Changed
|
||||||
- Set gzip compression to false by default
|
- Set gzip compression to false by default
|
||||||
- Build tunnel through ECIES routers only
|
- Build tunnel through ECIES routers only
|
||||||
- Removed ElGamal support for tunnels
|
- Removed ElGamal support for tunnels
|
||||||
- Moved webconsole resource to separate file
|
- Moved webconsole resources to separate file
|
||||||
- Pick tunnels with compatible transport with another tunnel of floodfill
|
- Pick tunnels with compatible transport with another tunnel of floodfill
|
||||||
- Use common cleanup timer for all SSU sessions
|
- Use common cleanup timer for all SSU sessions
|
||||||
- Reduced memory usage
|
- Reduced memory usage
|
||||||
|
|
|
@ -50,7 +50,7 @@ echo Preparing configuration files and README for packaging...
|
||||||
%xSH% "echo To use configs and certificates, move all files and certificates folder from contrib directory here. > README.txt" >> nul
|
%xSH% "echo To use configs and certificates, move all files and certificates folder from contrib directory here. > README.txt" >> nul
|
||||||
|
|
||||||
REM converting configuration files to DOS format (usable in default notepad)
|
REM converting configuration files to DOS format (usable in default notepad)
|
||||||
%xSH% "unix2dos contrib/i2pd.conf contrib/tunnels.conf contrib/tunnels.d/*" >> build\build.log 2>&1
|
%xSH% "unix2dos contrib/i2pd.conf contrib/tunnels.conf contrib/tunnels.d/* contrib/webconsole/style.css" >> build\build.log 2>&1
|
||||||
|
|
||||||
REM starting building
|
REM starting building
|
||||||
set MSYSTEM=MINGW32
|
set MSYSTEM=MINGW32
|
||||||
|
@ -61,13 +61,15 @@ set MSYSTEM=MINGW64
|
||||||
set bitness=64
|
set bitness=64
|
||||||
call :BUILDING
|
call :BUILDING
|
||||||
|
|
||||||
REM building for WinXP
|
IF exist C:\msys64-xp\ (
|
||||||
set "WD=C:\msys64-xp\usr\bin\"
|
REM building for WinXP
|
||||||
set MSYSTEM=MINGW32
|
set "WD=C:\msys64-xp\usr\bin\"
|
||||||
set bitness=32
|
set MSYSTEM=MINGW32
|
||||||
set "xSH=%WD%bash -lc"
|
set bitness=32
|
||||||
call :BUILDING_XP
|
set "xSH=%WD%bash -lc"
|
||||||
echo.
|
call :BUILDING_XP
|
||||||
|
echo.
|
||||||
|
)
|
||||||
|
|
||||||
REM compile installer
|
REM compile installer
|
||||||
C:\PROGRA~2\INNOSE~1\ISCC.exe /dI2Pd_TextVer="%tag%" /dI2Pd_Ver="%reltag%.0" build\win_installer.iss >> build\build.log 2>&1
|
C:\PROGRA~2\INNOSE~1\ISCC.exe /dI2Pd_TextVer="%tag%" /dI2Pd_Ver="%reltag%.0" build\win_installer.iss >> build\build.log 2>&1
|
||||||
|
|
Loading…
Reference in a new issue