Version 1.2.1
This commit is contained in:
parent
116916ae70
commit
e3fa5fd242
5 changed files with 33 additions and 10 deletions
|
|
@ -38,8 +38,8 @@ IDI_ICON6 ICON "..\\art\\icon256old.ico"
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,2,0,0
|
FILEVERSION 1,2,1,0
|
||||||
PRODUCTVERSION 1,2,0,0
|
PRODUCTVERSION 1,2,1,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
|
@ -56,10 +56,10 @@ BEGIN
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "CompanyName", "Kotatogram"
|
VALUE "CompanyName", "Kotatogram"
|
||||||
VALUE "FileDescription", "Kotatogram Desktop"
|
VALUE "FileDescription", "Kotatogram Desktop"
|
||||||
VALUE "FileVersion", "1.2.0.0"
|
VALUE "FileVersion", "1.2.1.0"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2019-2020"
|
VALUE "LegalCopyright", "Copyright (C) 2019-2020"
|
||||||
VALUE "ProductName", "Kotatogram Desktop"
|
VALUE "ProductName", "Kotatogram Desktop"
|
||||||
VALUE "ProductVersion", "1.2.0.0"
|
VALUE "ProductVersion", "1.2.1.0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
|
||||||
|
|
@ -24,8 +24,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,2,0,0
|
FILEVERSION 1,2,1,0
|
||||||
PRODUCTVERSION 1,2,0,0
|
PRODUCTVERSION 1,2,1,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
|
@ -42,10 +42,10 @@ BEGIN
|
||||||
BEGIN
|
BEGIN
|
||||||
VALUE "CompanyName", "Kotatogram"
|
VALUE "CompanyName", "Kotatogram"
|
||||||
VALUE "FileDescription", "Kotatogram Desktop Updater"
|
VALUE "FileDescription", "Kotatogram Desktop Updater"
|
||||||
VALUE "FileVersion", "1.2.0.0"
|
VALUE "FileVersion", "1.2.1.0"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2019-2020"
|
VALUE "LegalCopyright", "Copyright (C) 2019-2020"
|
||||||
VALUE "ProductName", "Kotatogram Desktop"
|
VALUE "ProductName", "Kotatogram Desktop"
|
||||||
VALUE "ProductVersion", "1.2.0.0"
|
VALUE "ProductVersion", "1.2.1.0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
|
||||||
|
|
@ -26,5 +26,5 @@ constexpr auto AppVersion = 2000000;
|
||||||
constexpr auto AppVersionStr = "2.0";
|
constexpr auto AppVersionStr = "2.0";
|
||||||
constexpr auto AppBetaVersion = false;
|
constexpr auto AppBetaVersion = false;
|
||||||
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;
|
||||||
constexpr auto AppKotatoVersion = 1002000;
|
constexpr auto AppKotatoVersion = 1002001;
|
||||||
constexpr auto AppKotatoVersionStr = "1.2";
|
constexpr auto AppKotatoVersionStr = "1.2.1";
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,12 @@
|
||||||
|
1.2.1 (31.03.2020)
|
||||||
|
- Updated TDesktop sources to 2.0.
|
||||||
|
- Option to set default folder. Also added context menu to All chats filter.
|
||||||
|
- Option to show only unmuted chats in folder counter.
|
||||||
|
- Option to hide Edit button in folder sidebar.
|
||||||
|
- Compact folder sidebar option.
|
||||||
|
- Restored unreleased notification toggle as option.
|
||||||
|
- tg://settings/kotato link to open Kotatogram Settings. Also added three-dots menu there.
|
||||||
|
|
||||||
1.2 (19.03.2020)
|
1.2 (19.03.2020)
|
||||||
- Updated TDesktop sources to 1.9.21.
|
- Updated TDesktop sources to 1.9.21.
|
||||||
- New logo and option to choose alternative icons.
|
- New logo and option to choose alternative icons.
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,20 @@
|
||||||
<keyword>im</keyword>
|
<keyword>im</keyword>
|
||||||
</keywords>
|
</keywords>
|
||||||
<releases>
|
<releases>
|
||||||
|
<release version="1.2.1" date="2020-03-31">
|
||||||
|
<description>
|
||||||
|
<p>TDesktop sources were updated to 2.0.</p>
|
||||||
|
<p>Also in this update:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Option to set default folder. Also added context menu to All chats filter.</li>
|
||||||
|
<li>Option to show only unmuted chats in folder counter.</li>
|
||||||
|
<li>Option to hide Edit button in folder sidebar.</li>
|
||||||
|
<li>Compact folder sidebar option.</li>
|
||||||
|
<li>Restored unreleased notification toggle as option.</li>
|
||||||
|
<li>tg://settings/kotato link to open Kotatogram Settings. Also added three-dots menu there.</li>
|
||||||
|
</ul>
|
||||||
|
</description>
|
||||||
|
</release>
|
||||||
<release version="1.2" date="2020-03-19">
|
<release version="1.2" date="2020-03-19">
|
||||||
<description>
|
<description>
|
||||||
<p>TDesktop sources were updated to 1.9.21.</p>
|
<p>TDesktop sources were updated to 1.9.21.</p>
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue