forked from telegramdesktop/tdesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog.txt
1735 lines (1046 loc) · 44.3 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.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.
0.9.58 alpha (22.07.16)
- Alpha version of an embedded video player.
0.9.57 alpha (07.07.16)
- Design improvements.
- Linux: trying to use GTK file chooser when it is available.
0.9.56 stable (26.06.16)
- Fixed photo viewer to handle screen resolution change correctly.
- Fixed forwarding photos via drag-n-drop.
- Various design improvements and other bug fixes.
0.9.55 alpha (24.06.16)
- Main window position and size are saved between the launches in Windows.
- Dock and top bar hiding fixed in OS X.
- Various design improvements and other bug fixes.
0.9.54 alpha (22.06.16)
- Photo viewer handles screen resolution change.
- Forward photo by drag-n-drop fixed.
- Some design improvements and bug fixes.
0.9.53 alpha (21.06.16)
- Put your cursor over the members count in a group chat to see the members list.
- Bug fixes and other minor improvements.
0.9.52 alpha (17.06.16)
- Bug fixes and other minor improvements.
0.9.51 stable (15.06.16)
- Bug fixes and other minor improvements.
0.9.50 stable (14.06.16)
- Introducing Drafts: Seamless syncing for unsent messages on all your devices. Drafts are now visible in your chats list.
- Completely redesigned group and user profiles.
- Unread messages counter on the 'Scroll to bottom' button.
0.9.49 stable (16.05.16)
- Edit your messages everywhere within 2 days after posting (press the up arrow button to edit your last message).
- Mention people in groups by typing @ and selecting them from the list — even if they don't have a username.
0.9.48 stable (10.05.16)
- Bug fixes and other minor improvements.
0.9.47 alpha (02.05.16)
- Bug fixes and other minor improvements.
0.9.46 alpha (27.04.16)
- Alpha versions instead of dev.
- Bug fixes and other minor improvements.
0.9.45 dev (22.04.16)
- Bug fixes and other minor improvements.
0.9.44 stable (20.04.16)
- Bug fixes and other minor improvements.
0.9.43 dev (14.04.16)
- Select and copy text in photo / video captions and web page previews.
- Media player shortcuts are enabled only when player is opened.
0.9.42 stable (12.04.16)
- Bug fixes and other minor improvements.
0.9.41 stable (11.04.16)
- Introducing Bot API 2.0, the biggest update to our bot platform since June 2015.
- Bots can now update existing messages on the fly as you interact with them.
- New Inline keyboards with callback, 'open URL' or 'switch to inline mode' buttons help create seamless interfaces.
- Inline bots can now send all attachments supported by Telegram (videos, music, stickers, locations, etc.).
0.9.40 stable (05.04.16)
- Visual improvements.
0.9.39 dev (01.04.16)
- Bug fixes and other minor improvements.
0.9.38 dev (01.04.16)
- Bug fixes and other minor improvements.
0.9.37 dev (31.03.16)
- Bug fixes and other minor improvements.
0.9.36 dev (26.03.16)
- Bug fixes and other minor improvements.
0.9.35 dev (25.03.16)
- Design improvements.
0.9.34 dev (17.03.16)
- Bug fixes and other minor improvements.
0.9.33 stable (16.03.16)
- Linux version critical bug fixed.
0.9.32 stable (14.03.16)
- Bug fixes and other minor improvements.
0.9.31 stable (14.03.16)
- Supergroups can now have 5,000 members (up from 1,000).
- Groups of any size may be converted to supergroups.
- Make your supergroup public by setting up a public link – anyone will be able to view the chat and join it.
- Pin messages to keep important updates visible and notify all members.
'Select messages to delete, report as spam, block users, or remove all messages from a user'
0.9.30 dev (03.03.16)
- Bug fixes and other minor improvements.
0.9.29 dev (01.03.16)
- Ctrl+W or Ctrl+F4 for close window (Cmd in OS X).
- Ctrl+L to lock Telegram if you use a local passcode (Cmd in OS X).
0.9.28 stable (26.02.16)
- Edit your messages in channels and supergroups.
- Share links to specific posts in channels via the post context menu.
- Add admin signatures to messages in channels.
- Send silent messages in channels that will not notify members, useful for non-urgent or late night posting.
0.9.27 dev (25.02.16)
- Edit your messages in channels and supergroups.
- Share links to specific posts in channels via the post context menu.
- Add admin signatures to messages in channels.
- Send silent messages in channels that will not notify members, useful for non-urgent or late night posting.
0.9.26 stable (22.02.16)
- Adaptive layout for wide screens switch added to Settings.
- Linux version crash fix.
0.9.25 dev (21.02.16)
- Adaptive layout for wide screens switch added to Settings.
- Linux version crash fix.
0.9.24 stable (16.02.16)
- New waveform visualizations for voice messages.
- Sticker suggestions when you type an emoji.
0.9.23 dev (15.02.16)
- Bug fixes and other minor improvements.
0.9.22 dev (14.02.16)
- Voice messages waveform visualizations.
0.9.21 dev (09.02.16)
- Bug fixes and other minor improvements.
0.9.20 dev (08.02.16)
- Testing new crash reporting system.
- Conversation history is centered in wide windows.
- New cute link and timestamp tooltips design.
- Ctrl+W or Ctrl+F4 closes Telegram window.
0.9.19 dev (09.01.16)
- Choose an emoticon and see the suggested stickers.
0.9.18 stable (05.01.16)
- Bug fixes and minor improvements.
0.9.17 stable (04.01.16)
- Crash fixed.
0.9.16 stable (04.01.16)
- GIFs autoplay and automatic download.
- Inline bots support.
- Automatic download settings added.
- All media redesigned.
0.9.15 stable (09.12.15)
- Sticker management: manually rearrange your sticker packs, pack order is now synced across all your devices.
- Click and hold on a sticker to preview it before sending.
- New context menu for chats in chats list.
- Support for all existing emoji.
0.9.14 dev (09.12.15)
- Sticker management: manually rearrange your sticker packs, pack order is now synced across all your devices.
- Click and hold on a sticker to preview it before sending.
- New context menu for chats in chats list.
- Support for all existing emoji.
0.9.13 stable (25.11.15)
- Groups can now have multiple administrators with the ability to edit the name and logo, and add and remove members.
- Groups that have reached their capacity of 200 users can be upgraded to supergroups of up to 1,000 members.
0.9.12 dev (22.11.15)
- Bug fixes and other minor improvements.
0.9.11 dev (22.11.15)
- Groups can now have multiple administrators with the ability to edit the name and logo, and add and remove members.
- Groups that have reached their capacity of 200 users can be upgraded to supergroups of up to 1,000 members.
0.9.10 stable (04.11.15)
- New shared audio files section.
- New design for popup menus.
- Add captions to any photos you send.
- Surround text with `single backticks` for inline monowidth code and ```triple backticks``` for blocks of code.
- The Tilde symbol is now displayed correctly.
0.9.9 dev (02.11.15)
- New popup menus in text input fields.
- Error is displayed when trying to paste or drop a folder instead of a file.
- Some bugfixes and improvements.
0.9.8 dev (28.10.15)
- Tilde symbol fixed in message input field.
- Add a caption to any photo you send.
- Bad sound quality bug fixed.
- Some bugfixes and improvements.
0.9.7 dev (23.10.15)
- Tilde symbol display fixed.
- Bold and Italic text display from bots supported.
- Send code without text and emoji replaces using `such syntax` for inline parts and ```such syntax``` for blocks of code.
- Some bugfixes and improvements.
0.9.6 stable (14.10.15)
- Bug fixes and other minor improvements.
),
),
0.9.5 stable (14.10.15)
- Improved speed.
- First steps towards a new design.
),
),
0.9.4 dev (12.10.15)
- New design for all modal windows.
- Toggle notifications from tray menu.
0.9.3 dev (01.10.15)
- Dialogs and emoji render made much faster.
0.9.2 stable (25.09.15)
- Bug fixes and other minor improvements.
0.9.1 stable (24.09.15)
- Bug fixes and other minor improvements.
0.9 stable (24.09.15)
- Introducing Channels — a great new way to broadcast your messages to unlimited audiences.
- Other fixes and improvements.
0.8.59 dev (23.09.15)
- Channels members and admins management added.
0.8.58 dev (22.09.15)
- Limited Channels support added.
0.8.57 stable (13.09.15)
- Bug fixes and other minor improvements.
0.8.56 stable (10.09.15)
- Spam report buttons in new chats.
- Other fixes and improvements.
- OS X 10.8 notifications fixed.
0.8.55 stable (02.09.15)
- Include muted chats in unread count in Settings.
- Shared links overview and search in shared media.
- Preview when sending links to GIF animations and PDF files.
0.8.54 dev (31.08.15)
- Preview when sending links to GIF animations and PDF files.
- Full date and time shown when mouse over message timestamp.
0.8.53 dev (28.08.15)
- Include muted chats in unread count in Settings.
- Shared links overview and search in shared media.
0.8.52 stable (19.08.15)
- Bug fixes and other minor improvements.
0.8.51 stable (17.08.15)
- Block users from their profile page.
- Added support for Windows toast notifications.
- Fixed input methods on Linux (Fcitx and IBus).
0.8.50 dev (14.08.15)
- Bug fixes in Windows notifications.
- Fixed input methods on Linux (Fcitx and IBus).
0.8.49 dev (12.08.15)
- Block users from user profile.
- Ask support team a question from Settings.
- Windows toast notifications support added.
0.8.48 stable (08.08.15)
- Search for messages in conversation.
- Clear messages history in groups.
- Contacts without messages are hidden from the conversations list.
0.8.47 dev (07.08.15)
- Search for messages in conversation.
- Clear messages history in groups.
- Contacts without messages are hidden from the conversations list.
0.8.46 stable (05.08.15)
- Crash fix on sending .webp files.
0.8.45 stable (03.08.15)
- Bug fixes and other minor improvements.
0.8.44 dev (01.08.15)
- Sending media and recording audio status display.
0.8.43 stable (31.07.15)
- Bug fixes and other minor improvements.
0.8.42 dev (31.07.15)
- Dev version will now get updated to stable as well.
0.8.41 dev (21.07.15)
- Pretty phone number formatting.
- Fixed shared contacts display.
- Fix KDE crash, use Qt tray icon in all Linux systems.
0.8.40 dev (17.07.15)
- Fixed critical Qt bug in image scale.
- Huge amount of unread messages are loaded much faster.
- Some bugfixes and optimizations.
0.8.39 dev (14.07.15)
- Moved to Qt 5.5 and Xcode 6.4.
- Some bugfixes and optimizations.
- In OS X 10.10.3 location marks sent from mobile should be displayed now.
0.8.38 stable (03.07.15)
- Improved in-app media playback.
0.8.37 dev (03.07.15)
- Improved in-app media playback.
0.8.36 stable (01.07.15)
- Forward photos, media and stickers with drag-n-drop.
- Drag-n-drop text messages by timestamp to forward them.
- Larger stickers panel.
- IPv6 checkbox added to Connection Type in Settings.
0.8.35 dev (30.06.15)
- Bug fixes and minor improvements.
0.8.34 dev (28.06.15)
- Forward photos, media and stickers with drag-n-drop.
- Drag-n-drop text messages by timestamp to forward them.
- Larger stickers panel.
0.8.33 dev (25.06.15)
- IPv6 connection checkbox added to Connection Type box in Settings.
0.8.32 stable (25.06.15)
- Critical bug fixed.
- IPv6 connection temporarily disabled.
0.8.31 dev (24.06.15)
- Bots support using the new bot API.
- Drag-n-drop selected text and links from messages.
- Forward selected messages by drag-n-drop.
0.8.30 stable (24.06.15)
- Bots support using the new bot API.
0.8.29 dev (22.06.15)