forked from telegramdesktop/tdesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
3710 lines (2332 loc) · 108 KB
/
changelog.txt
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
4.8.10 (28.07.23)
- Send story sharing comments as separate messages.
- Fix stories explanation tooltip ordering.
4.8.9 (26.07.23)
- Bug fixes and other minor improvements.
4.8.8 (25.07.23)
- Several crash fixes and story viewer improvements.
4.8.7 (21.07.23)
- Several crash fixes and small stories improvements.
4.8.6 (21.07.23)
- Fix langpack keys by a full rebuild on macOS.
4.8.5 (20.07.23)
- Bug fixes and other minor improvements. And stories preview.
4.8.4 (13.06.23)
- Fix opening links on Linux.
4.8.3 (31.05.23)
- Fix main window focus from notifications with disabled animations.
- Some minor fixes and improvements.
4.8.2 (16.05.23)
- Apply hardening runtime for Mac App Store version.
4.8.1 (24.04.23)
- Fix sending an album of ten scheduled messages.
- Convert folder back to non-shareable on last link deletion.
- Several fixes of focus control in discussions / channel comments.
- Drop all formatting on paste in non-message input fields.
- Clear search field on archive opening.
- Show video upload / download progress over the spoiler.
- Better support for text-colored emoji in reactions.
- Close archive / topics group when clicking on currently active folder.
- Allow replace media by paste in discussions / comments / scheduled messages.
- Fix stuck Replace Media button after editing media in some chats.
- Quick reply by double click only with the left mouse button.
- Fix applying the same custom chat background with different dimming value.
- Fix "who reacted" list display for media album parts.
- Show full t.me/+ invite link prefix in Recent Actions.
- Don't try to suggest userpic photos to bots.
- Add "Send when online" to the send button context menu.
- Fix crash in empty topics message sending.
4.8 (21.04.23)
- Share folders that include dozens of chats with friends or colleagues.
- Anyone you invite can add the folder and join all its chats in one tap.
- You can create multiple invite links to give different people access to different chats in the folder.
- Set a custom wallpaper for any 1-on-1 chat.
- Your chat partner can apply the same wallpaper - or choose their own.
4.7.1 (21.03.23)
- Fix media viewer with some system scale settings on Windows.
- Fix calls on Linux.
4.7 (19.03.23)
- You can disable all resource-intensive animations and animated stickers and emoji.
- Power saving mode turns on automatically based on system battery saving settings.
- Fully flexible playback speed settings for videos, voice and video messages.
- Click the "1X" button to quickly switch between normal and adjusted speed – or hold it to set any speed between 0.5-2.5x.
- Improved sound quality for adjusted speed playback.
- Read receipts in groups under 100 members now show reaction timestamps and when your messages were read.
- When inviting people to groups, you can quickly send invite links to anyone who doesn't allow adding them directly.
- Invite links now show previews in chats.
- Fully translatable bots. Bot descriptions and ”What can this bot do?" sections can now be translated.
- Starting a call now shows a confirmation window.
- Fixed pasting images from Firefox on Windows.
- Global Fn+F shortcut to switch active window to full screen mode on macOS.
- Silent notification sound in Focus Mode on macOS.
4.6.12 beta (17.03.23)
- Fix several possible crashes.
- Deprecate macOS 10.12, Ubuntu 18.04 and CentOS 7 in July.
4.6.11 beta (15.03.23)
- Allow larger interface scale values on high-dpi screens.
- Implement new voice and video speed change interface (up to 2.5x).
- Support global Fn+F shortcut to toggle fullscreen on macOS.
- Silent notification sound in Focus Mode on macOS.
- Fix media viewer on macOS with several screens.
- Fix a crash in connection type box.
- Fix possible crash on quit.
4.6.10 beta (12.03.23)
- Suggest sending an invite link if user forbids inviting him to groups.
- Show when a reaction was left on your message in small groups.
- Fix a crash in video chats on Windows.
- Fix a crash in audio speed change.
4.6.9 beta (10.03.23)
- Fix audio speed change filter in Windows x64 build.
- Fix build scripts.
4.6.8 beta (09.03.23)
- Improve quality of voice messages with changed playback speed.
- Show when your message was read in small groups.
- Fix pasting images from Firefox on Windows.
- Improve memory usage for custom emoji.
4.6.7 beta (02.03.23)
- Fix crash when accepting incoming calls.
- Remove sound when cancelling an unconfirmed call.
4.6.6 beta (01.03.23)
- Confirmation window before starting a call.
- New "Battery and Animations" settings section.
- "Save Power on Low Battery" option for laptops.
- Improved windowed mode support for media viewer.
- Hardware accelerated video playback fix on macOS.
- New application icon on macOS following the system guidelines.
4.6.5 (25.02.23)
- Fix payment card input field validation.
- Fix video playback with hardware acceleration on macOS.
4.6.4 beta (18.02.23)
- Allow media viewer to exit fullscreen and become a normal window.
4.6.3 (15.02.23)
- Optimize chats list initial loading.
- Various crash fixes.
4.6.2 (07.02.23)
- One more attempt to fix fonts on Windows.
- Fix polls forwarding to private chats.
- Improve translations bar appearance.
- Improve userpic editor presets.
4.6.1 (06.02.23)
- Fix fonts fallback on Windows.
- Fix crash in userpic editor.
- Fix some crashes on 32 bit Window build.
- Bug fixes and other minor improvements.
4.6 (03.02.23)
- Emoji Profile Pictures. Quickly create group and profile pictures from animated emoji and stickers with the new "Use an Emoji" option.
- Emoji Categories. Filter stickers and emoji by categories like "love", "cheers" or "sleeping" in the sticker and emoji tabs.
- Chat Translation. As a Premium user, translate entire chats in real time as you scroll them or receive new messages.
- Media Permissions in Groups. Control whether members of your groups can send 9 distinct media types – like Photos, Voice or Video Messages.
- Select Chats for Bots. Bot developers can now let users quickly select groups, channels or contacts that meet predefined criteria (more in @BotNews).
- Open in New Window. Open chats or additional accounts in separate windows.
4.5.9 beta (02.02.23)
- Hide taskbar window preview when Telegram is locked by a passcode (Windows only).
- More improvements for working with multiple windows.
- Bug fixes and other minor improvements.
4.5.8 beta (21.01.23)
- Allow opening another account in a new window (see Settings > Advanced > Experimental Settings).
- A lot of bugfixes for working with more than one window.
4.5.7 beta (13.01.23)
- Fix glitches after moving window to another screen (Windows only).
4.5.6 beta (12.01.23)
- Try enabling non-fractional scale High DPI support on Windows and Linux.
- Experimental setting for fractional scale High DPI support on Windows and Linux.
- Fix navigation to bottom problems in groups you didn't join.
- Fix a crash in chat export settings changes.
- Fix a crash in sending some of JPEG images.
- Fix CJK fonts on Windows.
4.5.5 beta (10.01.23)
- Fix crash in Settings.
4.5.4 beta (10.01.23)
- Allow wide range of interface scale options.
- Show opened chat name in the window title.
- Bug fixes and other minor improvements.
- Fix updating on macOS older than 10.14.
4.5.3 (06.01.23)
- Attempt to fix incoming video in calls from mobile apps.
4.5.2 (03.01.23)
- Fix unread reactions button in private chats.
- Fix tile background saving after an app update.
- Allow Ctrl+6,7,8 to activate extra pinned chats.
4.5.1 (02.01.23)
- Fix crash in profile photo privacy edition.
- Allow sending photos larger than 1280px (in Experimental Settings).
4.5 (30.12.22)
- Media with spoiler effects. You can wrap photos and videos you send in a fuzzy cover by selecting media in the attachment menu and tapping (...) > Hide With Spoiler.
- Setting pictures for your contacts. You can choose your own picture for a contact – only you will see it on their profile.
- Suggested profile pictures. When editing your contacts, you can suggest a photo for their profile. It will take them just two clicks to add the picture you suggested.
- Public profile pictures. If you only allow certain users to see your profile photos, you can set a public picture for everyone else.
- Ultimate profile picture privacy. You can set 'Who can see my profile photos' to 'Nobody' and add some users or groups as exceptions.
- Member list privacy. Owners of large groups can hide the list of members.
4.4.3 beta (29.12.22)
- Support for anonymous numbers from the Fragment.com platform.
- Fix a crash in own profile photo updating.
- Bug fixes and other minor improvements.
4.4.2 beta (28.12.22)
- Send photos and video files hidden by a spoiler effect.
- Set a public photo for those who are restricted to see your profile photo in the Privacy Settings.
- Bug fixes and other minor improvements.
4.4.1 (07.12.22)
- Bug fixes and other minor improvements.
4.4 (06.12.22)
- You can set a Global Auto-Delete Timer for all new chats and groups you create.
- New messages will be deleted after 1 day, week, month - or a custom duration you choose.
- The new menu in Settings > Privacy & Security > Auto-Delete Messages also lets you set up Auto-Delete for any of your existing chats faster.
- Admins of groups with 100+ members can organize discussions into separate topics.
- Topics now have a two-column layout that keeps recent chats easily accessible as you browse topics.
- Previews of topic messages in the chat list work like a button - click to jump to the last updated topic.
- Up to 5 topics can be pinned to the top of the list.
- Each topic now supports multiple pinned messages.
- The View as Messages mode now shows which topic each message belongs to.
- Badge counters for topics you never opened will have a lighter, less distracting color.
- A new General topic is now included by default, containing service messages and the earlier message history from the group.
- Admins can rename the General topic.
- Large groups can enable Aggressive Filtering in Manage Group > Administrators to remove more spam with automated algorithms.
- Admins help improve filtering by reporting any false positives in Recent Actions.
4.3.4 (25.11.22)
- Fix OpenGL regression in Qt and language detection.
4.3.3 (23.11.22)
- Fix an issue with media auto-download on Windows.
- Fix switching accounts in maximized window.
- Fix collapsed archive row layout.
4.3.2 (21.11.22)
- Enable message translations in Settings > Language.
- Fast jump to the last updated topic.
- Bug fixes and other minor improvements.
4.3.1 (07.11.22)
- Critical bug fixes.
4.3 (05.11.22)
- Groups with more than 200 members can now have their discussions organized into topics.
- Premium users can now convert both voice messages and video messages into text.
4.2.4 (30.09.22)
- Fix crash in emoji statuses clearing.
4.2.3 (28.09.22)
- Improve scaling / cropping for photos / video files.
- Improve touch support in channel comments.
- Nice animation for spoilers.
4.2.2 beta (23.09.22)
- Fix crash in spoiler revealing in media captions.
- Fix spoiler revealing in media viewer captions.
- Fix crash in folder editing on Linux.
4.2.1 beta (22.09.22)
- Improve scaling / cropping for photos / video files.
- Improve touch support in channel comments.
- Nice animation for spoilers.
4.2 (17.09.22)
- A new expandable reaction menu was added in private chats and groups.
- All users get access to dozens of new reactions, including reactions previously reserved for Premium users.
- The reactions you use most frequently will always be displayed at the top.
- Premium users can react to messages with thousands of custom emoji and add up to 3 reactions to each message.
- Group admins can control whether custom reactions are allowed in their groups.
- Premium users can add an animated emoji status next to their name to display their current activity.
- To set a status, tap your Premium badge in the main menu or Settings.
- Popular suggestions for working, sleeping, traveling and more will be shown at the top.
- To set a status for a specific duration like 1 hour or 2 days, right click the emoji.
- A new format was supported for username links, in addition to "t.me/username." You can now open Telegram accounts, groups or channels using links like "username.t.me" or "https://username.t.me."
- Improved support for long media captions.
4.1.2 beta (14.09.22)
- New reaction selector above the right click menu.
- Premium: Set any custom emoji reactions in private chats.
- Premium: Set any custom emoji as your profile status.
- Insert or copy custom emoji from pack preview.
4.1.1 (16.08.22)
- Fix editing media captions with animated emoji.
- Fix viewing animated emoji sets used in a message.
- Fix premium sticker tooltip auto-show in channel comments.
- Fix main window position and size restoring after relaunch.
- Other bug fixes and minor improvements.
4.1 (12.08.22)
- Include animated emoji in messages and captions.
- Premium users unlock over 500 new emoji, including custom packs with unique characters.
- All users can view any emoji – and try them out in the Saved Messages chat.
- Control who can send you voice and video messages with Telegram Premium.
- Send a Premium subscription to any user from their profile.
- Choose 3, 6, or 12 months – at a discount.
4.0.4 beta (04.08.22)
- Allow sending animated emoji to Saved Messages even without Telegram Premium.
- Premium: Suggest animated emoji by regular emoji (can be disabled in Settings).
- Premium: Show all suggested premium stickers in a special section of the stickers panel.
- Premium: Allow hiding premium stickers special section of the stickers panel.
- Fix a memory leak in RTMP livestreams.
- Fix some bot webview bugs on macOS.
- Fix forwarding of voice messages.
4.0.3 beta (28.07.22)
- Animated emoji for messages.
- Premium: Privacy settings for voice messages.
- Premium: Gifting Telegram Premium to any user from their profile page.
4.0.2 (24.06.22)
- Fix window title on Windows 7. (again)
- Fix file chooser and global menu on macOS.
- Crash fix and OpenAL check for PipeWire fix on Linux.
4.0.1 (23.06.22)
- Fix window title on Windows 7.
- Bug fixes and other minor improvements.
4.0 (22.06.22)
- Premium: Send media and files each up to 4 GB in size.
- Premium: Download media and files at the fastest possible speed, with no limits.
- Premium: Double most of the limits in the app.
- Premium: Get a new button next to any voice message to generate a transcript of its audio.
- Premium: React with even more emoji, including :clown: and :heart_eyes:.
- Premium: Send unique stickers with additional effects, updated monthly.
- Premium: Set a default chat folder or enable tools to auto-archive and hide new chats.
- Premium: Subscribers have a badge next to their name, showing they help support Telegram.
- Premium: Show off your profile video that will be animated for everyone in chats and the chat list.
- Premium: Sponsored Messages that are sometimes shown in public channels will no longer appear.
- Enable join requests for your public groups – no invite links required.
- Users who open the group will see an Apply to Join Group button.
- Once approved by an admin, users will be able to participate in the chat.
- Bots that are integrated into the attachment menu can be programmed to work in groups and channels.
3.7.6 beta (16.06.22)
- Settings > Advanced > Experimental adds an option to open chats in separate windows.
- Fix possible crash in video chat reconnection.
- Fix possible crash after account switch.
3.7.5 beta (12.05.22)
- Improve cloud password management design.
- Fix a crash in shared media search.
- Fix audio recording on macOS.
3.7.4 beta (03.05.22)
- More icons for chat folders.
- Improve some more sections design.
- Update the OpenAL library to 1.22.0.
3.7.3 (26.04.22)
- Fix a crash in the pinned bar bot button refresh.
3.7.2 (25.04.22)
- Fix mute period selector values.
- Fix a crash in repeated context menu item selection.
- Fix context menu item selection of systems without a compositor.
3.7.1 (19.04.22)
- Hardware accelerated video decoding off by default.
- Fix several crashes.
3.7 (16.04.22)
- Use any short music file or voice message as a notification sound.
- Right click audio files in chats to add them to your list of sounds - or use 'Upload Sound' in the Notifications menu.
- Click on Mute notifications > Select sound in a chat's (...) menu to change its notification sound.
- Set custom tones for notifications in Settings > Notifications > Play sound.
- Click on Mute notifications in a chat's (...) menu to manage its notifications.
- Choose 'Mute for...' to turn off notifications for a preset period, like 1 hour or 1 day.
- Quickly configure Auto-Delete settings from any chat info page.
- Click (...) to turn on Auto-Delete, then select a specific duration.
- Replies are now preserved when forwarding messages, making forwarded conversations easier to read.
- Bots can now open detailed pages directly in the chat.
- Use these streamlined interfaces to buy real-world goods and services without leaving the app.
- Open a bot's profile to add it to your group or channel.
- Instantly configure a bot's rights and permissions when adding it.
- Bots can send a new type of button that lets you add them to your group or channel.
3.6.3 beta (13.04.22)
- Allow sending the default reaction by a double click.
- Select a custom sound for message notifications.
- Add chats to folders from a chat context menu.
- Fix group and channel photo upload.
- Test hardware video decoding.
3.6.2 (27.03.22)
- Fix photo changing in settings, groups and channels.
- Fix non-square animated video-stickers.
3.6.1 (16.03.22)
- Change volume for RTMP stream from the context menu.
- Set a profile photo from your camera.
- Improve RTMP stream full screen mode.
- Improve edit account section design.
- Fix switching personal account or channel in video chats.
- Fix pinning chats in folders with 100 chats.
- Fix YouTube timestamp links after 10 hours.
3.6 (11.03.22)
- Active and recently finished downloads pop up in bar in the bottom left corner, like they do in browsers.
- View recently downloaded files in Settings > Advanced > Downloads.
- Get an alert before closing the app if you have unfinished downloads.
- Share a direct t.me link to your phone number that instantly opens a chat with you.
- Use the full number in international format, like t.me/+123456789
- Manage Live Streams in your channels using external software like OBS Studio or XSplit Broadcaster.
- Choose "Stream With..." when staring a video chat or live stream - then copy your Stream Key and paste it into your streaming software.
3.5.6 beta (08.03.22)
- Show viewers count in RTMP streams.
- Send GIFs search results without "via @bot".
- Display the file thumbnail in downloads bar.
- Always try to save original photo bytes to disk.
- Fix crash when deleting a user from your contacts list.
3.5.5 beta (05.03.22)
- Support stereo audio output in RTMP streams.
- Improve RTMP stream full screen mode.
- Fix a couple of crashes.
3.5.4 beta (01.03.22)
- Bug fixes and other minor improvements.
3.5.3 beta (28.02.22)
- Check the status of media and file downloads by clicking on the new panel in the bottom of the chats list.
- View recently downloaded files from the new Settings > Advanced > Downloads section.
- Manage Live Streams in your groups and channels using external software like OBS Studio or XSplit Broadcaster.
3.5.2 (06.02.22)
- Fix a freeze in audio playback on Linux.
- Fix a crash in screen sharing initialization on Linux.
3.5.1 (04.02.22)
- Keep the screen on while watching a video or participating in a video chat.
- Save experimental settings between relaunches.
- Bug fixes and other minor improvements.
3.5 (31.01.22)
- Use a new type of detailed stickers with smooth animations.
- Create new sets by sending .webm videos to @stickers.
- Bring your custom animated stickers from other apps.
- See smaller, compact animations when reacting to messages.
- See real-time animations in chat when a user reacts to your message.
- React with additional emoji expressing love, appreciation, anger or surprise.
- Tap the new button in chats to jump to your messages that have unseen reactions.
- Watch the animations for unseen reactions play when you hit the button.
- The app will warn you before closing if you are uploading photos or files to a chat.
- Enjoy better screencast quality in video chats.
3.4.8 (19.01.22)
- Nice animations in reactions.
- Add snap layouts support on Windows 11.
- Bug fixes and other minor improvements.
3.4.7 beta (19.01.22)
- Fix a crash on launch on Windows.
3.4.6 beta (18.01.22)
- Add snap layouts support on Windows 11.
- Fix crash in drafts after accounts switching.
3.4.5 beta (16.01.22)
- Fix crash in monospace blocks processing.
- Fix reaction animations stopping after an hour uptime.
3.4.4 beta (14.01.22)
- Nice animations in reactions.
3.4.3 (03.01.22)
- Bug fixes and other minor improvements.
3.4.2 (31.12.21)
- Bug fixes and other minor improvements.
3.4.1 (31.12.21)
- Bug fixes and other minor improvements.
3.4 (30.12.21)
- Send reactions to messages.
- Group and Channel admins can enable reactions in their chat via '...' menu > Manage > Reactions.
- Select text when typing and choose 'Formatting > Spoiler' in the context menu to hide some or all of the contents of a message.
- Click on the spoiler in chat to reveal its hidden text.
- Spoiler formatting hides text in chat, as well as in the chat list and notifications.
3.3.2 beta (29.12.21)
- Select text when typing and choose 'Formatting > Spoiler' in the context menu to hide some or all of the contents of a message.
- Click on the spoiler in chat to reveal its hidden text.
- Spoiler formatting hides text in chat, as well as in the chat list and notifications.
3.3.1 beta (22.12.21)
- Switch between contacts list sorting modes.
- Sort contacts list by last seen time by default.
- Fix disappearing Send As Channel button after message editing.
- Fix file upload cancelling.
- Fix crash in video capture on macOS.
- Fix labels in the About box.
- Use Qt 6.2.2 for macOS and Linux builds.
- Allow installing x64 Windows version on Windows ARM.
3.3 (07.12.21)
- Content creators can restrict the ability to save media and forward messages from their groups and channels.
- Clear messages in one-on-one chats from a specific day or date range.
- Comment as one of your channels in public groups and channel comments.
- When you request to join a community and its admin or bot-admin contacts you with a message, you will see which chat they are from at the top of the chat.
- Bot-admins can now ask users to complete tasks before they are allowed to join - like accepting community rules, passing a test, or making a donation to the content creators.
3.2.8 beta (01.12.21)
- Fix crash in opening shared media with another user.
3.2.7 beta (30.11.21)
- Active sessions list redesign.
- Fix disappearing emoji selector button.
- Fix a crash in archived stickers loading.
- Fix a crash in calls to old Telegram versions.
3.2.6 beta (26.11.21)
- Try out the new audio player with playlist shuffle and repeat.
- Give a custom name to your desktop session to distinguish it in the sessions list.
3.2.5 (16.11.21) [Windows, macOS]
- Fix connecting in case bad characters appear in device name on Windows.
- Fix custom input methods on macOS.
3.2.4 (13.11.21)
- Fix editing of scheduled messages on macOS.
- Fix launching on Chrome OS in Crostini container.
3.2.3 (08.11.21)
- Fix autoupdater launch on macOS.
3.2.2 (05.11.21)
- Fix webpage preview links when View Button is present.
- Fixed possible crash on sponsored messages.
3.2.1 (03.11.21)
- Remove AppImage icon hack and -pie.
3.2 (03.11.21)
- Create special invite links that require admins to approve users before they become members.
- Admins can view the applicants' profiles and bios by tapping the Join Requests bar at the top of the chat.
- Add internal labels to your chat's Invite Links to keep them organized.
- More Interactive Emoji - :ghost:, :dislike:, :face_vomiting:, :joy:, :money_with_wings: or :jack_o_lantern:
3.1.13 beta (02.11.21)
- Fix requests to groups / channels processing.
- Fix internal link previews with View Content button layout.
- Fix crash in messages search with imported messages results.
- Don't use fractional system UI scaling on Linux.
- Fix invite link icons on macOS.
- Several crash fixes.
3.1.12 beta (30.10.21)
- Create special invite links that require admins to approve users before they become members.
- Admins can view the applicants' profiles and bios by tapping the Join Requests bar at the top of the chat.
- Add internal labels to your chat's Invite Links to keep them organized.
- Run natively on Apple Silicon (macOS only).
3.1.11 (29.10.21)
- Create special invite links that require admins to approve users before they become members.
- Admins can view the applicants' profiles and bios by tapping the Join Requests bar at the top of the chat.
- Add internal labels to your chat's Invite Links to keep them organized.
- Run natively on Apple Silicon (macOS only).
3.1.10 beta (29.10.21)
- Native support for M1 on macOS.
- Build macOS and Linux versions on Qt 6.2.
3.1.9 (08.10.21)
- Fix crash in chat closing while scrolling (macOS only).
3.1.8 (08.10.21)
- Show small media previews in chats list.
- Show media album previews and caption text in chats list.
- Add "Quick Reply" and "Mark as Read" to native Windows notifications.
3.1.7 beta (07.10.21)
- Fix channel message views and comments counter updates.
- Sponsored messages support.
- Crash fix.
3.1.6 beta (06.10.21)
- Show small media previews in chats list.
- Show media album previews and caption text in chats list.
- Add "Quick Reply" and "Mark as Read" to native Windows notifications.
3.1.5 beta (28.09.21)
- Choose one of 8 new preset themes for any individual private chat.
- Click on '...' menu > 'Change Colors' to pick a theme.
- Both chat participants will see the same theme in that chat – on all their devices.
- Each new theme features colorful gradient message bubbles, beautifully animated backgrounds and unique background patterns.
- All chat themes have day and night versions and will follow your overall dark mode settings.
- Implement main window rounded corners on Windows 11.
- Fix audio capture from AirPods on macOS.
3.1.4 beta (27.09.21)
- Fix crash in network availability init.
- Fix assertion violation after a NaN-resulting std::round call.
3.1.3 beta (27.09.21)
- Fix illegal instruction crash in opus encoder.
3.1.2 beta (26.09.21)
- Control video in fullscreen mode using arrows and numbers.
- Open locations in browser if default Bing Maps is not installed.
- Reconnect without timeout when network availability changes.
- Crash fixes.
3.1.1 (24.09.21)
- Crash fixes.
3.1 (19.09.21)
- Some animated emoji now have extra effects.
- Send :fireworks: :tada:, :balloon:, :like:, :poop: or :heart: to any private chat, then click on the animated emoji to launch the effect.
- If your chat partner also has the chat open, you will both see the effects.
- See the "Watching" status when your chat partner is enjoying emoji effects with you.
- More interactive emoji coming soon.
- Right click one of your outgoing messages in small groups to see who recently viewed it.
- To protect privacy, read receipts are only stored for 7 days after the message was sent.
- Record video and audio from live broadcasts in your group or channel.
- Admins can start recording from the '...' menu.
- Choose between recording in portrait or landscape orientation.
- Finished recordings are sent to the admin's Saved Messages and can be easily shared.
3.0.5 beta (17.09.21)
- Add support for Emoji 13.1.
3.0.4 beta (13.09.21)
- Fix a crash when joining video chat or live broadcast.
- Add a "Close to Taskbar" option when tray icon is disabled (Windows and Linux).
3.0.3 beta (12.09.21)
- Try fixing crashes in allocator on Linux.
3.0.2 beta (10.09.21)
- Check who've seen your message in small groups from the context menu.
- Enable recording with video in live streams and video chats.
3.0.1 (01.09.21)
- Crash fixes.
3.0 (31.08.21)
- Broadcast video and share your screen to an unlimited number of viewers.
- To begin, tap the Live Stream button in the title bar of a community where you are an admin.
- Tap the "Forward Message" label above the input field to change how messages will be sent.
- Hide or show the original sender's name.
- Remove or keep captions from media messages.
- See how many unread comments there are when opening a channel's comments.
2.9.14 beta (31.08.21)
- Fix crash in authorization after logout.
2.9.13 beta (31.08.21)
- See unread comments count when scrolling discussions in channels.
2.9.12 beta (24.08.21)
- Disable floating point exceptions in 32 bit Windows version.
2.9.11 beta (24.08.21)
- Resolve (again) a video playback crash in 32 bit Windows version.
2.9.10 beta (24.08.21)
- Resolve (hopefully) a video playback crash in 32 bit Windows version.
2.9.9 beta (23.08.21)
- Still(3) debugging a video playback crash in 32 bit Windows version.
2.9.8 beta (23.08.21)
- And still debugging a video playback crash in 32 bit Windows version.
2.9.7 beta (23.08.21)
- Still debugging a video playback crash in 32 bit Windows version.
2.9.6 beta (21.08.21)
- Debugging a video playback crash in 32 bit Windows version.
2.9.5 beta (20.08.21)
- Tile chat background patterns horizontally.
- Fix a rare crash in spellchecker on Windows.
- Fix animated chat backgrounds in Saved Messages.
- Fix "Sorry, group is inaccessible" message in scheduled voice chats.
2.9.4 beta (17.08.21)
- Choose one from dozens of new gorgeous animated backgrounds in Chat Settings > Chat background.
2.9.3 (11.08.21)
- Fix requesting screencast rights on macOS (again).
2.9.2 (10.08.21)
- Fix crashes and bugs in scheduled messages.
- Fix file sending after a call or voice chat on Windows.
- Fix main window title glitches on Windows 7.
2.9.1 (30.07.21)
- Fix requesting screencast rights on macOS.
2.9 (30.07.21)
- Enable auto-delete in your chats to remove messages after 1 month (also 1 day or 1 week).
- Quickly find all GIFs from a chat using the new GIF section in Shared Media.
- Reset your Two-Step Verification password even if you forgot your old password and don't have a recovery email.
- To do this, you must be logged into your account. The reset takes 7 days and can be cancelled from any of your devices.
- Enjoy a new app icon and default background.
2.8.13 beta (23.07.21)
- Fix crash in messages animation.
- Save GIFs from context menu in channel comments.
2.8.12 beta (20.07.21)
- Change the default chat background.
- Add GIFs overview section in chats.
- Add a simple new messages animation.
- Use modern Telegram application icon.
- Use Direct3D 11 by default on Windows.
- Fix Direct3D acceleration on basic Windows 7 setup.
2.8.11 (17.07.21)
- Check shader compilation / linking before using ANGLE.
2.8.10 (16.07.21)
- Fix media loading.
2.8.9 (16.07.21)
- Fix GIF caption edit.
- Fix version on Windows without SetDefaultDllDirectories.
- Fix fonts on Linux.
2.8.8 (15.07.21)
- Added an image editor. Crop photos or highlight parts of screenshots before sending.
2.8.7 beta (08.07.21)
- (wasn't deployed)
2.8.6 beta (06.07.21)
- Added a simple image editor. Crop photos or highlight parts of screenshots before sending.
- Use Direct3D 9 backend in ANGLE by default (Windows).
- Fix "Show in Finder" not focusing the Finder window (macOS).
- Use GTK from a child process (Linux).
2.8.5 beta (02.07.21)
- Use ANGLE for OpenGL over DirectX 9 / DirectX 11 (Windows).
- Use GTK from a child process (Linux).
2.8.4 (01.07.21)
- Crash fixes in WebView on Windows.
2.8.3 (28.06.21)
- Fix crashes in OpenSSL on macOS.
2.8.2 (27.06.21)
- Attempt to fix random crashes on macOS.
2.8.1 (26.06.21)
- Fix crash in audio player volume slider.
2.8 (24.06.21)
- Start video conferences from Voice Chats in any group.
- Share your screen or video from your camera with up to 30 participants (limit to be increased soon).
- Talk without video with an unlimited number of participants.
- Create voice chats from the info page of any group where you are an admin.
- Group video calls are supported natively on all devices, including iPads and laptops.
2.7.10 beta (22.06.21)
- Added ability to mix together bold, italic and other formatting.
- Fix voice chats and video calls OpenGL with some drivers on Windows.
- Several bug fixes.
2.7.9 beta (17.06.21)
- Added "Enable noise suppression" option to group calls Settings.
- Fix media viewer with Retina + Non-Retina dual monitor setup on macOS.
- Several bug and crash fixes.
2.7.8 beta (11.06.21)
- Crash fixes.
2.7.7 beta (11.06.21)
- Optimized video playback in media viewer and Picture-in-Picture mode.
- Added integration with System Media Transport Controls on Windows 10.
- Added "Now Playing" integration for music playback on macOS.
- Added "Archive Sticker" into the "..." menu of the Sticker Set Box.
- Fixed memory not being freed on Linux.
- Several crash fixes.
2.7.6 beta (31.05.21)
- Optimized video playback in media viewer and Picture-in-Picture on Windows and Linux.
- Added integration with System Media Transport Controls on Windows 10.
- Added "Archive Sticker" into the "..." menu of the Sticker Set Box.
- Fixed memory not being freed on Linux.
- Several crash fixes.
2.7.5 beta (04.05.21)
- Add "Voice chats" filter in "Recent actions" for channels.
- Write local drafts to disk on a background thread.
- Support autoupdate for Telegram in write-protected folders on Linux.
- Fix crash in native notifications on Linux.
- Fix crash in file dialog on Linux.
2.7.4 (28.04.21)
- Fix crash in viewing an invoice after a payment is made.
- Respect Focus Assist only for native notifications.
- Mark messages as read only in active window.
2.7.3 (27.04.21)
- Fix crash on some versions of Linux.
- Fix video not stopping when PiP window is closed.
- Fix messages marking as read if the Windows session is locked.
2.7.2 (26.04.21)
- Offer real goods and services for sale in any group, channel or bot – Telegram doesn't charge a commission.
- Pay for goods securely using one of the 8 integrated payment providers – Telegram doesn't collect your payment info.
- See how this works in our @TestStore.
- Schedule voice chats to let participants know about them in advance.
- View a countdown to the voice chat and get notified when it starts.
- Try two new, fully-featured versions of Telegram Web – both supporting animated stickers, dark mode, chat folders and more: https://webk.telegram.org/ and https://webz.telegram.org/.
2.7.1 (20.03.21)
- Fix editing 'Manage Voice Chats' rights for channel admins.
- Fix verification check display in voice chat participants list.
- Allow removing and blocking channels from voice chats.
2.7 (19.03.21)
- Start limitless Voice Chats in Groups and Channels.
- Host discussions that can be listened to by millions of people simultaneously.
- Record voice chats to share or publish in Channels later.
- See that a chat is being recorded from the red dot next to its title.
- See user bio texts right from the list of participants.
- Raise your hand to show admins you want to speak.
- Create separate Voice Chat Invite Links for listeners or speakers.
- Change the title of your Voice Chat to give people an idea of the current topic.
- Join Voice Chats as one of your Channels to hide your personal account.
2.6.8 beta (18.03.21)
- Fix connecting and getting allowed to speak on voice chats.
- MPRIS support on Linux.
2.6.7 beta (18.03.21)
- Improve voice chat participants list updating.
2.6.6 beta (18.03.21)
- Fix joining popular voice chats.
2.6.5 beta (17.03.21)