forked from telegramdesktop/tdesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
2183 lines (1319 loc) · 57.1 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
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)
- Play video files and listen to music without waiting for them to fully download.
- Press CTRL+0 (CMD+0 on macOS) to jump to your Saved Messages.
1.5.18 beta (15.03.19)
- Bug fixes and other minor improvements.
1.5.17 beta (13.03.19)
- Bug fixes and other minor improvements.
1.5.16 beta (12.03.19)
- Play video files and listen to received music without waiting for them to download.
- Press CTRL+0 (CMD+0 on macOS) to jump to your Saved Messages.
1.5.15 (12.02.19)
- Crash fix.
1.5.14 (12.02.19)
- Crash fix.
1.5.13 (12.02.19)
- Bug fixes and other minor improvements.
1.5.12 (09.02.19)
- Apply blur effects to backgrounds.
- Use the backgrounds you set in Telegram Desktop in all other Telegram apps.
1.5.11 (01.02.19)
- Bug fixes and other minor improvements.
1.5.10 (01.02.19)
- Bug fixes and other minor improvements.
1.5.9 (31.01.19)
- Bug fixes and other minor improvements.
1.5.8 (21.01.19)
- Global permissions for groups. Restrict all members in any group from posting certain types of content.
- Unified group settings. Make groups public, set admins with granular permissions and toggle persistent history in just a few clicks in any group.
- Choose the emoji set you would like to use in Chat Settings.
- Choose input and output devices for Telegram Calls in Settings > Advanced > Call Settings.
- Support for automatically downloading files and music.
1.5.7 beta (11.01.19)
- Choose the emoji set you would like to use in Settings > Chat Settings.
- Choose input and output devices for Telegram Calls in Settings > Adavanced > Call Settings.
1.5.6 beta (27.12.18)
- Fix crash on macOS.
1.5.5 beta (27.12.18)
- Support for auto-download of files and music.
- Improved auto-download settings.
- Bug fixes and other minor improvements.
1.5.4 (24.12.18)
- Bug fixes and other minor improvements.
1.5.3 (23.12.18)
- Create polls in groups and channels - right from the chat menu.
1.5.2 (13.12.18)
- Bug fixes and other minor improvements.
1.5.1 (11.12.18)
- Bug fixes and other minor improvements.
1.5 (10.12.18)
- Support for custom languages. Crowdsource a cloud-based language pack for Telegram in any language using our Translations platform - then apply it in real time.
- Interface scaling for large screens, up to 300% (up to 150% for macOS retina screens).
- 'Count unread messages' setting for the Badge counter in Settings > Notifications. Disable to show number of unread chats.
- Video messages displayed in shared media (under voice messages).
- Updated emoji. Farewell to question marks!
Also in this update:
- Listen to voice and video messages in 2X mode if you're in a hurry.
- Add a comment when sharing posts from channels.
- View all photos and videos in Twitter and Instagram link previews.
- Add emoji to media captions.
1.4.8 beta (04.12.18)
- Add emoji to media captions.
- Switch off the 'Count unread messages' option in Settings > Notifications if you want to see the unread chats count in the badge instead.
1.4.7 beta (10.11.18)
- Crash fix.
1.4.6 beta (09.11.18)
- Bug fixes and other minor improvements.
1.4.5 beta (08.11.18)
- Listen to voice and video messages in 2X mode if you're in a hurry.
- Find video messages in the shared voice messages section.
- Add a comment when you share posts from channels.
- View all photos and videos in Twitter and Instagram link previews.
- Bug fixes and other minor improvements.
1.4.4 beta (16.10.18)
- Interface scaling for large screens, up to 300% (up to 150% for macOS retina screens).
- Updated emoji.
1.4.3 (13.10.18)
- Bug fixes and other minor improvements.
1.4.2 (10.10.18)
- Crash fix.
1.4.1 (09.10.18)
- Reduce crashes due to the out of memory exceptions.
- Load map previews through mtproto.
- Bug fixes and other minor improvements.
1.4 (28.09.18)
- Fully redesigned Settings section.
- New theme selector in Chat Settings.
- New local storage settings: Control how much disk space is used by the cache and for how long the cached files are stored.
- Improved local caching for images and GIF animations.
- New settings: Peer-to-Peer settings for calls, disable animations for low performance computers.
- Various other improvements.
1.3.17 beta (26.09.18)
- Fully redisigned Settings section.
- New theme selector in Chat Settings.
- New settings: Peer-to-Peer settings for calls, disable animations for low performance computers.
- Various other improvements.
1.3.16 alpha (04.09.18)
- Update libtgvoip, fix crash in calls.
- Fix crash in local cache database.
- Clear old local cache asynchronously.
1.3.15 alpha (01.09.18)
- Improved local caching for images and GIF animations.
- Control how much disk space is used by the cache and for how long the cached files are stored.
1.3.14 (27.08.18)
- Fix a crash in calls.
1.3.13 (25.08.18)
- Export data from individual chats using the '...' menu.
- Added a new night theme.
- You can now assign custom themes as night and day themes to quickly switch between them.
- Support for Telegram Passport 1.1 and improved password hashing algorithm to better protect Telegram Passport data.
1.3.12 alpha (04.08.18)
- Bug fixes and other minor improvements.
1.3.11 alpha (01.08.18)
- Added a new night theme.
- You can now assign custom themes as night and day themes to quickly switch between them.
1.3.10 (13.07.18)
- Bug fixes and other minor improvements.
1.3.9 (28.06.18)
- Mark chats in the chat list as Read or Unread.
- Improved censorship circumvention.
1.3.8 (24.06.18)
- Bug fixes and other minor improvements.
1.3.7 (11.06.18)
- Push fixes to stable version.
1.3.6 alpha (11.06.18)
- Bug fixes and other minor improvements.
1.3.5 alpha (08.06.18)
- Bug fixes and other minor improvements.
1.3.4 alpha (07.06.18)
- Bug fixes and other minor improvements.
1.3.3 alpha (07.06.18)
- Bug fixes and other minor improvements.
1.3.2 alpha (07.06.18)
- Bug fixes and other minor improvements.
1.3.1 alpha (04.06.18)
- Bug fixes and other minor improvements.
1.3.0 (01.06.18)
- Improved censorship circumvention.
- Improved stability when working through proxy servers.
- Save several proxy servers to quickly switch between them in Settings.
- Use proxy for calls.
- Emoji and text replacement now happens immediately after typing (instead of after sending) and can be rolled back using Backspace or CTRL/CMD + Z. Replacement no longer happens when pasting text.
Added formatting shortcuts. Select text and use:
- CTRL/CMD + B/I for bold and italic
- CTRL/CMD + K to create or edit a custom link
- CTRL/CMD + SHIFT + M for monospace font
- CTRL/CMD + SHIFT + N to clear formatting
1.2.25 alpha (31.05.18)
- Apply markdown formatting (```, `, **, __) only when sending the message.
- Display connection quality bars in calls.
- Telegram Desktop can update itself through MTProto.
- Bug fixes and other minor improvements.
1.2.24 alpha (26.05.18)
- Add links with custom text from context menu or by Ctrl/Cmd + K keyboard shortcut.
1.2.23 alpha (25.05.18)
- Apply formatting from input field context menu.
- Apply formatting by hotkeys.
- Bug fixes and other minor improvements.
1.2.22 alpha (24.05.18)
- Use markdown in media captions (**bold**, __italic__, `tag` and ```code```).
- Use emoji replacement in media captions, group and channel titles and descriptions (:like: etc.)
- Markdown replacement now happens immediately after typing (instead of after sending) and can be rolled back using Backspace or Ctrl/Cmd + Z. Replacement no longer happens when pasting text.
1.2.21 alpha (18.05.18)
- Support domain names in mtproto proxy.
- Bug fixes and other minor improvements.
1.2.20 alpha (13.05.18)
- Emoji and text replacements are done while you type the message.
- Revert emoji and text replacements by pressing backspace.
- Disable emoji replacements or suggestions in Settings.
- Some critical bug fixes.
1.2.19 alpha (08.05.18)
- Enable proxy for calls in Settings.
- Bug fixes and other minor improvements.
1.2.18 alpha (05.05.18)
- Improve working through proxy servers.
- Bug fixes and other minor improvements.
1.2.17 (08.04.18)
- Bug fixes and other minor improvements.
1.2.16 (07.04.18)
- Bug fixes and other minor improvements.
1.2.15 (26.03.18)
- Bug fixes and other minor improvements.
1.2.14 (21.03.18)
- Discover new stickers. Type one emoji to see suggestions from popular sticker sets. Suggestions from your installed sticker sets will come first.
- Search for Stickers. Click on the new search icon to access your sticker sets or find new ones.
- Quick Reply. Double click near a message for a quick reply.
1.2.13 alpha (21.03.18)
- Bug fixes and other minor improvements.
1.2.12 alpha (12.03.18)
- Bug fixes and other minor improvements.
1.2.11 alpha (10.03.18)
- Bug fixes and other minor improvements.
1.2.10 alpha (09.03.18)
- Bug fixes and other minor improvements.
1.2.9 alpha (07.03.18)
- Quick Reply. Double click near a message for a quick reply.
- Search for Stickers. Click on the new search icon to access your sticker sets or find new ones.
1.2.8 alpha (03.01.18)
- Bug fixes and other minor improvements.
1.2.7 alpha (31.12.17)
- Use fast reply button in group chats.
- Select a message you want to reply to by pressing Ctrl+Up and Ctrl+Down.
1.2.6 (30.12.17)
- Grouped Photos. Group media into an album when sharing multiple photos and videos. Choose the exact order of media you send.
1.2.5 alpha (29.12.17)
- When viewing a photo from an album, you'll see other pictures from the same group as thumbnails in the lower part of the screen.
- When composing an album paste additional media from the clipboard.
- Bug fixes and other minor improvements.
1.2.4 alpha (26.12.17)
- Group media into an album when sharing multiple photos and videos.
- Bug fixes and other minor improvements.
1.2.3 alpha (17.12.17)
- Several crash fixes.
1.2.2 alpha (16.12.17)
- Grouped photos and videos are displayed as albums.
1.2.1 (12.12.17)
- Bug fixes and other minor improvements.
1.2.0 (10.12.17)
- Radically improved navigation. New side panel on the right with quick access to shared media and group members.
- Saved Messages. Bookmark messages by forwarding them to "Saved Messages". Access them from the Chats list or from the side menu.
- Pinned Messages. If you are a channel admin, pin messages to focus your subscribers' attention on important announcements.
- Easily recognize messages from group admins by the new 'admin' badge.
- Also supported clearing history in supergroups and added a host of minor improvements.
1.1.29 alpha (09.12.17)
- Bug fixes and other minor improvements.
1.1.28 alpha (09.12.17)
- Bug fixes and other minor improvements.
1.1.27 alpha (06.12.17)
- Bookmark messages by forwarding them to "Saved Messages". Access them from the Chats list or from the side menu.
1.1.26 alpha (02.12.17)
- Admin badges in supergroup messages.
- Fix crashing on launch in OS X 10.6.
- Bug fixes and other minor improvements.
1.1.25 alpha (30.11.17)
- Bug fixes and other minor improvements.
1.1.24 alpha (29.11.17)
- Radically improved navigation. New side panel on the right with quick access to shared media and group members.
- Pinned Messages. If you are a channel admin, pin messages to focus your subscribers' attention on important announcements.
- Also supported clearing history in supergroups and added a host of minor improvements.
1.1.23 (05.09.17)
- See the message author photo and name while searching specific chat messages.
- Fix "Send To" menu action on Windows.
1.1.22 (04.09.17)
- Bug fixes and other minor improvements.
1.1.21 (03.09.17)
- Bug fixes and other minor improvements.
1.1.20 (03.09.17)
- Groups with unread mentions and replies are now marked with an '@' badge in the chats list.
- Navigate new mentions and replies in a group using the new '@' button.
- Mark your stickers as “favorite” to quickly access them from the redesigned sticker panel.
- Add an official sticker set for your group which all members will be able to use while chatting in your group (100+ member groups only).
1.1.19 (01.08.17)
- Search by messages of specific group members.
- Bug fixes and other minor improvements.
1.1.18 (27.07.17)
- Bug fixes and other minor improvements.
1.1.17 (26.07.17)
- Bug fixes and other minor improvements.
1.1.16 (26.07.17)
- Autocompletion for emoji. Start typing :e to get suggestions.
- Fixed a bug with forwarding messages.
1.1.15 (23.07.17)
- Send **bold** and __italic__ text in your messages.
- Get a share link for posts in public supergroups.
- Quickly share posts from channels and media messages from bots.
- Search large supergroup members by name.
- Search channel members by name for admins.
- Use search in the service actions log.
- Ban supergroup members via the right click menu in the service actions log.
1.1.14 alpha (19.07.17)
- Bug fixes and other minor improvements.
1.1.13 alpha (14.07.17)
- Various bug fixes.
1.1.12 alpha (11.07.17)
- Click on forwarded messages bar to change the recipient chat in case you chose a wrong one first.
- Quickly share posts from channels and media messages from bots.
- Search in large supergroup members by name.
- Search in channel members by name if you're a channel admin.
- Copy links to messages in public supergroups.
1.1.11 alpha (06.07.17)
- Send **bold** and __italic__ text in your messages (in addition to already supported `monospace` and ```multiline monospace```).
- Search in channel and supergroup admin event log.
- Ban members from right click menu in supergroup admin event log.
1.1.10 (04.07.17)
- Add event log filter for channel or supergroup event log.
- Fix search by username in privacy exceptions editor.
- Fix adding admins in channels.
1.1.9 (30.06.17)
- Supergroups can now have up to 10.000 members.
- Appoint supergroup admins with granular rights. Choose who can add users, manage messages, block members, edit group info & username, add new admins, etc.
- Restrict and ban supergroup members with granular precision. Read-only bans, GIF & sticker bans, media bans, temporary bans and restrictions.
- Check the new event log to see all service actions taken by members and admins of a channel or supergroup in the last 48 hours.
- Toggle night mode in the main menu.
1.1.8 alpha (30.06.17)
- Toggle night mode in the main menu.
1.1.7 (30.05.17)
- Improved video messages: radial playback progress, Picture-in-Picture support, duration countdown.
- Voice and video messages now automatically play one after another.
1.1.6 alpha (26.05.17)
- Bug fixes and other minor improvements.
1.1.5 alpha (26.05.17)
- Bug fixes and other minor improvements.
1.1.4 (24.05.17)
- Fix a crash in animated history scrolling.
- Fix a bug with pinned chat to supergroup upgrade.
1.1.3 (24.05.17)
- Improved video messages playback.
- Video and audio messages play one after another.
1.1.2 (17.05.17)
- Emoji icon tooltip about hiding the sidebar.
- Fix possible calls deadlock in Linux.
- Preserve Emoji/Stickers/GIFs panel state between activations.
1.1.1 alpha (17.05.17)
- Emoji icon tooltip about hiding the sidebar.
- Fix possible calls deadlock in Linux.
1.1.0 (14.05.17)
- Telegram Calls are now available on desktops: secure, crystal-clear, constantly improved by artificial intelligence.
- The new Emoji, Stickers, and Saved GIFs panel becomes a separate space on the right when Telegram is running in a wide enough window.
- Manage blocked users list in your supergroups.
- Chat admins can delete messages by other members.
1.0.38 alpha (13.05.17)
- Fix crashes in Windows XP.
- Fix calls in Linux without SSE4.1 support.
- PulseAudio support in calls.
- Bug fixes and other minor improvements.
1.0.37 alpha (10.05.17)
- Multiple crash fixes.
1.0.36 alpha (09.05.17)
- Telegram Calls are now available on desktops: secure, crystal-clear, constantly improved by artificial intelligence.
- Bug fixes and other minor improvements.
1.0.35 alpha (30.04.17)
- Chat admins can delete other participants' messages.
- Bug fixes and other minor improvements.
1.0.34 alpha (21.04.17)
- Bug fixes and other minor improvements.
1.0.33 alpha (16.04.17)
- Bug fixes and other minor improvements.
1.0.32 alpha (12.04.17)
- Testing a build with the latest API layer.
- Bug fixes and other minor improvements.
1.0.31 alpha (11.04.17)
- Bug fixes and other minor improvements.
1.0.30 alpha (11.04.17)
- The new Emoji, Stickers, and Saved GIFs panel becomes a separate space on the right when Telegram is running in a wide enough window.
- Manage blocked users list in your supergroups.
1.0.29 (05.04.17)
- Improved Emoji, Stickers, and Saved GIFs panel.
- Bug fixes and other minor improvements.
1.0.28 alpha (03.04.17)
- Better Emoji & Stickers & Saved GIFs panel.
- Linux: Tray icon should work better in GNOME based Desktop Environments.
- Bug fixes and other minor improvements.
1.0.27 (31.03.17)
- Fix launch in Ubuntu 17.04.
- Update API scheme.
1.0.26 (30.03.17)
— Send MP4/MOV files as videos that will play right inside Telegram.
— Click on the date in any chat to quickly jump to messages from a specific day.
— Change your phone number in Settings.
— Edit who can see your last seen time and who can add you to groups in Settings.
— Edit your list of blocked users in Settings.
— App now respects the "Do Not Disturb" setting for macOS notifications.
— Bug fixes and other minor improvements.
1.0.25 alpha (21.03.17)
- Edit your account phone number in Settings.
1.0.24 alpha (19.03.17)
- Added Last Seen and Group Invite privacy settings.
1.0.23 alpha (15.03.17)
- Edit list of blocked users in Settings.
1.0.22 alpha (13.03.17)
- Bug fixes and other minor improvements.
1.0.21 alpha (11.03.17)
- Send MP4/MOV files as videos that will play right inside Telegram.
- Bug fixes and other minor improvements.
1.0.20 alpha (08.03.17)
- Bug fixes and other minor improvements.
1.0.19 alpha (08.03.17)
- Go to date. Click on the date in a chat to jump to a specific day.
- Respect macOS "Do not disturb" settings for sound notifications.
- Bug fixes and other minor improvements.
1.0.18 alpha (01.03.17)
- Bug fixes and other minor improvements.
1.0.17 alpha (28.02.17)
- Bug fixes and other minor improvements.
1.0.16 alpha (27.02.17)
- Bug fixes and other minor improvements.
1.0.15 alpha (27.02.17)
- Wrong supergroup members display fix.
- RTL text layout fix.
- Linux GTK file choose dialog should show image previews.
- Bug fixes and other minor improvements.
1.0.14 (20.02.17)
- Bug fixes and other minor improvements.
1.0.13 (20.02.17)
- Bug fixes and other minor improvements.
1.0.12 (19.02.17)
- Support for more emoji.
- Click and drag on waveform to play audio from a chosen moment.
- Added Theme editor to Settings.
- Bug fixes and other minor improvements.
1.0.11 alpha (17.02.17)
- Bug fixes and other minor improvements.
1.0.10 alpha (17.02.17)
- Support for more emoji.
- Bug fixes and other minor improvements.
1.0.9 alpha (11.02.17)
- Bug fixes and other minor improvements.
1.0.8 alpha (11.02.17)
- Click and drag on waveform to play audio from a chosen moment.
1.0.7 alpha (07.02.17)
- Added Theme editor to Settings.
1.0.6 (01.02.17)
- Bug fixes and other minor improvements.
1.0.5 (31.01.17)
- Click and drag to reorder pinned chats.
- Bug fixes and other minor improvements.
1.0.4 alpha (30.01.17)
- Click and drag to reorder pinned chats.
1.0.3 alpha (27.01.17)
- Audio device is opened only when some sound is played.
- On Windows Vista and later audio device should switch after the system default changes.
1.0.2 (19.01.17)
- New option to minimize the chat list into a column of profile pictures. Resize the list by clicking and dragging.
- Fixed drag-n-drop images from Firefox on Windows.
- Bug fixes and other minor improvements.
1.0.1 alpha (16.01.17)
- Resize chats list with mouse press-and-drag.
- Drag-n-drop images from Firefox fixed in Windows.
- Bug fixes and other minor improvements.
1.0.0 (11.01.17)
- Fabulous new material-style design and animations.
- Support for custom themes! Check out some themes here: @TelegramThemes.
- Convenient tools for building your own themes coming soon.
- Delete messages for everyone. When you delete your messages in groups and one-on-one chats, you can now choose to delete them for everyone in the chat, not just yourself. This works only for recently sent messages (same as editing).
- Pin important chats to the top of the list so that you never miss a new message (right click on a chat, then choose 'Pin to top').
- Groups in common. A new option in your contacts' profiles that shows a list of all groups you share with that person.
0.10.27 alpha (11.01.17)
- Appoint admins in your supergroups from members list context menu.
- Bug fixes and other minor improvements.
0.10.26 alpha (07.01.17)
- You can use t.me instead of telegram.me.
- OpenAL updated to the latest version.
- Bug fixes and other minor improvements.
0.10.25 alpha (05.01.17)
- Bug fixes and other minor improvements.
0.10.24 alpha (05.01.17)
- Bug fixes and other minor improvements.
0.10.23 alpha (01.01.17)
- Bug fixes and other minor improvements.
0.10.22 alpha (31.12.16)
- Bug fixes and other minor improvements.
0.10.21 alpha (30.12.16)
- Fabulous new material-style design and animations.
- This version already supports custom themes that are coming soon.
- Pin important chats to the top of the list so that you never miss a new message (right click on a chat, then choose 'Pin to top').
- Groups in common. A new option in your contacts' profiles that shows a list of all groups you share with that person.
0.10.20 (18.12.16)
- Bug fixes and other minor improvements.
0.10.19 (25.10.16)
- Bug fixes and other minor improvements.
0.10.18 (24.10.16)
- New cute design for adding members to your groups.
0.10.17 alpha (23.10.16)
- New cute control for adding members to your groups.
0.10.16 (19.10.16)
- New audio player design.
- Quick reply from notifications.
- Hide all notifications button added.
- Change notifications location and maximum count.
- Respecting quiet hours for the notifications.
- You can enable native notifications in Settings.
0.10.15 alpha (18.10.16)
- Bug fixes and other minor improvements.
0.10.14 alpha (18.10.16)
- New audio player design.
- Moved to Qt library version 5.6.2.
- Windows 10: Respecting quite hours for the notifications.
0.10.13 alpha (07.10.16)
- Bug fixes and other minor improvements.
0.10.12 alpha (07.10.16)
- Quick reply from notifications.
- Hide all notifications button added.
- Change notifications location and maximum count.
- Linux: You can enable native notifications in Settings.
0.10.11 (03.10.16)
- Bug fixes and other minor improvements.
0.10.10 (03.10.16)
- Bug fixes and other minor improvements.
0.10.9 (03.10.16)
- Bug fixes and other minor improvements.
0.10.8 (23.09.16)
- Bug fixes and other minor improvements.
0.10.7 (20.09.16)
- Bug fixes and other minor improvements.
0.10.6 (13.09.16)
- Bug fixes and other minor improvements.
0.10.5 (12.09.16)
- New cute design for the Settings page.
- Bug fixes and other minor improvements.
0.10.4 alpha (03.09.16)
- Bug fixes and other minor improvements.
0.10.3 alpha (02.09.16)
- New cute design for the Settings page.
0.10.2 alpha (14.08.16)
- Bug fixes and other minor improvements.
0.10.1 (05.08.16)
- Bug fixes and other minor improvements.
0.10.0 (03.08.16)
- Trending stickers. Check out and install noteworthy sticker packs from the new tab in Settings.
- Archived stickers. Unused stickers are now archived automatically when you go over the 200 limit.
- Group previews. Preview groups before joining them via invite link – see who else is in the group before joining.
- New internal video player.
- Improved design for chats.
0.9.60 alpha (24.07.16)
- Bug fixes and other minor improvements.
0.9.59 alpha (23.07.16)
- Bug fixes and other minor improvements.