-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchangelog.txt
More file actions
4966 lines (3182 loc) · 140 KB
/
changelog.txt
File metadata and controls
4966 lines (3182 loc) · 140 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
6.6.2 (03.03.26)
- Fix editing of media files.
- Fix admin rights in legacy groups for tag editing.
- Fix opening emoji packs from custom emoji click.
6.6.1 (02.03.26)
- Fix crash in legacy groups members list.
- Fix display of member tags in legacy groups.
- Make fast reply button appear instantly.
- Allow hiding fast reply button.
6.6 (01.03.26)
- Member Tags in groups.
- Disable Sharing in Private Chats.
- Timestamps for Polls.
- Log In With Telegram.
- Time and Date Formatting.
6.5.1 (09.02.26)
- Drag-n-drop chats to folders.
- Fix crash in adding Recommended folders.
- Fix crash in crafting gifts selection layer.
- Fix disappeared Login Email button in Settings.
- Fix Tab focusing chats search when autocompleting hashtags or mentions.
6.5 (06.02.26)
- Leaving Groups to a New Admin.
- Log In With Telegram.
- Gift Crafting.
- Colored Buttons for Bots.
- Search in Settings.
6.4.4 beta (29.01.26)
- Fix crash in topic group opening.
- Show correct profile colors preview when edit.
- Strip quote entities in media viewer.
6.4.3 beta (28.01.26)
- Search in Settings.
6.4.2 (08.01.26)
- Fix non-closing popup menu items.
- Fix crash in my profile section resize.
- Fix some text glitches because of render optimizations.
6.4.1 (05.01.26)
- Fix context menu double activations.
- Fix text rendering in animating bubbles.
6.4 (03.01.26)
- AI Summaries for posts in channels.
6.3.10 beta (22.12.25)
- Fix user info showing from large group messages.
- Fix sent state of outgoing messages in forums.
- Show who sent your unique collectible gifts.
- Update Qt on all platforms.
6.3.9 (15.12.25)
- Fix possible crash in audio playback speed menu.
- Fix possible crash in forum or bot topic deletion.
6.3.8 (15.12.25)
- Fix crash on older Linux.
6.3.7 (12.12.25)
- Fix login with passkey visibility on Windows.
- Improve gift upgrading experience.
6.3.6 (06.12.25)
- Fix crash in media viewer.
- Fix crash in experimental settings.
6.3.5 (05.12.25)
- Offer stars or TON for unique gifts.
- Preview gift auctions before they start.
- Support passkey login on Windows.
6.3.4 (26.11.25)
- Show active auctions above chats list.
- Add star sending effects in live stories.
- Fix back button in group member profile view.
- Export separate topics message history.
- Export audio files saved to profile.
- Many different crash fixes.
6.3.3 (21.11.25)
- Some more improvements for gift auctions.
6.3.2 (20.11.25)
- Improved support for gift auctions.
- Reorder stories in stories albums in My Profile.
- Bug fixes in new profile cover design.
- Add your Saved Music to data export.
6.3.1 (17.11.25)
- Reorder saved music in My Profile.
- Fix new cover overlapping information in My Profile.
- Fix opening stories from My Profile.
- Fix media viewer breaking after viewing Live Stories.
- Fix several possible crashes.
6.3 (15.11.25)
- Support for Gift auctions.
- Support for Live stories.
- New profile pages design.
6.2.6 beta (07.11.25)
- Bug fixes in the new profile page design.
6.2.5 beta (28.10.25)
- New profile pages design.
- Qt 6.10 on Linux.
6.2.4 (22.10.25)
- Highlight links in contact notes.
- Show menu with screen share controls in wide group call mode.
- Fix possible crash in saved music removing.
- Fix crash in theme editor.
6.2.3 (12.10.25)
- Fix crash when viewing messages with hidden senders.
- Fix possible crash when editing contacts.
- Fix layout of character count warning in contact notes.
- Fix icons when editing contacts.
- Fix color of sending messages animation in complex themes.
- Fix crash in chat open on Flatpak build.
6.2.2 (10.10.25)
- Fix layer.
6.2.1 (10.10.25)
- Fix sending gifts.
- Fix possible crash on Linux.
6.2 (10.10.25)
- Comments and reactions in group calls.
- Notes for contacts.
- Suggested birthdays.
- Threads for AI bots.
- Reorder gifts collections and stories albums.
- Reorder gifts inside collections.
- Apply tags instantly when forwarding to Saved Messages.
- Choose which screen to show notifications on.
- Nice text message sending animation.
6.1.4 (06.10.25)
- Allow add to folder from recent / top chats.
- Fix clear history of group chats.
- Fix several crashes.
6.1.3 (06.09.25)
- Fix dead keys / alt combinations / input methods issues.
6.1.2 (02.09.25)
- Close selected chat in Ctrl+Tab chat switch by 'Q'.
- Auto-split pasted multiple lines to checklist task creation.
- Fix color picker in userpic builder.
6.1.1 (01.09.25)
- Ctrl+Tab / Ctrl+Shift+Tab collect chats on every launch.
- Fix Ctrl+Tab / Ctrl+Shift+Tab shortcut override.
- Fix possible crashes in saved music.
- Fix webview error label alignment.
6.1 (31.08.25)
- Music on Profiles.
- Gift Themes.
- Gift Value Information.
- Upgrading Gifts for Other Users.
6.0.3 beta (22.08.25)
- Ctrl+Tab / Ctrl+Shift+Tab for last opened chats switching.
- New topic dividers for groups with topics and tabs.
- Adjust volume of notification sounds.
- Show stars required for the next rating level.
- IV support on Linux (in case WebView works).
6.0.2 (01.08.25)
- Improve design of profile stars rating.
6.0.1 (01.08.25)
- Fix crashing on Windows 7.
6.0 (31.07.25)
- Public Post Search.
- Story Albums.
- Gift Collections.
- Profile Rating.
5.16.6 (25.07.25)
- Fix bad layout in box buttons.
- Fix several problems in gift collections.
5.16.5 (23.07.25)
- Age verification support.
5.16.4 (11.07.25)
- Fix problem with negative unread counters.
- Fix stars values display in statistics.
- Fix crash in messages fee disabling.
5.16.3 (08.07.25)
- Allow removing / charging fee in channel direct messages.
- Don't offer creating checklists in channels.
- Support author channel in gifts.
5.16.2 (04.07.25)
- Fix crash in some checklists.
- Fix problems with some private chats message sending.
- Fix chats list preview for rejected/balance-low suggestions.
5.16.1 (02.07.25)
- Fix inline keyboard updating in bot messages.
- Fix possible crash in fast chat switching.
- Different minor fixes.
5.16 (01.07.25)
- Create private and group checklists.
- Suggest Posts in Channels.
- Monetizing via Suggested Posts.
5.15.4 (12.06.25)
- Fix updating messages in Saved Messages subchats.
- Fix possible issues with mouse cursor on Linux.
5.15.3 (09.06.25)
- Fix new contact top bar appearance.
- Remove change photo button for channel direct messages.
5.15.2 (05.06.25)
- Fix sending messages in new forum layout.
- Add statistics for user stars.
5.15.1 (05.06.25)
- Fix launch on Windows 7.
- Fix launch on older Linux distributions.
- Fix crash in group chat message right click.
- Fix unread counters in channel direct messages.
- Don't generate "User joined" message in channel direct messages.
- Fix some other glitches in new forums and channel direct messages.
5.15 (04.06.25)
- Send Direct Messages to Channels.
- Enable New Tab Layout for Topics.
- Create Polls with Up To 12 Options.
5.14.3 (18.05.25)
- Fix stale birthday suggestions removing.
- Fix notification click opening a new window.
5.14.2 (08.05.25)
- Buy Rare Gifts in the Marketplace.
- Sell Your Gifts for Stars.
- Set Your Channel to Auto-Translate.
5.14.1 (01.05.25)
- Fix launching on Windows 7.
5.14 (01.05.25)
- Secure Group Calls Made Easy.
- Automated Business Accounts.
- New Gifts Settings.
5.13.1 (26.03.25)
- Fix crash in group/channel stories.
5.13 (26.03.25)
- Allow transferring my unique gifts from Send Gift section.
- Edit type of gifts you accept in Settings > Privacy and Security.
- Swipe navigation using swipe gesture on touchpads / touchscreens.
- Choose chat list quick action for swipe or middle click.
5.12.6 beta (20.03.25)
- Allow customizing chats list swipe left action.
- Fix custom emoji in poll results view.
- Fix crash in main menu swipe closing.
5.12.5 beta (14.03.25)
- Support swipe navigation on touchscreens.
- Close main menu by swipe navigation.
5.12.4 beta (12.03.25)
- Touchpad swipe back to go back in navigation history.
- Touchpad swipe between folders if they're horizontal.
- Out-of-the-box monochrome tray icon on Linux.
- Icons telegram{,{,-attention,-mute}-panel} are renamed
to org.telegram.desktop{,{,-attention,-mute}-symbolic} for
unified icon lookup in multiple (sometimes sandboxed) builds
and GTK icon recolorization support.
- Snap package got icon theming support,
the icon names are snap.telegram-desktop.{,{,-attention,-mute}-symbolic}
(notice the name ends with a dot in case of no suffix!).
5.12.3 (10.03.25)
- Fix a couple more crashes.
- Fix gift disappearing on unpin.
- Fix country emoji for Fragment numbers.
5.12.2 (09.03.25)
- Fix some crashes.
5.12.1 (08.03.25)
- Fix a crash in some chat switchings.
- Fix crashes in empty repaint callbacks.
5.12 (07.03.25)
- Set a fee for incoming messages from unknown users.
- Set a fee for messages in groups or channel comments.
- Show some information about who's messaging you.
- Pin gifts on your profile.
5.11.1 (13.02.25)
- Fix arbitrary cropping support in the image editor.
- Fix crash on round video message playback.
- Fix complex custom keyboard shortcuts.
5.11 (12.02.25)
- Copy video links at current time.
- Set custom video covers when posting to channels.
- Send paid reactions from the name of your channels.
5.10.8 beta (12.02.25)
- Edit keyboard shortcuts in Settings > Chat Settings.
- Hide controls in calls with incoming video.
- Fix several crashes.
5.10.7 (27.01.25)
- Fix some phrases for collectible gifts.
- Fix freeze in sound reencoding on macOS and Linux.
5.10.6 (26.01.25)
- Fix crash in opening users gifts section.
- Fix unintended sound in reaction notifications.
- Fix disabling notifications sound on macOS and Linux.
5.10.5 (24.01.25)
- Count all unread topics as a single chat in archive unread counter.
- Fix common groups section in bots profiles.
- Fix crash on scheduling messages from Share box.
- Fix silent notifications on macOS.
- Add support for 'sound-file' notification hint on Linux.
5.10.4 (22.01.25)
- Add messages search in channel comments.
- Allow sending your unique gifts to blockchain.
- Add option for running in backround on Linux.
- Fix possible freeze on quit on macOS.
5.10.3 (09.01.25)
- Fix a crash in legacy group opening.
5.10.2 (07.01.25)
- Fix double verification badge in profiles.
5.10.1 (06.01.25)
- Show "Boost group the send messages" information.
- Fix several gifts bugs and glitches.
- Fix several crashes.
5.10 (02.01.25)
- Collectible Gifts.
- Reactions for Service Messages.
- Verification from Third Parties.
- Custom Emoji in Folder Names.
5.9.2 beta (24.12.24)
- Fix some jump-to-message highlightings.
- Fix some long round video messages sending.
- Fix possible crash in global photos / videos.
- Fix streaming starting for some large video files.
- Fix possible drop of top peers / recent chats cache.
- Fix possible crashes in audio on macOS (rollback OpenAL).
5.9.1 beta (18.12.24)
- Add global media overview tabs in chats search.
- Add main menu "My Profile" with my stories and gifts access.
- Highlight some of search query on result message open.
- Fix highlighting quotes from bottom parts of long messages.
- Allow forward and reply bars together.
- Make gift price categories scrollable.
- Auto-send deep-link /start in existing bot chats.
5.9 (04.12.24)
- Affiliate programs for bots.
- Add option to show folder tags in chats list.
5.8.5 beta (29.11.24)
- Fix pinned chats in folders.
- Fix emoji in folder tags.
- Fix several crashes.
5.8.4 beta (28.11.24)
- Add option to show folder tags in chats list.
- Count group with topics as one chat in folder unread counter.
5.8.3 (23.11.24)
- Ctrl+Click on Reply in groups to reply in another chat.
- Fix freeze on forward messages box opening.
- Improve phrases in bot subscriptions.
- Several bugfixes.
5.8.2 (19.11.24)
- Improve bottom label color in mini apps.
- Fix some fullscreen issues in mini apps.
- Fix miss-order of archived chats in forward box.
- Fix file dialog for Windows on ARM.
- Fix emoji status pack view from profile regression.
5.8.1 (17.11.24)
- Fix several possible crashes.
5.8 (17.11.24)
- Updates in Mini Apps platform.
- Chat folders in forward and share boxes.
- Horizontal strip mode for chat folders.
5.7.4 beta (15.11.24)
- Enable auto night mode by default.
- Use muted chats folder badge in horizontal strip.
- Fix custom userpic context menu in comments and topics.
- Fix scrolling of chats folders together with the list.
- Fix chats folders list disappearing in some cases.
- Fix topic groups in share box with chats folders.
- Fix bot commands list in some groups.
- Fix crash in channel short info box display.
- Fix crash in bot monetization section opening.
- Fix crash in bot sponsored messages destruction.
5.7.3 beta (13.11.24)
- Option to show folders above the chats list.
- Folders on top of recipients list box.
5.7.2 (05.11.24)
- Fix recompressed video playback cutoff.
- Fix video message recroding on macOS.
5.7.1 (01.11.24)
- Fix occasional redundant newlines before message timestamp.
- Remove playback speed change on settings button click.
- Fix video playback settings button on hidpi screens.
- Fix return from Picture-in-Picture to media viewer.
- Fix video quality auto-switching in Picture-in-Picture.
- Add message link to channel stars transaction information.
- Fix GIF playback in media viewer.
- Fix several possible crashes.
5.7 (31.10.24)
- Sending video messages.
- New video quality selection in channels.
- Adding media to sent text messages via Edit.
- Ads in bots with revenue sharing with bot developers.
- Chat-specific hashtags.
5.6.4 beta (24.10.24)
- Add recording of video messages in case a camera is available.
- Add "Respect the Focus settings" for custom notifications on Windows.
5.6.3 (15.10.24)
- Add ability to change page scale in Instant View pages.
- Fix unnecessary timestamp jump to a new line.
- Fix secondary button positioning in miniapps.
- Fix a crash in QR code copy for a chat without a photo.
- Fix a crash in share options menu showing.
- Fix a crash on monitor disconnect.
5.6.2 (14.10.24)
- Message selection marks.
- Better copy username / public link / ID menu in profiles.
- Keyboard navigation (Up/Down/PageUp/PageDown) in chat preview.
- Improved QR options for profile links.
- Fix calls color problems on Windows.
- Fix scroll problems on Linux.
5.6.1 (07.10.24)
- Fix media viewer sometimes blocking the app after launch.
5.6 (05.10.24)
- Gifts for Telegram Stars.
- Mention / hashtag autocomplete in media caption field.
- Resizing the window used for web apps and games.
- "Include muted chats in folder counters" notifications setting.
- Emoji from Unicode 15.1.
5.5.8 beta (03.10.24)
- Allow drag-to-scroll in reply quote edit box.
- Add bot verified badge to web app title.
- Fix crash when opening some channels.
- Fix some visual glitches.
5.5.7 beta (01.10.24)
- Add ability to share QR code of bots.
- Add mention/hashtag autocomplete to Saved GIF caption.
- Fixed display of working hours in profiles.
- Respect the maximum reply quote length.
5.5.6 beta (19.09.24)
- Allow resizing the window used for web apps and games.
- Add mention / hashtag autocomplete in media caption field.
- Add "Include muted chats in folder counters" notifications setting.
- Auto-select URL suggested from clipboard when creating a custom link.
- Update emoji to Unicode 15.1.
- Fix replying with a quote from media album caption.
- Fix viewing custom emoji packs from media album caption.
5.5.5 (13.09.24)
- Suggest URL from clipboard when creating a custom link.
- Fix animated topic icons in topic info page.
- Fix excessive getChannelDifference requests.
5.5.4 (12.09.24)
- Fix channel updates stopping after difference request failing.
- Add QR code generation for your username in Settings.
- Fix swipe-to-reply gestures stopping. (macOS)
5.5.3 (10.09.24)
- Fix custom emoji sending.
- Add mention link QR code sharing.
- Fix sending files from network drives. (Windows)
5.5.2 (09.09.24)
- Support two bottom buttons in web apps.
- Fix text layout outside of the message bubble glitch.
- Don't stop video when dragging media viewer in window mode.
5.5.1 (06.09.24)
- Fix crash in peer short info box.
5.5 (06.09.24)
- Star Giveaways.
- Swipe-to-Reply.
- Audio device selection in one-on-one calls.
- Text selection in collapsed / expanded quotes.
5.4.6 beta (04.09.24)
- Add Swipe-To-Reply for modern touchpads and touchscreens.
- Add text selection in collapsed and expanded blockquotes.
- Fix text rendering in 100% interface scale on Windows.
5.4.5 beta (31.08.24)
- Fix possible crash in text rendering.
5.4.4 beta (29.08.24)
- Fix wrong layout and crashes in text shaping.
- Fix crashes in voice / video messages playback.
5.4.3 beta (29.08.24)
- Fix working on Windows 7.
5.4.2 beta (28.08.24)
- Select audio devices from one-on-one call window.
- Bug fixes and other minor improvements.
- New text layout testing.
5.4.1 (17.08.24)
- Fix crash when sending Star Reaction in comments.
- Fix loading "Send As" channels in a channel.
- Place Star Reaction always first in list.
- Removed paid Invite Links in groups.
5.4 (14.08.24)
- Super Channels with post authors' profiles.
- Support favorite channels with Star Reactions.
- Channel Subscriptions with Stars monthly payments.
5.3.2 (02.08.24)
- Fix crash on launch in some Linux systems.
5.3.1 (01.08.24)
- Open normal links from tonsite-s in system browser.
- Fix unicode tonsite:// links.
- Fix crash on Linux X11.
5.3 (31.07.24)
- View recent and popular web apps in chats search.
- Open several web apps in different windows.
- Gift Telegram Stars to your friends.
- Send location marks and venues.
- Open tonsite:// links in webview.
- Edit order of stickers in your packs.
5.2.6 beta (29.07.24)
- Fix launching on X11. (Linux)
5.2.5 beta (27.07.24)
- Fix media viewer context menu.
- Fix blockquotes layout in messages.
5.2.4 beta (24.07.24)
- Allow opening several web apps.
- Send location marks and venues.
5.2.3 (07.07.24)
- Fix crash in bot star stats page.
- Bug fixes and other minor improvements.
5.2.2 (02.07.24)
- Fix topics search in topic groups.
- Fix Instant View pages content updating.
5.2.1 (01.07.24)
- Fix crash when opening topic in a new window.
- Fix crash in topic search scope dropdown.
- Fix crash in video player.
- Fix feeze and crash in Instant View (Windows).
- Allow unlock by Apple Watch or System Password (macOS).
5.2 (30.06.24)
- Pay for content with Telegram Stars.
- Enable local passcode unlock by Windows Hello and Touch ID.
- Allow opening forums, topics and archive in a separate window.
5.1.8 beta (15.06.24)
- Support nice blockquotes and code blocks edition when composing messages.
- Support collapsing blockquotes and specifying syntax highlight language.
- Support nice spoiler animation in the message composing input field.
5.1.7 (14.06.24)
- Fix recently searched hashtags in chats search.
- Fix formatting shortcuts on macOS.
- Fix non-Telegram-Stars-invoice bot buttons with star emoji.
5.1.6 (13.06.24)
- Fix search in archived chats in single-column layout.
- Improve chat previews for topics, Saved Messages and groups.
- Fix formatting shortcuts on Linux.
- Fix options for Telegram Stars buying in case of large amounts.
5.1.5 (07.06.24)
- Return WebView on Windows.
5.1.4 (06.06.24)
- Improve design of search in chat.
- Show vCard information for shared contacts.
- Allow scheduling media in topic groups.
- Several minor bugfixes.
5.1.3 (04.06.24)
- Rebuild version for macOS to fix the phrases.
5.1.2 (03.06.24)
- Several bugs fixed including a couple of crashes.
5.1.1 (01.06.24)
- Fix caption display on some media.
- Fix collapsed blockquotes rendering.
- Fully close search in chat by "Cancel" click.
- Allow editing caption placement and spoiler in topics.
- Disable effects on forwarded messages and inline results.
5.1 (31.05.24)
- Send messages with effects.
- Move photo or video captions above the media.
- Chat preview on chat photo long press or Alt+Click.
5.0.6 beta (30.05.24)
- Fix chat preview with non-default themes.
- Fix chat preview crash when scrolling up.
- Jump to chat from preview only by Double-Click.
- Show chat preview with Force Touch on macOS.
5.0.5 beta (28.05.24)
- Long press on chat userpic to show quick preview.
- Alt+Click on chat to show quick preview.
- Show author userpics in forwarded messages.
5.0.4 (28.05.24)
- Fix reply to last message by Ctrl+Up in topics.
- Some other bug fixes.
5.0.3 (28.05.24)
- Ctrl+Click on Reply in menu to Reply in another chat.
- Allow Zero-Width-Space character in text rendering.
- Fix creating custom links in the message field.
- Fix jump to the topic with last unread message.
- Fix newline entering via Shift+Enter on Linux.
- Fix forum search open by Ctrl+F.
5.0.2 (24.05.24)
- Toggle chats search focus by Tab key.
- Unfocus empty search by Backspace key.
- Add a spoiler to already sent media when editing.
- Forward by drag-n-drop to frequent contacts / recent searches.
- Allow wide chats list in empty window with narrow list when a chat is opened.
- Improve custom font support in the input fields.
- Fix input method typing from unfocused search.
- Fix possible media reordering on batch send.
- Fix crash in group emoji set saving.
- Fix possible hang on quit on macOS.
5.0.1 (04.05.24)
- Fix several crashes in new interfaces.
- Fix monospace font size.
- Fix possible problem with underline font size.
5.0 (02.05.24)
- Choose custom font family in Settings > Chat settings > Font family.
- Show "Frequent contacts" when you focus the search field.
- Show "Recent chats" when you focus the search field.
- Show "Channels" list and similar channels.
- Premium users can use animated emoji in polls.
- Group admins can mass-moderate many messages.
- Fix frequent crashes on some Linux systems.
4.16.10 beta (26.04.24)
- Group admins can mass-moderate many messages.
- Premium users can use animated emoji in polls.
- Revert the default "Open Sans" font to 1.10.
- Several crash fixes and small improvements.
4.16.9 beta (23.04.24)
- Show "Frequent contacts" when you focus the search field.
- Show "Recent chats" when you focus the search field.
- Show "Channels" and channel recommendations.
- Allow changing font in Settings > Chat settings > Font family.
4.16.8 (16.04.24)
- Fix in-app playing of some video and audio files.
- Fix crash on Linux opening chats with custom backgrounds.
- Fix crash on quit after using scheduled messages.
4.16.7 (15.04.24)
- Reimplement file open confirmations.
4.16.6 (09.04.24)
- Show custom emoji preview on long press.
- Fix resume chat bot button disappearance.
- Fix GIF files playback. (regression in 4.16.3.beta)
4.16.5 (08.04.24)
- Fix editing privacy for groups and channels invitations.
- Possible fix for the network unresponsiveness after sleep.
- Possible fix for wide range of memory allocator crashes on Linux.
4.16.4 (06.04.24)
- Bug fixes and other minor improvements.
4.16.3 beta (05.04.24)
- Improve media upload speed.
- Update FFmpeg to 6.1.1.
4.16.2 (04.04.24)
- Use IV by default for Telegraph and some Telegram links.
- Support IV links in bot web-apps.
- Some bug fixes.
4.16.1 (02.04.24)
- Show information about Fragment phone numbers and usernames.
- Fix jump to original story from a story repost.
- Fix old image display in viewer in some cases.
- Fix several crashes.
4.16 (01.04.24)
- Instant View on Windows 10+ and macOS.
- Allow scheduling messages in topics.
- Telegram Business: Links to Chats.
- Telegram Business: Custom Intro.
- Telegram Business: Chatbots.
- Sharing Revenue with Channel Owners.
4.15.7 beta (01.04.24)
- Test crashfix on Linux.
4.15.6 beta (25.03.24)
- Save the Instant View window geometry.
- Fix jump to anchors with accents in the Instant View.
- Fix possible crash in the ElasticScroll destructor.
4.15.5 beta (16.03.24)
- Fix a crash in Instant View article parsing.
- Support AirPods Mute/Unmute toggle in calls on macOS.
- Disable system proxy on Linux to check if it fixes crashes.
4.15.4 beta (14.03.24)
- Fix initial text color in dark mode Instant View on macOS.
- Fix non-English symbols encoding in Instant View on macOS.
- Fix sharing from Instant View on macOS.
- Fix crash with long messages on Linux.
4.15.3 beta (13.03.24)
- Instant View on Windows (with WebView2) and macOS.
- Allow scheduling messages in topics.
- Fix system proxy support on Linux.
4.15.2 (12.03.24)
- Telegram Business: Greeting Message.
- Telegram Business: Away Message.
- Telegram Business: Quick Replies.
- Telegram Business: Working Hours.
- Close the ongoing call window without hanging up the call.
- Fast scroll through chats list with Ctrl or Shift pressed.
- Several bugfixes.
4.15.1 (08.03.24)
- Telegram Business features.
4.15 (18.02.24)
- Stories from groups.
- Group appearance settings.
- Group emoji pack.
- Boost groups to unlock features.
4.14.16 (16.02.24)
- Boost groups.
4.14.15 (10.02.24)
- Fix webview regression on Linux X11. (2nd attempt)
4.14.14 (09.02.24)
- Fix webview regression on Linux X11.
4.14.13 (02.02.24)
- Fix display of statistics for single posts.
- Allow editing tag name from search tags.
- Fix a crash in tags removal.
4.14.12 (01.02.24)
- Tags in Saved Messages.
- Audio output device selection for music and videos.
- Audio input device selection for voice messages recording.
- Default device changes should be applied instantly. (Windows / macOS)
4.14.11 beta (25.01.24)
- Fix crash when accepting calls.
- Fix possible crash in loopback audio on Windows.
4.14.10 beta (25.01.24)
- Allow choosing audio device for music and video files.
- Allow choosing microphone device for voice recording.
- Allow pause and resume voice messages recording.
- Track audio device changes on Windows and macOS.
4.14.9 (19.01.24)
- Fix two possible crashes in messages history and group search.
- Fix local online status turning off. (once again)
4.14.8 (18.01.24)
- Fix initial position and size of secondary windows.