Skip to content

Commit 5cd8036

Browse files
committed
2.1.4 >> 2.1.5
Signed-off-by: Burhanverse <contact@burhanverse.eu.org>
1 parent 20b7bfe commit 5cd8036

8 files changed

Lines changed: 47 additions & 31 deletions

File tree

Telegram/Resources/uwp/AppX/AppxManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<Identity Name="TelegramMessengerLLP.TelegramDesktop"
1111
ProcessorArchitecture="ARCHITECTURE"
1212
Publisher="CN=536BC709-8EE1-4478-AF22-F0F0F26FF64A"
13-
Version="2.1.4.0" />
13+
Version="2.1.5.0" />
1414
<Properties>
1515
<DisplayName>FAgram Desktop</DisplayName>
1616
<PublisherDisplayName>Burhanverse</PublisherDisplayName>

Telegram/Resources/winrc/Telegram.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ IDI_ICON1 ICON "..\\art\\icon.ico"
4444
//
4545

4646
VS_VERSION_INFO VERSIONINFO
47-
FILEVERSION 2,1,0,4
48-
PRODUCTVERSION 2,1,0,4
47+
FILEVERSION 2,1,0,5
48+
PRODUCTVERSION 2,1,0,5
4949
FILEFLAGSMASK 0x3fL
5050
#ifdef _DEBUG
5151
FILEFLAGS 0x1L
@@ -62,10 +62,10 @@ BEGIN
6262
BEGIN
6363
VALUE "CompanyName", "FAteam"
6464
VALUE "FileDescription", "FAgram Desktop"
65-
VALUE "FileVersion", "2.1.4.0"
65+
VALUE "FileVersion", "2.1.5.0"
6666
VALUE "LegalCopyright", "Copyright (C) 2024-2026"
6767
VALUE "ProductName", "FAgram Desktop"
68-
VALUE "ProductVersion", "2.1.4.0"
68+
VALUE "ProductVersion", "2.1.5.0"
6969
END
7070
END
7171
BLOCK "VarFileInfo"

Telegram/Resources/winrc/Updater.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
3535
//
3636

3737
VS_VERSION_INFO VERSIONINFO
38-
FILEVERSION 2,1,0,4
39-
PRODUCTVERSION 2,1,0,4
38+
FILEVERSION 2,1,0,5
39+
PRODUCTVERSION 2,1,0,5
4040
FILEFLAGSMASK 0x3fL
4141
#ifdef _DEBUG
4242
FILEFLAGS 0x1L
@@ -53,10 +53,10 @@ BEGIN
5353
BEGIN
5454
VALUE "CompanyName", "FAteam"
5555
VALUE "FileDescription", "FAgram Desktop"
56-
VALUE "FileVersion", "2.1.4.0"
56+
VALUE "FileVersion", "2.1.5.0"
5757
VALUE "LegalCopyright", "Copyright (C) 2024-2026"
5858
VALUE "ProductName", "FAgram Desktop"
59-
VALUE "ProductVersion", "2.1.4.0"
59+
VALUE "ProductVersion", "2.1.5.0"
6060
END
6161
END
6262
BLOCK "VarFileInfo"

Telegram/SourceFiles/core/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ constexpr auto AppId = "{bce922fb-9080-4f17-b79a-6d7ecfc98e00}"_cs;
2222
constexpr auto AppNameOld = "Telegram Win (Unofficial)"_cs;
2323
constexpr auto AppName = "FAgram Desktop"_cs;
2424
constexpr auto AppFile = "FAgram"_cs;
25-
constexpr auto AppVersion = 2001004;
26-
constexpr auto AppVersionStr = "2.1.4";
25+
constexpr auto AppVersion = 2001005;
26+
constexpr auto AppVersionStr = "2.1.5";
2727
constexpr auto AppBetaVersion = false;
2828
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;

Telegram/SourceFiles/fa/fa_changelogs.cpp

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,6 @@ struct BuiltInChangelog {
3737

3838
const std::vector<BuiltInChangelog> &GetBuiltInChangelogs() {
3939
static const std::vector<BuiltInChangelog> entries = {
40-
{
41-
2001000,
42-
"- Updated to tdesktop v6.3.10.beta\n"
43-
"- Added support for tg://chat?id= links, similar to tg://user?id=, but for groups and channels.\n"
44-
"- Use FAgram title on more UI-visible occurrences\n"
45-
"- Removed TZ info from message time\n"
46-
"- Fix quote & reply on context menu shortcuts mode\n"
47-
"- Added support tg://openmessage?chat_id=\n"
48-
"- Updated changelog service notification\n"
49-
"- Fix disable ads on global search results\n"
50-
"- Fix overall behaviour of context menu shortcuts mode\n\n"
51-
"@FAgramDesktop\n"
52-
},
5340
{
5441
2001001,
5542
"- Added user status dot for online/offline activity\n"
@@ -79,7 +66,22 @@ const std::vector<BuiltInChangelog> &GetBuiltInChangelogs() {
7966
"- Fixed context menu shortcut icons mode\n\n"
8067
"@FAgramDesktop\n"
8168

82-
}
69+
},
70+
{
71+
2001005,
72+
"- Added option to auto parse markdown hyperlinks\n"
73+
"- Added option to hide sidebar tab titles\n"
74+
"- Added option to show online status dot only\n"
75+
"- New category for context menu settings options\n"
76+
"- Now black dot shows for any user with 'Last seen a long time ago' status\n"
77+
"- Show forward without captions option on single-item forward submenu\n"
78+
"- Updated userpic/avatar rounding to apply in group comments preview too\n"
79+
"- What's New! chat is now toggleable\n"
80+
"- Updated translations\n"
81+
"- Updated source URLs\n"
82+
"- Some code optimizations\n\n"
83+
"@FAgramDesktop\n"
84+
},
8385
};
8486
return entries;
8587
}

Telegram/SourceFiles/fa/fa_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ For license and copyright information please follow this link:
88

99
#pragma once
1010

11-
constexpr auto AppFAVersion = 2001004;
12-
constexpr auto AppFAVersionStr = "2.1.4";
11+
constexpr auto AppFAVersion = 2001005;
12+
constexpr auto AppFAVersionStr = "2.1.5";
1313
constexpr auto AppTGDVersion = "6.4.2";
1414
constexpr auto AppFABetaVersion = false;

Telegram/build/version

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
AppVersion 2001004
1+
AppVersion 2001005
22
AppVersionStrMajor 2.1
3-
AppVersionStrSmall 2.1.4
4-
AppVersionStr 2.1.4
3+
AppVersionStrSmall 2.1.5
4+
AppVersionStr 2.1.5
55
BetaChannel 0
66
AlphaVersion 0
7-
AppVersionOriginal 2.1.4
7+
AppVersionOriginal 2.1.5

changelog.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
2.1.5 (18.01.26)
2+
3+
- Added option to auto parse markdown hyperlinks
4+
- Added option to hide sidebar tab titles
5+
- Added option to show online status dot only
6+
- New category for context menu settings options
7+
- Now black dot shows for any user with "Last seen a long time ago" status
8+
- Show forward without captions option on single-item forward submenu
9+
- Updated userpic/avatar rounding to apply in group comments preview too
10+
- What's New! chat is now toggleable
11+
- Updated translations
12+
- Updated source URLs
13+
- Some code optimizations
14+
115
2.1.4 (14.01.26)
216

317
- Updated tdesktop to v6.4.2

0 commit comments

Comments
 (0)