mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-01-28 02:03:35 +00:00
Version 0.10.19: Critical bug fix of Session::needToResumeAndSend().
This commit is contained in:
parent
1cfe9d0ff5
commit
802349d042
@ -34,8 +34,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico"
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 0,10,18,0
|
||||
PRODUCTVERSION 0,10,18,0
|
||||
FILEVERSION 0,10,19,0
|
||||
PRODUCTVERSION 0,10,19,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
@ -51,10 +51,10 @@ BEGIN
|
||||
BLOCK "040904b0"
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Telegram Messenger LLP"
|
||||
VALUE "FileVersion", "0.10.18.0"
|
||||
VALUE "FileVersion", "0.10.19.0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2014-2016"
|
||||
VALUE "ProductName", "Telegram Desktop"
|
||||
VALUE "ProductVersion", "0.10.18.0"
|
||||
VALUE "ProductVersion", "0.10.19.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 0,10,18,0
|
||||
PRODUCTVERSION 0,10,18,0
|
||||
FILEVERSION 0,10,19,0
|
||||
PRODUCTVERSION 0,10,19,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
@ -43,10 +43,10 @@ BEGIN
|
||||
BEGIN
|
||||
VALUE "CompanyName", "Telegram Messenger LLP"
|
||||
VALUE "FileDescription", "Telegram Updater"
|
||||
VALUE "FileVersion", "0.10.18.0"
|
||||
VALUE "FileVersion", "0.10.19.0"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2014-2016"
|
||||
VALUE "ProductName", "Telegram Desktop"
|
||||
VALUE "ProductVersion", "0.10.18.0"
|
||||
VALUE "ProductVersion", "0.10.19.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
@ -24,7 +24,7 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
||||
|
||||
#define BETA_VERSION_MACRO (0ULL)
|
||||
|
||||
constexpr int AppVersion = 10018;
|
||||
constexpr str_const AppVersionStr = "0.10.18";
|
||||
constexpr int AppVersion = 10019;
|
||||
constexpr str_const AppVersionStr = "0.10.19";
|
||||
constexpr bool AppAlphaVersion = false;
|
||||
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;
|
||||
|
@ -213,7 +213,7 @@ void Session::needToResumeAndSend() {
|
||||
return;
|
||||
}
|
||||
createDcData();
|
||||
start();
|
||||
_connection->start();
|
||||
}
|
||||
if (_ping) {
|
||||
_ping = false;
|
||||
|
@ -92,7 +92,7 @@ echo Version %AppVersionStrFull% build successfull. Preparing..
|
||||
echo .
|
||||
|
||||
echo Dumping debug symbols..
|
||||
xcopy "%ReleasePath%\%BinaryName%.exe" "%ReleasePath%\%BinaryName%.exe.exe"
|
||||
xcopy "%ReleasePath%\%BinaryName%.exe" "%ReleasePath%\%BinaryName%.exe.exe*"
|
||||
call "%SolutionPath%\..\Libraries\breakpad\src\tools\windows\dump_syms\Release\dump_syms.exe" "%ReleasePath%\%BinaryName%.exe.pdb" > "%ReleasePath%\%BinaryName%.exe.sym"
|
||||
del "%ReleasePath%\%BinaryName%.exe.exe"
|
||||
echo Done!
|
||||
|
@ -124,7 +124,7 @@ if [ "$BuildTarget" == "linux" ] || [ "$BuildTarget" == "linux32" ]; then
|
||||
fi
|
||||
|
||||
gyp/refresh.sh
|
||||
|
||||
|
||||
cd $ReleasePath
|
||||
make -j4
|
||||
echo "$BinaryName build complete!"
|
||||
@ -278,18 +278,13 @@ if [ "$BuildTarget" == "mac" ] || [ "$BuildTarget" == "mac32" ] || [ "$BuildTarg
|
||||
if [ "$BuildTarget" == "mac" ] || [ "$BuildTarget" == "mac32" ]; then
|
||||
if [ "$BetaVersion" == "0" ]; then
|
||||
cd "$ReleasePath"
|
||||
cp -f tsetup_blank.dmg tsetup.temp.dmg
|
||||
cp -f tsetup_template.dmg tsetup.temp.dmg
|
||||
TempDiskPath=`hdiutil attach -nobrowse -noautoopenrw -readwrite tsetup.temp.dmg | awk -F "\t" 'END {print $3}'`
|
||||
cp -R "./$BinaryName.app" "$TempDiskPath/"
|
||||
bless --folder "$TempDiskPath/" --openfolder "$TempDiskPath/"
|
||||
hdiutil create tsetup.dmg -srcfolder "$TempDiskPath/" -volname "Telegram Desktop" -format UDRW -ov
|
||||
FinalDiskPath=`hdiutil attach -nobrowse -noautoopenrw -readwrite tsetup.dmg | awk -F "\t" 'END {print $3}'`
|
||||
cp -R "$TempDiskPath/.DS_Store" "$FinalDiskPath/.DS_Store"
|
||||
hdiutil detach "$TempDiskPath"
|
||||
hdiutil detach "$FinalDiskPath"
|
||||
hdiutil convert tsetup.dmg -format UDZO -imagekey zlib-level=9 -ov -o "$SetupFile"
|
||||
hdiutil convert tsetup.temp.dmg -format UDZO -imagekey zlib-level=9 -ov -o "$SetupFile"
|
||||
rm tsetup.temp.dmg
|
||||
rm tsetup.dmg
|
||||
fi
|
||||
cd "$ReleasePath"
|
||||
"./Packer" -path "$BinaryName.app" -target "$BuildTarget" -version $VersionForPacker $AlphaBetaParam
|
||||
|
@ -1,6 +1,6 @@
|
||||
AppVersion 10018
|
||||
AppVersion 10019
|
||||
AppVersionStrMajor 0.10
|
||||
AppVersionStrSmall 0.10.18
|
||||
AppVersionStr 0.10.18
|
||||
AppVersionStrSmall 0.10.19
|
||||
AppVersionStr 0.10.19
|
||||
AlphaChannel 0
|
||||
BetaVersion 0
|
||||
|
Loading…
Reference in New Issue
Block a user