mirror of https://github.com/procxx/kepka.git
Alpha 1.0.11: crashfix in theme preview generator.
This commit is contained in:
parent
b76e5853a8
commit
0411f05c39
|
@ -9,7 +9,7 @@
|
||||||
<Identity Name="TelegramDesktop"
|
<Identity Name="TelegramDesktop"
|
||||||
ProcessorArchitecture="x64"
|
ProcessorArchitecture="x64"
|
||||||
Publisher="CN=Telegram Messenger LLP, O=Telegram Messenger LLP, L=London, C=GB"
|
Publisher="CN=Telegram Messenger LLP, O=Telegram Messenger LLP, L=London, C=GB"
|
||||||
Version="1.0.10.0" />
|
Version="1.0.11.0" />
|
||||||
<Properties>
|
<Properties>
|
||||||
<DisplayName>Telegram Desktop</DisplayName>
|
<DisplayName>Telegram Desktop</DisplayName>
|
||||||
<PublisherDisplayName>Telegram Messenger LLP</PublisherDisplayName>
|
<PublisherDisplayName>Telegram Messenger LLP</PublisherDisplayName>
|
||||||
|
|
|
@ -34,8 +34,8 @@ IDI_ICON1 ICON "..\\art\\icon256.ico"
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,0,10,0
|
FILEVERSION 1,0,11,0
|
||||||
PRODUCTVERSION 1,0,10,0
|
PRODUCTVERSION 1,0,11,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -52,10 +52,10 @@ BEGIN
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "CompanyName", "Telegram Messenger LLP"
|
VALUE "CompanyName", "Telegram Messenger LLP"
|
||||||
VALUE "FileDescription", "Telegram Desktop official messenger"
|
VALUE "FileDescription", "Telegram Desktop official messenger"
|
||||||
VALUE "FileVersion", "1.0.10.0"
|
VALUE "FileVersion", "1.0.11.0"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2014-2017"
|
VALUE "LegalCopyright", "Copyright (C) 2014-2017"
|
||||||
VALUE "ProductName", "Telegram Desktop"
|
VALUE "ProductName", "Telegram Desktop"
|
||||||
VALUE "ProductVersion", "1.0.10.0"
|
VALUE "ProductVersion", "1.0.11.0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
|
@ -25,8 +25,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,0,10,0
|
FILEVERSION 1,0,11,0
|
||||||
PRODUCTVERSION 1,0,10,0
|
PRODUCTVERSION 1,0,11,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -43,10 +43,10 @@ BEGIN
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "CompanyName", "Telegram Messenger LLP"
|
VALUE "CompanyName", "Telegram Messenger LLP"
|
||||||
VALUE "FileDescription", "Telegram Desktop Updater"
|
VALUE "FileDescription", "Telegram Desktop Updater"
|
||||||
VALUE "FileVersion", "1.0.10.0"
|
VALUE "FileVersion", "1.0.11.0"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2014-2017"
|
VALUE "LegalCopyright", "Copyright (C) 2014-2017"
|
||||||
VALUE "ProductName", "Telegram Desktop"
|
VALUE "ProductName", "Telegram Desktop"
|
||||||
VALUE "ProductVersion", "1.0.10.0"
|
VALUE "ProductVersion", "1.0.11.0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
|
@ -24,7 +24,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
|
|
||||||
#define BETA_VERSION_MACRO (0ULL)
|
#define BETA_VERSION_MACRO (0ULL)
|
||||||
|
|
||||||
constexpr int AppVersion = 1000010;
|
constexpr int AppVersion = 1000011;
|
||||||
constexpr str_const AppVersionStr = "1.0.10";
|
constexpr str_const AppVersionStr = "1.0.11";
|
||||||
constexpr bool AppAlphaVersion = true;
|
constexpr bool AppAlphaVersion = true;
|
||||||
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;
|
constexpr uint64 AppBetaVersion = BETA_VERSION_MACRO;
|
||||||
|
|
|
@ -875,6 +875,9 @@ void Generator::setTextPalette(const style::TextPalette &st) {
|
||||||
_textPalette.linkFg = st.linkFg[_palette].clone();
|
_textPalette.linkFg = st.linkFg[_palette].clone();
|
||||||
_textPalette.monoFg = st.monoFg[_palette].clone();
|
_textPalette.monoFg = st.monoFg[_palette].clone();
|
||||||
_textPalette.selectBg = st.selectBg[_palette].clone();
|
_textPalette.selectBg = st.selectBg[_palette].clone();
|
||||||
|
_textPalette.selectFg = st.selectFg[_palette].clone();
|
||||||
|
_textPalette.selectLinkFg = st.selectLinkFg[_palette].clone();
|
||||||
|
_textPalette.selectMonoFg = st.selectMonoFg[_palette].clone();
|
||||||
_textPalette.selectOverlay = st.selectOverlay[_palette].clone();
|
_textPalette.selectOverlay = st.selectOverlay[_palette].clone();
|
||||||
_p->setTextPalette(_textPalette);
|
_p->setTextPalette(_textPalette);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AppVersion 1000010
|
AppVersion 1000011
|
||||||
AppVersionStrMajor 1.0
|
AppVersionStrMajor 1.0
|
||||||
AppVersionStrSmall 1.0.10
|
AppVersionStrSmall 1.0.11
|
||||||
AppVersionStr 1.0.10
|
AppVersionStr 1.0.11
|
||||||
AlphaChannel 1
|
AlphaChannel 1
|
||||||
BetaVersion 0
|
BetaVersion 0
|
||||||
|
|
Loading…
Reference in New Issue