Skip to content

Commit

Permalink
Alpha version 1.2.10.
Browse files Browse the repository at this point in the history
- Bug fixes and other minor improvements.
  • Loading branch information
john-preston committed Mar 8, 2018
1 parent 66ac4d6 commit 054459d
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Telegram/Resources/uwp/AppX/AppxManifest.xml
Expand Up @@ -9,7 +9,7 @@
<Identity Name="TelegramMessengerLLP.TelegramDesktop"
ProcessorArchitecture="ARCHITECTURE"
Publisher="CN=536BC709-8EE1-4478-AF22-F0F0F26FF64A"
Version="1.2.9.0" />
Version="1.2.10.0" />
<Properties>
<DisplayName>Telegram Desktop</DisplayName>
<PublisherDisplayName>Telegram Messenger LLP</PublisherDisplayName>
Expand Down
8 changes: 4 additions & 4 deletions Telegram/Resources/winrc/Telegram.rc
Expand Up @@ -34,8 +34,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,2,9,0
PRODUCTVERSION 1,2,9,0
FILEVERSION 1,2,10,0
PRODUCTVERSION 1,2,10,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -52,10 +52,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "Telegram Messenger LLP"
VALUE "FileDescription", "Telegram Desktop"
VALUE "FileVersion", "1.2.9.0"
VALUE "FileVersion", "1.2.10.0"
VALUE "LegalCopyright", "Copyright (C) 2014-2018"
VALUE "ProductName", "Telegram Desktop"
VALUE "ProductVersion", "1.2.9.0"
VALUE "ProductVersion", "1.2.10.0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions Telegram/Resources/winrc/Updater.rc
Expand Up @@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,2,9,0
PRODUCTVERSION 1,2,9,0
FILEVERSION 1,2,10,0
PRODUCTVERSION 1,2,10,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -43,10 +43,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "Telegram Messenger LLP"
VALUE "FileDescription", "Telegram Desktop Updater"
VALUE "FileVersion", "1.2.9.0"
VALUE "FileVersion", "1.2.10.0"
VALUE "LegalCopyright", "Copyright (C) 2014-2018"
VALUE "ProductName", "Telegram Desktop"
VALUE "ProductVersion", "1.2.9.0"
VALUE "ProductVersion", "1.2.10.0"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion Telegram/SourceFiles/core/changelogs.cpp
Expand Up @@ -75,7 +75,7 @@ std::map<int, const char*> AlphaLogs() {
{
1002009,
"\xE2\x80\x94 Quick Reply. "
"Double click near a message for a quick reply.\n"
"Double click next to any message for a quick reply.\n"

"\xE2\x80\x94 Search for Stickers. "
"Click on the new search icon to access "
Expand Down
4 changes: 2 additions & 2 deletions Telegram/SourceFiles/core/version.h
Expand Up @@ -11,7 +11,7 @@ For license and copyright information please follow this link:

#define BETA_VERSION_MACRO (0ULL)

constexpr int AppVersion = 1002009;
constexpr str_const AppVersionStr = "1.2.9";
constexpr int AppVersion = 1002010;
constexpr str_const AppVersionStr = "1.2.10";
constexpr bool AppAlphaVersion = true;
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;
2 changes: 1 addition & 1 deletion Telegram/build/release.sh
Expand Up @@ -41,4 +41,4 @@ else
fi

cd "$FullScriptPath"
python release.py $AppVersionStr $Param1 $Param2 $Param3 $Param4
python3 release.py $AppVersionStr $Param1 $Param2 $Param3 $Param4
6 changes: 3 additions & 3 deletions Telegram/build/version
@@ -1,6 +1,6 @@
AppVersion 1002009
AppVersion 1002010
AppVersionStrMajor 1.2
AppVersionStrSmall 1.2.9
AppVersionStr 1.2.9
AppVersionStrSmall 1.2.10
AppVersionStr 1.2.10
AlphaChannel 1
BetaVersion 0
4 changes: 4 additions & 0 deletions changelog.txt
@@ -1,3 +1,7 @@
1.2.10 alpha (09.03.18)

- Bug fixes and other minor improvements.

1.2.9 alpha (07.03.18)

- Quick Reply. Double click near a message for a quick reply.
Expand Down

0 comments on commit 054459d

Please sign in to comment.