mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-03-11 08:48:14 +00:00
Closed beta 1.2.8.2.
This commit is contained in:
parent
adcce61b52
commit
d4f4698c69
@ -9,7 +9,7 @@
|
||||
<Identity Name="TelegramMessengerLLP.TelegramDesktop"
|
||||
ProcessorArchitecture="ARCHITECTURE"
|
||||
Publisher="CN=536BC709-8EE1-4478-AF22-F0F0F26FF64A"
|
||||
Version="1.2.8.1" />
|
||||
Version="1.2.8.2" />
|
||||
<Properties>
|
||||
<DisplayName>Telegram Desktop</DisplayName>
|
||||
<PublisherDisplayName>Telegram Messenger LLP</PublisherDisplayName>
|
||||
|
@ -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"
|
||||
|
@ -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"
|
||||
|
@ -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";
|
||||
|
@ -103,7 +103,6 @@ Widget::Widget(
|
||||
|
||||
_showNext->setClickedCallback([this] {
|
||||
// #TODO feeds show next
|
||||
Ui::show(Box<InformBox>(lang(lng_admin_log_about_text)));
|
||||
});
|
||||
|
||||
_feed->unreadPositionChanges(
|
||||
|
@ -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 {
|
||||
|
@ -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<HistoryItem*> item);
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
@ -23,7 +23,7 @@ class Controller;
|
||||
} // namespace Window
|
||||
|
||||
namespace Data {
|
||||
class Group;
|
||||
struct Group;
|
||||
} // namespace Data
|
||||
|
||||
namespace HistoryView {
|
||||
|
@ -3,4 +3,4 @@ AppVersionStrMajor 1.2
|
||||
AppVersionStrSmall 1.2.8
|
||||
AppVersionStr 1.2.8
|
||||
AlphaChannel 0
|
||||
BetaVersion 1002008001
|
||||
BetaVersion 1002008002
|
||||
|
Loading…
Reference in New Issue
Block a user