diff --git a/Telegram/Resources/uwp/AppX/AppxManifest.xml b/Telegram/Resources/uwp/AppX/AppxManifest.xml
index 9fe06caad..3aa5c777d 100644
--- a/Telegram/Resources/uwp/AppX/AppxManifest.xml
+++ b/Telegram/Resources/uwp/AppX/AppxManifest.xml
@@ -9,7 +9,7 @@
+ Version="1.2.8.2" />
Telegram Desktop
Telegram Messenger LLP
diff --git a/Telegram/Resources/winrc/Telegram.rc b/Telegram/Resources/winrc/Telegram.rc
index 8f51474f9..7834573cd 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 1,2,8,1
- PRODUCTVERSION 1,2,8,1
+ FILEVERSION 1,2,8,2
+ PRODUCTVERSION 1,2,8,2
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -52,10 +52,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "Telegram Messenger LLP"
VALUE "FileDescription", "Telegram Desktop"
- VALUE "FileVersion", "1.2.8.1"
+ VALUE "FileVersion", "1.2.8.2"
VALUE "LegalCopyright", "Copyright (C) 2014-2018"
VALUE "ProductName", "Telegram Desktop"
- VALUE "ProductVersion", "1.2.8.1"
+ VALUE "ProductVersion", "1.2.8.2"
END
END
BLOCK "VarFileInfo"
diff --git a/Telegram/Resources/winrc/Updater.rc b/Telegram/Resources/winrc/Updater.rc
index 270ce950a..f727ce10c 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 1,2,8,1
- PRODUCTVERSION 1,2,8,1
+ FILEVERSION 1,2,8,2
+ PRODUCTVERSION 1,2,8,2
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -43,10 +43,10 @@ BEGIN
BEGIN
VALUE "CompanyName", "Telegram Messenger LLP"
VALUE "FileDescription", "Telegram Desktop Updater"
- VALUE "FileVersion", "1.2.8.1"
+ VALUE "FileVersion", "1.2.8.2"
VALUE "LegalCopyright", "Copyright (C) 2014-2018"
VALUE "ProductName", "Telegram Desktop"
- VALUE "ProductVersion", "1.2.8.1"
+ VALUE "ProductVersion", "1.2.8.2"
END
END
BLOCK "VarFileInfo"
diff --git a/Telegram/SourceFiles/core/version.h b/Telegram/SourceFiles/core/version.h
index c11efab94..b963d7e7c 100644
--- a/Telegram/SourceFiles/core/version.h
+++ b/Telegram/SourceFiles/core/version.h
@@ -9,7 +9,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "core/utils.h"
-#define BETA_VERSION_MACRO (1002008001ULL)
+#define BETA_VERSION_MACRO (1002008002ULL)
constexpr int AppVersion = 1002008;
constexpr str_const AppVersionStr = "1.2.8";
diff --git a/Telegram/SourceFiles/history/feed/history_feed_section.cpp b/Telegram/SourceFiles/history/feed/history_feed_section.cpp
index fcd2e420d..9bf3c4f4e 100644
--- a/Telegram/SourceFiles/history/feed/history_feed_section.cpp
+++ b/Telegram/SourceFiles/history/feed/history_feed_section.cpp
@@ -103,7 +103,6 @@ Widget::Widget(
_showNext->setClickedCallback([this] {
// #TODO feeds show next
- Ui::show(Box(lang(lng_admin_log_about_text)));
});
_feed->unreadPositionChanges(
diff --git a/Telegram/SourceFiles/history/history_inner_widget.h b/Telegram/SourceFiles/history/history_inner_widget.h
index 4561866e3..4134a5ecc 100644
--- a/Telegram/SourceFiles/history/history_inner_widget.h
+++ b/Telegram/SourceFiles/history/history_inner_widget.h
@@ -14,7 +14,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
#include "history/view/history_view_top_bar_widget.h"
namespace Data {
-class Group;
+struct Group;
} // namespace Data
namespace HistoryView {
diff --git a/Telegram/SourceFiles/history/history_item_text.h b/Telegram/SourceFiles/history/history_item_text.h
index 50fbf93a9..41acb355d 100644
--- a/Telegram/SourceFiles/history/history_item_text.h
+++ b/Telegram/SourceFiles/history/history_item_text.h
@@ -10,7 +10,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
class HistoryItem;
namespace Data {
-class Group;
+struct Group;
} // namespace Data
TextWithEntities HistoryItemText(not_null item);
diff --git a/Telegram/SourceFiles/history/view/history_view_list_widget.cpp b/Telegram/SourceFiles/history/view/history_view_list_widget.cpp
index c885640f7..847f116c1 100644
--- a/Telegram/SourceFiles/history/view/history_view_list_widget.cpp
+++ b/Telegram/SourceFiles/history/view/history_view_list_widget.cpp
@@ -1771,7 +1771,7 @@ void ListWidget::mouseActionFinish(
&& _selectedTextRange.from != _selectedTextRange.to) {
if (const auto view = viewForItem(_selectedTextItem)) {
SetClipboardWithEntities(
- _selectedTextItem->selectedText(_selectedTextRange),
+ view->selectedText(_selectedTextRange),
QClipboard::Selection);
}
}
diff --git a/Telegram/SourceFiles/history/view/history_view_list_widget.h b/Telegram/SourceFiles/history/view/history_view_list_widget.h
index f7f0940db..6c9e1e107 100644
--- a/Telegram/SourceFiles/history/view/history_view_list_widget.h
+++ b/Telegram/SourceFiles/history/view/history_view_list_widget.h
@@ -23,7 +23,7 @@ class Controller;
} // namespace Window
namespace Data {
-class Group;
+struct Group;
} // namespace Data
namespace HistoryView {
diff --git a/Telegram/build/version b/Telegram/build/version
index 4944fb526..a733b6adf 100644
--- a/Telegram/build/version
+++ b/Telegram/build/version
@@ -3,4 +3,4 @@ AppVersionStrMajor 1.2
AppVersionStrSmall 1.2.8
AppVersionStr 1.2.8
AlphaChannel 0
-BetaVersion 1002008001
+BetaVersion 1002008002