forked from telegramdesktop/tdesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
3043 lines (1867 loc) · 82.6 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
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)
- Improvements and fixes in new voice chat features.
2.6.4 beta (16.03.21)
- Fix freeze in voice chats.
- Make default interface scale 110% on macOS Retina screens.
2.6.3 beta (16.03.21)
- Fix audio device selection in voice chats.
- Fix blinking self profile photo in case the profile photo privacy is used.
- Fix voice chat admin menu on macOS.
2.6.2 beta (13.03.21)
- Fix text disappearing because of cloud drafts sync.
2.6.1 (24.02.21)
- Fix time formatting in links.
- Fix copy QR code in night mode.
- Fix invite link sharing without a comment.
- Fix crash in link editing on Linux.
2.6 (23.02.21)
- Set messages to auto-delete for everyone 24 hours or 7 days after sending.
- Control auto-delete settings in any of your chats, as well as in groups and channels where you are an admin.
- To enable auto-delete, right click on the chat in the chat list > Clear History > Enable Auto-Delete.
- Create invite links that work for a limited time or a limited number of uses.
- See which users joined using your, or your admins', invite links.
- Turn any invite link into a QR code users can scan with their phone cameras.
- To manage invite links, click ... > Manage Group/Channel > Invite Links.
- Convert groups that have reached 200,000 members into unlimited Broadcast Groups.
2.5.9 (17.02.21)
- Add 'Invite via Link' button to Add Members box.
- Fix window size in Windows 10 Tablet Mode.
- Fix layout of round video messages in channels.
2.5.8 (29.01.21)
- Fix OpenAL device closing in calls and voice chats.
- Fix video chat rotation when calling from iOS.
- Fix scheduling messages without sound.
- Remove redundant Cancel button in ScheduleBox.
2.5.7 (28.01.21)
- Delete not only messages, but also groups you created and call history for all sides, without a trace.
- Adjust volume for individual participants of a voice chat.
- Report fake groups or channels impersonating famous people or organizations by opening their Profile > ... > Report.
2.5.6 beta (22.01.21)
- Press Up arrow to edit your last sent comment.
- Add more information to date tooltips in Recent Actions and channel comments.
- Bug and crash fixes.
2.5.5 beta (10.01.21)
- Fix recording of audio in voice chats.
- Fix media viewer zoom and crashing.
2.5.4 beta (07.01.21)
- Implement new audio module code for calls and voice chats.
- Allow retracting votes from polls in comments to channel posts.
- Show small voice chat button for empty voice chats.
- Fix media viewer updating when screen resolution is changed.
2.5.3 beta (30.12.20)
- Allow using mouse buttons in Push-to-Talk shortcut.
- Fix blurred thumbnails in Shared Links section.
2.5.2 beta (25.12.20)
- Fix possible crash in video calls.
- Fix possible crash in connecting to voice chats.
- Use different audio module code on Windows in calls.
2.5.1 (23.12.20)
- Fix crash in voice calls.
2.5 (23.12.20)
- Turn any of your group chats into a hop-on, hop-off conference call.
- Get up to several thousand participants in each voice chat.
- Control the number of speakers with flexible admin tools.
2.4.15 beta (19.12.20)
- Improve design of voice chats.
- Fix sending of voice messages as replies.
- Fix 'Open With' menu position in macOS.
- Fix freeze on secondary screen disconnect.
2.4.14 beta (14.12.20)
- Create voice chats in legacy groups.
- Fix sticker pack opening.
- Fix group status display.
- Fix group members display.
2.4.13 beta (09.12.20)
- Fix voice messages sending.
- Fix crash in voice calls.
2.4.12 beta (09.12.20)
- Voice chats in groups. (alpha version)
2.4.11 beta (19.11.20)
- Improve locked voice message recording.
- Fix main window closing to tray on Windows.
- Fix crash in bot command sending.
- Fix adding additional photos when sending an album to a group with enabled slow mode.
2.4.10 beta (17.11.20)
- Use inline bots and sticker by emoji suggestions in channel comments.
- Lock voice message recording, listen to your voice message before sending.
2.4.9 beta (06.11.20)
- Fix crash in tray icon removing. (macOS only)
2.4.8 beta (06.11.20)
- Upgrade Qt to version 5.15.1.
- Upgrade FFmpeg to version 4.2.
- Upgrade OpenAL to version 1.20.1.
2.4.7 (05.11.20)
- Fix playback display in albums of music files.
- Several crash fixes.
2.4.6 (02.11.20)
- Fix image compression option when sending files with drag-n-drop.
- Fix caption text selection in media albums.
- Fix drafts display in personal chats in the chats list.
- Bug fixes and other minor improvements.
2.4.5 (30.10.20)
- Pin several messages in any chat, including one-on-one chats.
- Jump between pinned messages or open them all on a separate page via the top bar.
- Send several music tracks as a playlist.
- Send several files as an album in one chat bubble.
- Send a :slot_machine: emoji to any chat to see if you hit the jackpot.
- Hide Telegram taskbar icon on Linux in Settings > Advanced.
2.4.4 (23.10.20)
- Fix application quit on call end with main window hidden in tray.
- Update OpenAL library on Windows.
- Several crash fixes.
2.4.3 (07.10.20)
- Fix sending voice messages in scheduled messages section.
- Fix deleting profile / group / channel photos.
- Several crash fixes.
2.4.2 (02.10.20)
- Allow block, report and delete all messages from a user from "user joined" service message context menu.
- Fix admin badge display in groups.
- Fix loading and opening of comments in channels.
2.4.1 (01.10.20)
- Move by PageUp and PageDown in channel comments.
- Several layout bugfixes.
- Several crashfixes.
2.4 (30.09.20)
- Turn on "Remain Anonymous" in an admin's Permissions to let them post on behalf of the group and become invisible in the list of members.
- Comment on posts in channels that have a discussion group.
- Get notified about replies to your comments via the new Replies chat (if you are not a member of the discussion group).
2.3.2 (23.08.20)
- Revert custom window shadow on Linux.
2.3.1 (21.08.20)
- Fix Call Settings for Video Calls.
2.3 (14.08.20)
- Video Calls (alpha version).
2.2 (26.07.20)
- Quickly switch between different Telegram accounts if you use multiple phone numbers.
- Share and store unlimited files of any type, now up to 2000 MB each.
- Edit your scheduled messages.
- Use Auto-Night Mode to make Telegram night mode match the system Dark Mode settings.
- Also added an option to switch to system window frame in Windows and Linux.
2.1.22 beta (24.07.20)
- Fix crash in web page preview display.
2.1.21 beta (24.07.20)
- Edit your scheduled messages.
- See the unread messages indicator for the secondary accounts on the main menu button.
- Use Auto-Night Mode to make Telegram night mode match the system Dark Mode settings.
- Enjoy dark native window frame for Telegram night mode on Windows.
2.1.20 beta (17.07.20)
- Fix animated emoji.
- Fix crash in bot callback sending.
2.1.19 beta (16.07.20)
- File uploading in an inactive account correctly finishes.
- Stickers panel works correctly after switching between accounts.
- Large .webp files are not shown as stickers.
- MacBook TouchBar support was fully rewritten with fixes for multiple accounts.
- Custom window title bar works in all Linux versions.
- Passcode doesn't auto-lock while you're active in other apps on Linux X11.
2.1.18 beta (08.07.20)
- Fix a possible crash in Picture-in-Picture video player.
- Fix copying links from message texts.
- Raise file size limit to 2000 MB.
- Allow using system window frame in Windows and Linux.
2.1.17 beta (02.07.20)
- Fix messages editing in a non-active account.
- Fix large animated emoji messages editing.
- Fix high definition GIF animations opening in media viewer.
- Multiple crash fixes.
2.1.16 beta (01.07.20)
- Crash fix.
2.1.15 beta (30.06.20)
- Receive notifications only from the active account in Settings > Notifications.
- Fix saving chats list width between application relaunches.
- Multiple crash fixes.
2.1.14 beta (29.06.20)
- Support for multiple accounts.
2.1.13 (23.06.20)
- Fix photos loading.
- Fix Picture-in-Picture window movement on Wayland in Linux.
2.1.12 (17.06.20)
- Fix sticker and video results in inline bots.
- Fix clipboard issues in Linux.
- Fix several crashes.
2.1.11 (08.06.20)
- Fix launching on old Linux systems.
2.1.10 (05.06.20)
- Improve memory usage.
- Add support for full group message history export.
- Allow export of a single chat message history in JSON format.
2.1.9 beta (04.06.20)
- Several crash fixes.
2.1.8 beta (03.06.20)
- Add support for full group message history export.
- Allow export of a single chat message history in JSON format.
2.1.7 (24.05.20)
- Fix the Fcitx input method plugin.
2.1.6 (14.05.20)
- Bug fixes and other minor improvements.
2.1.5 (13.05.20)
- Disable the taskbar icon flash or the dock icon bounce in Settings > Notifications.
- View messages containing long monospace texts in wide bubbles.
- Bug fixes and other minor improvements.
2.1.4 (08.05.20)
- Improve bold font selection.
2.1.3 (08.05.20)
- Added support for new emoji.
- Channels to which you can't post will no longer be suggested when forwarding.
- Improved font selection and bold font support for CJK and Farsi.
2.1.2 (05.05.20)
- Fix polls and quizes results viewing.
- Fix memory leak in web page previews with autoplayed videos.
- Fix running on OS X 10.10.
- Other minor bug fixes and improvements.
2.1.1 (01.05.20)
- Improve quiz explanation tooltip layout.
- Fix possible crash in theme editor.
- Other minor bug fixes and improvements.
2.1 (24.04.20)
- Access a catalog of over 20,000 stickers made by professional artists from the updated Sticker Panel by clicking the '+' icon.
- Use sticker search to find the stickers you're looking for - or scroll from the latest packs all the way to the classics.
- Add explanations that appear after users respond to a quiz question.
- See how much time you have left to answer a question from @QuizBot with the new countdown animation.
- Send a single :dart: emoji to see if you hit the bullseye.
2.0.1 (31.03.20)
- Switch between folders using Ctrl+1, ..., Ctrl+8.
- Fix crash when a pinned in folder chat was added to archive.
- Fix font issues in Linux version.
2.0 (30.03.20)
- Organize chats into Chat Folders if you have too many chats.
- Create custom folders with flexible settings, or use default recommendations.
- Pin an unlimited number of chats in each folder.
- Switch between folders in the new side bar to easily access all of your chats.
- Send :dice: to any chat to try your luck and get a random number from the animated dice.
- Send :virus:, :face_with_thermometer:, :mask:, :face_with_head_bandage:, :sneeze:, :sick:, :soap: or :ambulance: to try out the new animated emoji.
1.9.22 beta (27.03.20)
- Organize chats into Chat Folders if you have too many chats.
1.9.21 (16.03.20)
- Mark new messages as read while scrolling down through them.
- Improved spellchecking on Windows 7 and Linux.
1.9.20 beta (14.03.20)
- Fix crash in shared links search.
- Fix blurred thumbnails in albums with video files.
- Fix a possible crash in animated stickers rendering.
1.9.19 beta (25.02.20)
- Bug fixes and other minor improvements.
1.9.18 beta (25.02.20)
- Bug fixes and other minor improvements.
1.9.17 beta (24.02.20)
- Spell checker on Windows 7.
- Bug fixes and other minor improvements.
1.9.16 beta (23.02.20)
- Bug fixes and other minor improvements.
1.9.15 beta (21.02.20)
- Mark new messages as read while scrolling down through them.
- Bug fixes and other minor improvements.
1.9.14 (17.02.20)
- Bug fixes and other minor improvements.
1.9.13 (12.02.20)
- Bug fixes and other minor improvements.
1.9.12 (11.02.20)
- Switch to Picture-in-Picture mode to watch your video in a small window while doing something else.
- Change playback speed in the '...' menu when watching videos.
- Rotate photos and videos in the media viewer using the rotate button in the bottom right corner.
1.9.11 beta (10.02.20)
- Bug fixes and other minor improvements.
1.9.10 beta (05.02.20)
- Switch to the Picture-in-Picture mode to watch your video in a small window.
- Change video playback speed in the playback controls '...' menu.
- Rotate photos and videos in the media viewer using the rotate button in the bottom right corner.
1.9.9 (28.01.20)
- Bug fixes and other minor improvements.
1.9.8 (24.01.20)
- Bug fixes and other minor improvements.
1.9.7 (23.01.20)
- Create three new kinds of polls.
- See who voted for what in polls with visible votes.
- Vote for several options in polls that allow multiple answers.
- Guess the correct answer in quiz-style polls.
- Explore various ways of combining the different poll options.
- Add polls from the '...' menu in any group or channel.
- Use bots like @QuizBot to create quizzes with several questions and media attachments.
- Schedule messages to be sent when your recipient comes online (only works if you know their online status).
1.9.6 (22.01.20)
- Bug fixes and other minor improvements.
1.9.5 (21.01.20)
- Bug fixes and other minor improvements.
1.9.4 (17.01.20)
- Bug fixes and other minor improvements.
1.9.3 (31.12.19)
- Videos in chats start playing automatically.
- Resume playback from where you left off when watching long videos and listening to long audio tracks.
- Control automatic playback for videos, GIFs and round video messages in Settings > Advanced > Automatic media download.
- Enjoy system spell checker support on all modern systems.
1.9.2 beta (29.12.19)
- Videos in chats start playing automatically.
- Resume playback from where you left off when watching long videos.
- Control videos, GIFs and round video messages automatic playback in Settings > Advanced > Automatic media download.
- Spell checker on Linux using Enchant.
1.9.1 beta (06.11.19)
- Bug fixes and other minor improvements.
1.9 beta (05.11.19)
- System spellchecker on Windows 8+ and macOS 10.12+.
1.8.15 (07.10.19)
- Bug fixes and other minor improvements.
1.8.14 (03.10.19)
- Bug fixes and other minor improvements.
1.8.13 (03.10.19)
- Bug fixes and other minor improvements.
1.8.12 (02.10.19)
- Bug fixes and other minor improvements.
1.8.11 (01.10.19)
- Bug fixes and other minor improvements.
1.8.10 (30.09.19)
- Bug fixes and other minor improvements.
1.8.9 (27.09.19)
- Bug fixes and other minor improvements.
1.8.8 (10.09.19)
- Create new themes based on your color and wallpaper choices.
- Share your themes with other users via links.
- Update your theme for all its users when you change something.
1.8.7 beta (10.09.19)
- Bug fixes and other minor improvements.
1.8.6 beta (09.09.19)
- Bug fixes and other minor improvements.
1.8.5 beta (08.09.19)
- Create new themes based on your color and wallpaper choices.
- Share your themes with other users via links.
- Update your theme for all its users when you change something.
1.8.4 (06.09.19)
- Bug fixes and other minor improvements.
1.8.3 (05.09.19)
- Right click the 'Send' button and select 'Schedule Message' to automatically send something at a specified time.
- Schedule reminders for yourself in the 'Saved Messages' chat.
- Get a notification when any of your scheduled messages are sent.
- Customize your app's appearance by choosing accent colors for the 'Day', 'Night' and 'Tinted' themes.
- Choose who can find you on Telegram when they add your number to their phone contacts.
- Send a single :grin:, :anguished:, :rage:, :poo:, :cry: or :open_mouth: to check out what's new in the animated emoji department.
1.8.2 (20.08.19)
- Bug fixes and other minor improvements.
1.8.1 (09.08.19)
- Bug fixes and other minor improvements.
1.8 (09.08.19)
- Right click the Send button to send any message without sound - in case the recipient is sleeping.
- Enable Slow Mode in Group Permissions to control how frequently members can post.
- Set custom titles for group admins - like 'Founder', 'CFO' or 'Spam Fighter'.
- Toggle looped playback for animated stickers in Chat Settings.
- Send a single :heart:, :like:, :unamused:, :flushed: or :party: to add a mighty animated emoji to the chat.
1.7.15 beta (18.07.19)
- Bug fixes and other minor improvements.
1.7.14 (07.07.19)
- Bug fixes and other minor improvements.
1.7.13 (06.07.19)
- Send ultra-lightweight high-quality animated stickers to express emotion with motion.
- Receive animated stickers instantly on any connection at just 20-30 KB per sticker.
- Enjoy smooth animations at 60 frames per second.
- Create new animated sets and upload them to @stickers for everybody to use.
- Try out these sample stickers: t.me/addstickers/hotcherry
- Use strikethrough and underline formatting.
1.7.12 beta (05.07.19)
- Bug fixes and other minor improvements.
1.7.11 beta (04.07.19)
- Use strikethrough and underline formatting.
- Bug fixes and other minor improvements.
1.7.10 (24.06.19)
- Bug fixes and other minor improvements.
1.7.9 (23.06.19)
- You can now add any users to your contacts, even if their phone numbers are not visible.
- Transfer ownership of group chats and channels by granting full rights to another admin. Useful when switching jobs or if you just want to retire as creator.
- Hide archived chats to the main menu.
- See who is online straight from the chat list.
- Use the MacBook Pro TouchBar to apply formatting to selected text, insert emoji, and send stickers.
1.7.8 beta (17.06.19)
- Hide archived chats in the main menu.
- See who is online straight from the chat list.
- Apply formatting to selected text parts from the MacBook Pro TouchBar.
1.7.7 (10.06.19)
- Bug fixes and other minor improvements.
1.7.6 beta (06.06.19)
- Bug fixes and other minor improvements.
1.7.5 beta (05.06.19)
- Crash fix.
1.7.4 beta (04.06.19)
- Download video files while watching them using streaming.
- Set EOL for Windows XP / Vista and OS X 10.6 to 10.9 at September 1.
1.7.3 (01.06.19)
- Bug fixes and other minor improvements.
1.7.2 (31.05.19)
- Choose who can see your phone number with granular precision in Privacy & Security settings.
- Add group chats to "Always/Never Share" exceptions for any privacy setting. Permissions will update as users leave and join the groups.
- Connect a discussion group to your channel, subscribers will see a "Discuss" button.
- Integrate bots seamlessly with web services. For example, see t.me/DiscussThis/1
- Use TouchBar on MacBooks Pro to control music playback and switch between pinned chats.
1.7.1 beta (28.05.19)
- Disable pinned messages notifications in Settings.
1.7 (08.05.19)
Introducing Archived Chats:
- Archive any chat from the right-click menu.
- Chats with enabled notifications will pop out of the archive when a notification arrives.
- Muted chats will stay in the archive.
- Pin an unlimited number of chats in your archive.
1.6.7 (13.04.19)
- Replace media when editing messages with media content.
- Jump quickly to the top of your chats list.
- Get emoji suggestions for the first word you type in a message.
- Help Telegram improve emoji suggestions in your language using this interface https://translations.telegram.org/en/emoji
1.6.6 beta (11.04.19)
- Bug fixes and other minor improvements.
1.6.5 beta (06.04.19)
- Bug fixes and other minor improvements.
1.6.4 beta (05.04.19)
- Replace media when editing messages with media content.
- Jump quickly to the top of your chats list.
- Get emoji suggestions for the first word you type in a message.
- Help Telegram improve emoji suggestions in your language using this interface https://translations.telegram.org/en/emoji
1.6.3 (25.03.19)
- Bug fixes and other minor improvements.
1.6.2 (24.03.19)
- Delete any message on both ends in any private chat, anytime.
- Control whether your forwarded messages link back to your account.
- Control who may see your profile picture.
- Enjoy the new streamlined group management screen.
1.6.1 (20.03.19)
- Bug fixes and other minor improvements.
1.6 (18.03.19)