Skip to content

Commit 085c4ba

Browse files
committed
Version 6.7.2.
- System audio capture for desktop sharing on macOS. - Split voice and audio playback speeds. - Unread media dot for voice messages in dialog list. - Add 'x' button to AI Tools promo toast. - Fix long forward messages preview in box. - Fix custom emoji reaction search by category. - Fix double context menu in photo sending confirmation. - Fix possible crash in middle-elision. - Fix possible crash in GIFs search.
1 parent 805225d commit 085c4ba

File tree

7 files changed

+31
-22
lines changed

7 files changed

+31
-22
lines changed

.claude/commands/release.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,11 @@ Use this exact format (date is today in DD.MM.YY):
6565

6666
Prepend the new entry at the very top of `changelog.txt`, separated by a blank line from the previous first entry. Use the Edit tool.
6767

68-
### 8. Show the entry and wait for approval
68+
### 8. Wait for approval
6969

70-
Print the full changelog entry in chat and ask the user to review it. Tell them they can:
71-
- Approve as-is.
72-
- Edit `changelog.txt` directly in the IDE and tell you to continue.
73-
- Tell you what to change in chat.
70+
After writing the entry to `changelog.txt` (step 7), tell the user the changelog has been updated and ask them to review it in the IDE. They can edit it directly and tell you to continue, or tell you what to change in chat. Do **not** print the full entry in chat — the file itself is the review surface.
7471

75-
**Do NOT proceed until the user explicitly approves.** If they request changes, apply them and show the updated entry again.
72+
**Do NOT proceed until the user explicitly approves.**
7673

7774
### 9. Run set_version
7875

@@ -96,7 +93,7 @@ Stage all changes and create a commit. The commit message format:
9693
- For stable: `Version <major>.<minor>.` if patch is 0, otherwise `Version <major>.<minor>.<patch>.`
9794
- For beta: `Beta version <major>.<minor>.<patch>.`
9895

99-
**Then an empty line, then the changelog bullets.** Each bullet line (starting with `- `) must be wrapped at around 77-78 characters. When wrapping, break at logically correct places (between words/phrases) and indent continuation lines with two spaces.
96+
**Then an empty line, then the changelog bullets.** Copy bullet lines from the changelog as-is. Only wrap lines that exceed 72 characters; shorter lines must stay on a single line. When wrapping is needed, break at logically correct places (between words/phrases) and indent continuation lines with two spaces.
10097

10198
Example commit message:
10299
```

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="6.7.1.0" />
13+
Version="6.7.2.0" />
1414
<Properties>
1515
<DisplayName>Telegram Desktop</DisplayName>
1616
<PublisherDisplayName>Telegram Messenger LLP</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\\icon256.ico"
4444
//
4545

4646
VS_VERSION_INFO VERSIONINFO
47-
FILEVERSION 6,7,1,0
48-
PRODUCTVERSION 6,7,1,0
47+
FILEVERSION 6,7,2,0
48+
PRODUCTVERSION 6,7,2,0
4949
FILEFLAGSMASK 0x3fL
5050
#ifdef _DEBUG
5151
FILEFLAGS 0x1L
@@ -62,10 +62,10 @@ BEGIN
6262
BEGIN
6363
VALUE "CompanyName", "Telegram FZ-LLC"
6464
VALUE "FileDescription", "Telegram Desktop"
65-
VALUE "FileVersion", "6.7.1.0"
65+
VALUE "FileVersion", "6.7.2.0"
6666
VALUE "LegalCopyright", "Copyright (C) 2014-2026"
6767
VALUE "ProductName", "Telegram Desktop"
68-
VALUE "ProductVersion", "6.7.1.0"
68+
VALUE "ProductVersion", "6.7.2.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 6,7,1,0
39-
PRODUCTVERSION 6,7,1,0
38+
FILEVERSION 6,7,2,0
39+
PRODUCTVERSION 6,7,2,0
4040
FILEFLAGSMASK 0x3fL
4141
#ifdef _DEBUG
4242
FILEFLAGS 0x1L
@@ -53,10 +53,10 @@ BEGIN
5353
BEGIN
5454
VALUE "CompanyName", "Telegram FZ-LLC"
5555
VALUE "FileDescription", "Telegram Desktop Updater"
56-
VALUE "FileVersion", "6.7.1.0"
56+
VALUE "FileVersion", "6.7.2.0"
5757
VALUE "LegalCopyright", "Copyright (C) 2014-2026"
5858
VALUE "ProductName", "Telegram Desktop"
59-
VALUE "ProductVersion", "6.7.1.0"
59+
VALUE "ProductVersion", "6.7.2.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 = "{53F49750-6209-4FBF-9CA8-7A333C87D1ED}"_cs;
2222
constexpr auto AppNameOld = "Telegram Win (Unofficial)"_cs;
2323
constexpr auto AppName = "Telegram Desktop"_cs;
2424
constexpr auto AppFile = "Telegram"_cs;
25-
constexpr auto AppVersion = 6007001;
26-
constexpr auto AppVersionStr = "6.7.1";
25+
constexpr auto AppVersion = 6007002;
26+
constexpr auto AppVersionStr = "6.7.2";
2727
constexpr auto AppBetaVersion = false;
2828
constexpr auto AppAlphaVersion = TDESKTOP_ALPHA_VERSION;

Telegram/build/version

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
AppVersion 6007001
1+
AppVersion 6007002
22
AppVersionStrMajor 6.7
3-
AppVersionStrSmall 6.7.1
4-
AppVersionStr 6.7.1
3+
AppVersionStrSmall 6.7.2
4+
AppVersionStr 6.7.2
55
BetaChannel 0
66
AlphaVersion 0
7-
AppVersionOriginal 6.7.1
7+
AppVersionOriginal 6.7.2

changelog.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
6.7.2 (03.04.26)
2+
3+
- System audio capture for desktop sharing on macOS.
4+
- Split voice and audio playback speeds.
5+
- Unread media dot for voice messages in dialog list.
6+
- Add 'x' button to AI Tools promo toast.
7+
- Fix long forward messages preview in box.
8+
- Fix custom emoji reaction search by category.
9+
- Fix double context menu in photo sending confirmation.
10+
- Fix possible crash in middle-elision.
11+
- Fix possible crash in GIFs search.
12+
113
6.7.1 (01.04.26)
214

315
- Fix crash in emoji panel animation.

0 commit comments

Comments
 (0)