diff --git a/PortableApps/App/AppInfo/appinfo.ini b/PortableApps/App/AppInfo/appinfo.ini index b8ac899fe6..a807adf3ea 100644 --- a/PortableApps/App/AppInfo/appinfo.ini +++ b/PortableApps/App/AppInfo/appinfo.ini @@ -1,6 +1,6 @@ [Version] -PackageVersion=20.6.15.0 -DisplayVersion=200615 +PackageVersion=20.7.13.0 +DisplayVersion=200713 [Format] Type=PortableApps.comFormat diff --git a/Release/ConEmu/WhatsNew-ConEmu.txt b/Release/ConEmu/WhatsNew-ConEmu.txt index 69f983eb9a..1bd1cd20c2 100644 --- a/Release/ConEmu/WhatsNew-ConEmu.txt +++ b/Release/ConEmu/WhatsNew-ConEmu.txt @@ -20,6 +20,20 @@ https://conemu.github.io/en/Whats_New.html ------------------------------------------- +2020.7.13 +* gh-2009: Autoload font files from ConEmuDir/ConEmuBaseDir (fix). +* gh-2130: Use v141_xp toolset to build Release|x86. +* Fix 'Settings/Debug/Exec' monitoring: files weren't loaded after '@'. +* Button 'Register ConEmu autorun' didn't work in some cases. +* Fix console lags and size during ConEmu cmd autoattach initialization. +* gh-2145: Fix crash (read access violation). +* l10n: translations were updated +* gh-468: Fix for environment reload from registry (expand variables in PATH). + The problem was with `PATH` variable, it contains substitutes `%SystemRoot%`, + but they were not expanded during environment refresh. +* Code refactoring. + + 2020.6.15 * gh-2127: Fix broken `-FontDir` command line option. * gh-2087: Fix unbalanced CoUninitialize call in ConEmu Panel Views plugin. diff --git a/src/ConEmu/version.h b/src/ConEmu/version.h index 972de42456..8a5c4dfe98 100644 --- a/src/ConEmu/version.h +++ b/src/ConEmu/version.h @@ -1,7 +1,7 @@ -// 200615 +// 200713 #define MVV_1 20 -#define MVV_2 6 -#define MVV_3 15 +#define MVV_2 7 +#define MVV_3 13 #define MVV_4 0 #define MVV_4a "" #undef MVV_git diff --git a/src/Setup/Setupper/VersionI.h b/src/Setup/Setupper/VersionI.h index 42da1dba83..1c0bce999b 100644 --- a/src/Setup/Setupper/VersionI.h +++ b/src/Setup/Setupper/VersionI.h @@ -1,5 +1,5 @@ -#define CONEMUVERN 20,6,15,0 -#define CONEMUVERS "200615" -#define CONEMUVERL L"200615" -#define MSI86 "../ConEmu.200615.x86.msi" -#define MSI64 "../ConEmu.200615.x64.msi" +#define CONEMUVERN 20,7,13,0 +#define CONEMUVERS "200713" +#define CONEMUVERL L"200713" +#define MSI86 "../ConEmu.200713.x86.msi" +#define MSI64 "../ConEmu.200713.x64.msi" diff --git a/src/Setup/Version.wxi b/src/Setup/Version.wxi index 5338afa518..aeb6b0a2c6 100644 --- a/src/Setup/Version.wxi +++ b/src/Setup/Version.wxi @@ -1,7 +1,7 @@ - - + + \ No newline at end of file diff --git a/src/UnitTests/run-tests.cmd b/src/UnitTests/run-tests.cmd index 36ba6eb6fb..4c0f3563a1 100644 --- a/src/UnitTests/run-tests.cmd +++ b/src/UnitTests/run-tests.cmd @@ -55,15 +55,17 @@ goto :EOF :gtests call cecho /yellow " Tests_Release_Win32.exe" -..\..\Release\Tests_Release_Win32.exe 1> nul +..\..\Release\Tests_Release_Win32.exe 1>> unittests.log if errorlevel 1 ( + echo/ Tests_Release_Win32.exe exitcode=%errorlevel% echo Tests_Release_Win32.exe failed > tests.fail ) else ( call cecho /green " Tests_Release_Win32.exe succeeded as expected" ) call cecho /yellow " Tests_Release_x64.exe" -..\..\Release\Tests_Release_x64.exe 1> nul +..\..\Release\Tests_Release_x64.exe 1>> unittests.log if errorlevel 1 ( + echo/ Tests_Release_x64.exe exitcode=%errorlevel% echo Tests_Release_x64.exe failed > tests.fail ) else ( call cecho /green " Tests_Release_x64.exe succeeded as expected"