diff --git a/Telegram/Resources/winrc/Telegram.rc b/Telegram/Resources/winrc/Telegram.rc index 65d2ba0f4..40a6c2f8f 100644 --- a/Telegram/Resources/winrc/Telegram.rc +++ b/Telegram/Resources/winrc/Telegram.rc @@ -34,8 +34,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico" // VS_VERSION_INFO VERSIONINFO - FILEVERSION 0,9,49,0 - PRODUCTVERSION 0,9,49,0 + FILEVERSION 0,9,49,1 + PRODUCTVERSION 0,9,49,1 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -51,10 +51,10 @@ BEGIN BLOCK "040904b0" BEGIN VALUE "CompanyName", "Telegram Messenger LLP" - VALUE "FileVersion", "0.9.49.0" + VALUE "FileVersion", "0.9.49.1" VALUE "LegalCopyright", "Copyright (C) 2014-2016" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "0.9.49.0" + VALUE "ProductVersion", "0.9.49.1" END END BLOCK "VarFileInfo" diff --git a/Telegram/Resources/winrc/Updater.rc b/Telegram/Resources/winrc/Updater.rc index 9fc56b8bf..870b47066 100644 --- a/Telegram/Resources/winrc/Updater.rc +++ b/Telegram/Resources/winrc/Updater.rc @@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // VS_VERSION_INFO VERSIONINFO - FILEVERSION 0,9,49,0 - PRODUCTVERSION 0,9,49,0 + FILEVERSION 0,9,49,1 + PRODUCTVERSION 0,9,49,1 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -43,10 +43,10 @@ BEGIN BEGIN VALUE "CompanyName", "Telegram Messenger LLP" VALUE "FileDescription", "Telegram Updater" - VALUE "FileVersion", "0.9.49.0" + VALUE "FileVersion", "0.9.49.1" VALUE "LegalCopyright", "Copyright (C) 2014-2016" VALUE "ProductName", "Telegram Desktop" - VALUE "ProductVersion", "0.9.49.0" + VALUE "ProductVersion", "0.9.49.1" END END BLOCK "VarFileInfo" diff --git a/Telegram/SourceFiles/core/version.h b/Telegram/SourceFiles/core/version.h index df192203a..94667764f 100644 --- a/Telegram/SourceFiles/core/version.h +++ b/Telegram/SourceFiles/core/version.h @@ -22,7 +22,7 @@ Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org #include "core/basic_types.h" -#define BETA_VERSION_MACRO (0ULL) +#define BETA_VERSION_MACRO (9049001ULL) constexpr int AppVersion = 9049; constexpr str_const AppVersionStr = "0.9.49"; diff --git a/Telegram/Telegram.pro b/Telegram/Telegram.pro index 2e437f48a..2720c2e40 100644 --- a/Telegram/Telegram.pro +++ b/Telegram/Telegram.pro @@ -117,6 +117,7 @@ SOURCES += \ ./SourceFiles/boxes/passcodebox.cpp \ ./SourceFiles/boxes/photocropbox.cpp \ ./SourceFiles/boxes/photosendbox.cpp \ + ./SourceFiles/boxes/report_box.cpp \ ./SourceFiles/boxes/sessionsbox.cpp \ ./SourceFiles/boxes/stickersetbox.cpp \ ./SourceFiles/boxes/usernamebox.cpp \ @@ -198,6 +199,8 @@ SOURCES += \ ./SourceFiles/ui/images.cpp \ ./SourceFiles/ui/scrollarea.cpp \ ./SourceFiles/ui/twidget.cpp \ + ./SourceFiles/window/section_widget.cpp \ + ./SourceFiles/window/slide_animation.cpp \ ./SourceFiles/window/top_bar_widget.cpp HEADERS += \ @@ -255,6 +258,7 @@ HEADERS += \ ./SourceFiles/boxes/passcodebox.h \ ./SourceFiles/boxes/photocropbox.h \ ./SourceFiles/boxes/photosendbox.h \ + ./SourceFiles/boxes/report_box.h \ ./SourceFiles/boxes/sessionsbox.h \ ./SourceFiles/boxes/stickersetbox.h \ ./SourceFiles/boxes/usernamebox.h \ @@ -342,6 +346,9 @@ HEADERS += \ ./SourceFiles/ui/images.h \ ./SourceFiles/ui/scrollarea.h \ ./SourceFiles/ui/twidget.h \ + ./SourceFiles/window/section_memento.h \ + ./SourceFiles/window/section_widget.h \ + ./SourceFiles/window/slide_animation.h \ ./SourceFiles/window/top_bar_widget.h win32 { diff --git a/Telegram/build/version b/Telegram/build/version index 648a9fccf..5ff8112e5 100644 --- a/Telegram/build/version +++ b/Telegram/build/version @@ -3,4 +3,4 @@ AppVersionStrMajor 0.9 AppVersionStrSmall 0.9.49 AppVersionStr 0.9.49 AlphaChannel 0 -BetaVersion 0 +BetaVersion 9049001