加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
changelog.txt 60.86 KB
一键复制 编辑 原始数据 按行查看 历史
John Preston 提交于 2020-02-11 19:10 . Version 1.9.12.
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313
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)
- 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.
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)
- Bug fixes and minor improvements.
0.8.28 dev (18.06.15)
- Bug fixes and minor improvements.
0.8.27 dev (17.06.15)
- Bug fixes and minor improvements.
0.8.26 dev (17.06.15)
- Bug fixes and minor improvements.
0.8.25 dev (15.06.15)
- IPv6 connections support.
0.8.24 stable (08.06.15)
- Improved sticker panel.
0.8.23 dev (05.06.15)
- Improved sticker panel.
- New autoupdate check.
0.8.22 dev (04.06.15)
- OpenAL updated to a new version.
- Autoupdating improved.
- Bugfixes.
0.8.21 stable (02.06.15)
- Added sending voice messages.
- Fixed disappearing stickers.
0.8.20 dev (02.06.15)
- Minor bug fixes.
- Translations improved.
0.8.19 dev (02.06.15)
- Fixed disappearing stickers.
0.8.18 dev (01.06.15)
- Voice messages recording and sending.
0.8.17 stable (21.05.15)
- Crash fix.
0.8.16 stable (20.05.15)
- Added support for sticker packs.
- New emoji and sticker panel.
0.8.15 dev (20.05.15)
- Video captions are displayed.
- Photo captions are displayed in photo viewer.
- Round corners for messages.
0.8.14 dev (19.05.15)
- Added support for sticker packs.
- New emoji and sticker panel.
0.8.13 stable (12.05.15)
- Added support for new emoji.
- Improved emoji and stickers panel.
0.8.12 dev (08.05.15)
- New emojis support added.
- Emojis and stickers panel improved.
0.8.11 stable (01.05.15)
- Invite links for group chats.
- Gray unread badge for muted conversations.
0.8.10 dev (01.05.15)
- Critical bug fixes for messages history loading.
0.8.9 dev (30.04.15)
- Fix for invite links.
0.8.8 dev (30.04.15)
- Invite links for group chats.
- Gray unread badge for muted conversations.
0.8.7 stable (24.04.15)
- New photo viewer design.
- Switch between files in the photo viewer.
- Grouped notifications when several messages are forwarded.
- New default chat background image (you can change it in Settings).
0.8.6 dev (24.04.15)
- Old default chat background image placed first in background Gallery.
- Forwarded files, videos, audios and contacts original sender name is displayed.
- Grouped notifications when several messages are forwarded.
0.8.5 dev (22.04.15)
- New photoviewer design.
- Switch through files overview in photoviewer.
- New default chat background image.
0.8.4 stable (13.04.15)
- Link preview layout bug fix.
0.8.3 stable (08.04.15)
- Link previews for Twitter, YouTube, Instagram and certain other links.
- Two-step verification.
- View all your Telegram sessions, terminate specific sessions.
0.8.2 dev (07.04.15)
- Link previews bugfixes.
- Links in preview descriptions are now clickable.
- Twitter and Instagram mentions and hashtags in previews are clickable.
- Fixed file uploading.
- Fixed photo, document and sticker forwarding.
0.8.1 dev (05.04.15)
- Link previews for Twitter, YouTube, Instagram and certain other links.
- Two-step verification.
- View all your Telegram sessions, terminate specific sessions.
- Text is pasted from clipboard when clipboard has both text and image and image sending was cancelled.
0.8 stable (26.03.15)
- Add a comment before forwarded messages.
- Hashtags suggestions in new message and search fields (based on recent searches).
- Button to jump back to a reply after viewing the original message.
- Add people to groups by username.
0.7.26 dev (26.03.15)
- Some bugfixes.
0.7.25 dev (25.03.15)
- Add people to groups by username.
- Copy @username from profile context menu.
0.7.24 dev (24.03.15)
- Forward messages with comment or sticker before them.
- Recent hashtags autocomplete in message and search fields.
- Move from reply to original message and back.
0.7.23 stable (20.03.15)
- Reply to specific messages in groups.
- Mention @usernames in groups to notify multiple users.
0.7.22 dev (20.03.15)
- Critical bug in messages delivery fixed.
0.7.21 dev (19.03.15)
- Reply to specific messages in groups.
- Mention @usernames in groups to notify multiple users.
0.7.20 stable (13.03.15)
- Lock your app with a passcode.
0.7.19 dev (03.03.15)
- Passcode lock option added to Settings.
0.7.18 dev (20.02.15)
- Windows: crash on start fixed for some Intel cards.
- Linux: tray icon returned in Pantheon and Gnome.
0.7.17 stable (19.02.15)
- Some minor improvements.
- Windows: crash on app launch fixed for some Intel graphic cards.
0.7.16 stable (17.02.15)
- Some translations improvements.
- Linux: tray icon should work better in non-Unity environments.
0.7.15 dev (16.02.15)
- Some translation keys added.
- Linux: fixed semibold font.
- Linux: tray icon should work better in non-Unity environments.
0.7.14 dev (12.02.15)
- Moved to Qt 5.4.0 version, please check everything.
- Time values should be displayed like in your system.
- Linux: fixed keyboard shortcuts when not english keyboard layout.
0.7.13 stable (10.02.15)
- You can now change the chat background.
0.7.12 dev (06.02.15)
- Chat background settings translated.
- Mac OS X and Linux autoupdate for dev-version fixed.
0.7.11 dev (05.02.15)
- Chat background can be changed.
- First dev-channel version.
0.7.10 (29.01.15)
- Online updated only while current window is active.
0.7.9 (23.01.15)
- Added Korean language.
- Quick «open with» menu on Windows and OSX.
0.7.8 (19.01.15)
- Some graphics changed.
- Windows: when activating window by click selection is not cleared.
- Linux: tray icon and unity launcher counter support improved.
0.7.7 (16.01.15)
- Windows: system sleep / hibernation fixed when app is running.
- Mac OS X: crashes on OS X 10.7 and 10.8 fixed.
- Linux: tray icon support and unity launcher counter for unread messages added in Ubuntu.
0.7.6 (06.01.15)
- Some improvements for stickers.
- Some translation improvements.
0.7.5 (03.01.15)
- Stickers support.
- Local caching for voice messages.
- Added Portuguese language.
0.7.4 (23.12.14)
- German and Dutch languages added.
0.7.3 (21.12.14)
- Italian and Spanish languages added.
0.7.2 (16.12.14)
- Title buttons bug fixed in single column layout.
0.7.1 (16.12.14)
- Linux: font for Korean characters added.
- Various bugs fixed.
0.7 (16.12.14)
- Improved single column navigation.
- Improved image viewer for large documents.
0.6.21 (13.12.14)
- Crash fixed for contacts without names.
0.6.20 (13.12.14)
- Crash fixed in single column layout.
0.6.19 (13.12.14)
- Some bugs fixed.
0.6.18 (12.12.14)
- Single-column layout support added for small chat window.
- Photos are sent up to 1280x1280 size.
- New device login notification added.
- New version notification added.
0.6.17 (08.12.14)
- Filter in contacts lists (contacts, new group, add member) now is case-insensitive.
- Win: telegram.me/username links handling fixed.
0.6.16 (05.12.14)
- telegram.me/username links supported.
- Downloaded documents local cache added.
- Some network improvements.
0.6.15 (26.11.14)
- Intro and login were slightly redesigned.
- Some various bug fixes.
0.6.14 (24.11.14)
- Work over HTTP crashing fixed.
0.6.13 (24.11.14)
- Application icon changed.
- Vimeo video links shown with preview.
- Some iOS emojis display fixed.
- Windows version crash when notification clicked fixed.
0.6.12 (22.11.14)
- Message drafts are saved.
- Local photos cache added.
- Shared contacts display and youtube links preview fixed.
0.6.11 (18.11.14)
- Some minor fixes.
0.6.10 (18.11.14)
- Portrait oriented photos display fixed.
- Photo thumbs size decreased in conversations.
- OS X: tray icon fixed in dark status bar theme.
- OS X: main menu added.
0.6.9 (15.11.14)
- Some network problems fixed.
0.6.8 (13.11.14)
- YouTube and Instagram links are displayed with preview.
- Location messages are displayed as a map with a link.
- OS X: .dmg setup image now has a design.
- OS X: updating after notebook wakeup fixed.
0.6.7 (05.11.14)
- Long texts are now split to several messages.
- Some network improvements.
0.6.6 (29.10.14)
- Some network improvements.
- Upload and download speed increased.
0.6.5 (22.10.14)
- Username support added.
0.6.4 (17.10.14)
- Photoviewer redesigned.
- Default recent emojis filled.
- Linux photo and document save from photoviewer fixed.
0.6.3 (10.10.14)
- Inline animated GIF documents view.
- Crash in forward from search results fixed.
0.6.2 (07.10.14)
- Some documents (PNG and JPG) are opened in app photo viewer.
- Photo and document viewer supports Ctrl + / Ctrl - / Ctrl 0 zoom hotkeys and image dragging.
0.6.1 (30.09.14)
- Windows only: fixed context menus.
- OS X only: fixed crash with disabled tray icon.
0.6 (30.09.14)
- Photo loading indicator added.
- Custom context menus added, including tray menu in Windows.
- Default download folder to "Downloads/Telegram Desktop".
- Improved OS X tray icon view and behaviour.
0.5.21 (21.09.14)
- Loading photos blurred in photos overview.
- Full voice message duration displayed when playing.
- Multimonitor photo view fixed.
0.5.20 (20.09.14)
- Loading photos blurred.
- Default emoji images used.
- OS X tray icon support added.
- Windows version is now digitally signed.
0.5.19 (05.09.14)
- Long voice message playing fix.
0.5.18 (05.09.14)
- Voice messages auto download and in-app playing support.
- Audio now is working through OpenAL library.
- Linux version now is not dependent on libpulse.
0.5.17 (21.08.14)
- Multi selection added to media overview.
- Photos in overview are displayed in right order now.
- Some crashes fixed.
0.5.16 (15.08.14)
- Navigate through photos fixed.
- Media overview in profiles (photos, video files, documents, voice messages).
- Going to current message in history from media overview context menu.
- Some protocol+network bugs fixed.
- OS X application signed by Developer ID certificate.
0.5.15 (12.08.14)
- Fixes in new photo viewer.
0.5.14 (11.08.14)
- New photo viewer, fullscreen, with controls and moving through conversation photos.
- Checkbox for sending images from clipboard without compression as documents.
0.5.13 (02.08.14)
- Some network and protocol issues fixed.
0.5.12 (30.07.14)
- Fixed diacritics input in Linux.
- Fixed saving files with incorrect server-side filenames in Windows.
0.5.11 (26.07.14)
- High definition graphics added (2x interface scale and OS X retina displays).
- Some invalid links highlighting removed.
0.5.10 (24.07.14)
- Escape key closes photo view.
- On OS X now Ctrl+Tab and Ctrl+Shift+Tab are working for dialogs switching.
- On Linux fixed notifies (they don't grab focus and aren't seen in windows switcher), fixed keyboard layout change.
- On Linux all application data is now stored in ~/.TelegramDesktop directory.
0.5.9 (18.07.14)
- Choose between notification with preview, with only sender's name (message preview hidden) or without any information.
- Sending documents from "Send to" explorer context menu added, see a checkbox in Settings (only Windows version).
- Little features: Ctrl+Tab / Ctrl+Shift+Tab switch to near dialogs, links without top-level domain highlight, version in About dialog now leads to version history.
- Some bugs fixed: maximize button in Ubuntu, running different copies of app under different users at the same time in Windows, Surface touchscreen support fixed.
- Added 32 bit Ubuntu version.
0.5.8 (16.07.14)
- Fixed crash at contact message history clear.
- Ubuntu 12.04 is supported now.
- Added hashtag highlight and messages search by hashtags.
0.5.7 (15.07.14)
- All platforms are updated up to one version and code (Windows, OS X, Ubuntu).
- Fixed crash at document open on OS X.
- Message search results shown below the filtered dialogs when searching.
0.5.6 (04.07.14)
- Windows test version (no autoupdate) with server-side messages search.
- First version of Ubuntu tdesktop build released.
0.5.5 (25.06.14)
- First version of OS X tdesktop build released.
0.5.4 (17.06.14)
- Font changed to Open Sans.
0.5.3 (13.06.14)
- Taskbar icon hide fixed (once again!), sorry :(.
0.5.2 (12.06.14)
- Two crashes fixed.
- Ellipsis text overflow display fixed in dialogs list.
0.5.1 (01.06.14)
- Fixed audio notifications.
- Fixed taskbar icon hiding.
- source code: ./_qt_5_3_0_patch/ updated, Qt 5.3 rebuild required.
0.5.0 (30.05.14)
- Application source code is published on GitHub under GPL v3
0.4.18 (28.05.14)
- Crash in other users profile fixed.
0.4.17 (28.05.14)
- Desktop notifications bug fixed.
0.4.16 (28.05.14)
- Desktop and sound notifications one second delay added.
- Chat and contact notifications settings cloud-stored and synced, loaded from server.
- Mobile sign up skip added, you can join from desktop now.
0.4.15 (29.04.14)
- Default tcp and http connection types merged to one.
- Using tcp connection by default, using http-transport if plain tcp is unavailable.
- Files less than 10mb are md5-signed now.
0.4.14 (19.04.14)
- Documents and files up to 1500 Mb can be sent now.
- Some lang phrases are fixed.
- Memory leak fixed in file upload.
0.4.13 (16.04.14)
- Critical auth-storing bug fixed (auto-logout on app relaunch in some cases).
0.4.12 (16.04.14)
- Window shadow and resize area now scale with the rest of the interface.
- Multiple delete and forward buttons and scale select design improved.
- Portable version (the same Telegram.exe, actually) .zip archive added here.
0.4.11 (09.04.14)
- Emoji smiles support in message field added.
- Hover-button for emoji tab showing added to the left from Send button.
0.4.10 (31.03.14)
- Some texts fixes and autoupdate check.
0.4.9 (31.03.14)
- High dpi support added, in settings: 1x, 1.25x, 1.5x, 2x interface scale.
0.4.8 (25.03.14)
- No changes, just autoupdate testing version.
0.4.7 (25.03.14)
- One more critical autoupdate bug fixed, users with not latin symbols in their Windows login names will have to install this version manually by setup executable.
- Autoupdate behind authentication-requiring proxy network settings fixed.
0.4.6 (22.03.14)
- Critical autoupdate bug fixed, users with not latin (utf) symbols in their Windows login names will have to install this version manually by setup executable.
- Voice messages extension changed from .mp3 to .ogg, because they are in OGG container, with Opus audio codec.
0.4.5 (22.03.14)
- Connection bug fixed.
0.4.4 (22.03.14)
- Fixed voice mail attach download, it works like video and documents now.
- After video, audio or document download Download button becomes Open With instead of Save As.
0.4.3 (16.03.14)
- Default download path introduced, no folder select for each video, audio or other file.
- You can choose old approach (choose download path for each file) in Settings.
- In downloaded video, audio and file context menu (right-click) added "Show in Folder" option.
0.4.2 (14.03.14)
- Network bug fixed, file upload on weak connections should be better now.
- Selected items clear after message forward fixed.
- Suggested filename fixed in save file dialog box.
0.4.1 (11.03.14)
- Auto-update critical WinXP bug fixed.
- You should install this version manually, if app was broken on WinXP.
0.4 (10.03.14)
- Better touch-screen support (tested on Surface Pro 2).
- Moved to new versions of ide+compiler and of some libs.
0.3.13 (07.03.14)
- Crash on right mouse button press fixed.
0.3.12 (07.03.14)
- Text and messages selection.
- Copy selected to clipboard (Ctrl+C and from context menu).
- Multiple message forward and delete support.
0.3.11 (04.03.14)
- Long phone numbers enabled (12 digits after country code).
0.3.10 (02.03.14)
- Bad reconnect delay bug fixed.
0.3.9 (27.02.14)
- Some scroll bugs fixed.
- Message forward confirm by Enter added.
0.3.8 (26.02.14)
- Dropdown with two attach types added, File (document) or Photo.
- Different drag-n-drop zones done for photo and document sending.
- File dialog open speed increased in some cases.
0.3.7 (24.02.14)
- New text layout used in messages, rtl/bidi support done.
- Emoji auto replace in message text added (replace list in settings).
- Clickable user links added to service messages (smbd invited smbd to group, etc).
0.3.6 (23.02.14)
- New text layout testing.
- Email highlight in messages and click response fixed.
0.3.5 (20.02.14)
- Reconnect timeout added, must work better after sleep mode.
- Minor design improvements and layout fixes.
0.3.4 (13.02.14)
- New design fully implemented.
0.3.3 (12.02.14)
- Test version of new design implementation.
0.3.2 (11.02.14)
- First (private) version of new design implementation.
0.3.1 (26.01.14)
- Rare protocol bug (with incorrect system time handle) fixed.
0.3.0 (26.01.14)
- Long links tooltips added.
- Intro and settings animation improved.
- Bug fixes (protocol, group creation, etc).
0.2.9 (12.01.14)
- Minor bug fixes.
0.2.8 (12.01.14)
- Differenct connection type supported (http-transport support added).
- Connecting with system and custom proxy settings supported (http and socks5 proxy support added).
0.2.7 (07.01.14)
- Window resize areas are now positioned outside the window area, so they are wider and do not conflict with message history scrollbar.
- Some bugs fixed, one connection problem solved.
0.2.6 (06.01.14)
- Document sharing supported, downloading and uploading up to 100 mb files.
- Download videos, that were sent from mobile apps, as documents.
0.2.5 (30.12.13)
- Group photo upload fixed for some photo sizes.
0.2.4 (30.12.13)
- Delete history and Delete contact buttons in contacts, Delete and exit button in groups.
- Adding and removing group participants supported.
- New group creation supported.
0.2.3 (20.12.13)
- Couple of crashing bugs fixed.
0.2.2 (20.12.13)
- User and group profile pages now available, click photo or name in window title area.
- Group name and photo change support from group profile page.
- Group participants list with last activity time and online status displayed on group profile page.
- Adding users to your contact list and editing their contact names from user profile page.
- Contact sharing supported from user profile page.
0.2.1 (16.12.13)
- User name and profile photo update in settings.
0.2 (11.12.13)
- Auto-update support.
- Setup no longer requires admin rights (except first installation over a previous version, that was installed using admin rights).
- Application window retains screen position upon relaunch.
0.1.16 (29.11.13)
- Added «Delete Message» and «Forward Message» items to context menus.
- No PUSH-notifications are sent to your mobile phone from the currently active Telegram Win conversation.
- Fixed issue with broken long links in messages copied to clipboard.
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化