Commit Graph

19658 Commits

Author SHA1 Message Date
John Preston 05cf8aaa0f Suggest sending large texts as files. 2026-04-10 19:26:30 +07:00
23rd 9a9307ead3 Fixed compose search calendar jumps for pinned and sublist threads. 2026-04-10 15:06:20 +03:00
23rd 33f86dc7b0 Added support of search in section of pinned messages. 2026-04-10 15:06:20 +03:00
23rd a4e7923b15 [poll-view] Prevented bogus poll percentages without total voter count. 2026-04-10 15:06:20 +03:00
23rd 4a0b47d286 Added inline update button to unsupported message fallback. 2026-04-10 15:06:20 +03:00
John Preston b4b3446135 Add loading draft streaming animation. 2026-04-10 15:33:01 +07:00
John Preston 82650f5420 Fix build with MSVC. 2026-04-10 15:32:33 +07:00
John Preston 4646cc7f21 Correct text appear continuation. 2026-04-10 14:21:50 +07:00
John Preston 2810b186bb Fix possible crash in forum new window open. 2026-04-10 14:21:50 +07:00
John Preston 8f2fbff93e Fix streamed drafts updates. 2026-04-10 14:21:50 +07:00
John Preston cdf1f16944 Fix messages appearance in botforums. 2026-04-10 14:21:50 +07:00
John Preston 432072a3d4 Stream several messages together. 2026-04-10 14:21:30 +07:00
23rd c773f16a4a Added proxy check IP exposure warning before status check. 2026-04-10 09:13:31 +03:00
23rd bdcdafab2d Fixed album forwarding with top peers selector. 2026-04-10 09:13:31 +03:00
23rd a8b59804fa Disabled debug logging by default for macOS debug builds. 2026-04-10 09:13:31 +03:00
John Preston 07250a1bcf Revert translation by "Don't translate {lang}". 2026-04-10 12:55:02 +07:00
John Preston d0e24b555c Bring fullscreen media viewer to active space on macOS. 2026-04-09 17:06:44 +07:00
23rd 88404cfddb Removed unused private fields. 2026-04-09 12:36:51 +03:00
John Preston 111b15a855 Allow many lines in ConfirmInviteBox about. 2026-04-09 16:09:16 +07:00
John Preston 4009a47377 Fix word-wrapping of streamed text. 2026-04-08 23:14:07 +07:00
John Preston 7cd4bd3cd4 Rewrite text appear animation. 2026-04-08 17:35:36 +07:00
John Preston 1c94acdeca Don't force drop-to-left in media context menu. 2026-04-08 17:35:05 +07:00
John Preston ca3eb7dca4 Version 6.7.5.
- Support for gradual appearing of bot reply messages.
2026-04-07 23:19:25 +07:00
John Preston f6abf7a2d2 Remove some debug logs. 2026-04-07 22:52:02 +07:00
John Preston a8f9cf430d Fix draft streaming continuation. 2026-04-07 22:33:12 +07:00
John Preston 98f342227f Remove reveal animation on draft replacement. 2026-04-07 22:26:41 +07:00
John Preston 55e284729e Initial implementation of gradual draft streaming. 2026-04-07 22:26:41 +07:00
John Preston fef4e14fb0 Version 6.7.4.
- Add experimental option for "AI Tools" button.
- Jump between markers with Alt+Arrows in media view.
- Info button in AI Tools box.
- Show warning for unofficial app builds.
- Allow text emojify without selecting a style.
- Accept also base64 (non-url) proxy secrets.
- Use tg:// deeplinks for proxy share links.
- Fix newbot deeplink parsing with trailing slash and unicode names.
- Fix file reference refresh for user, group and channel photos.
- Fix stale macOS tray icon colors after appearance switches.
- Fix tooltip crash in top peers selector with small width.
- Fix preserving markers after video quality switch in media view.
2026-04-07 12:53:33 +07:00
John Preston eeafe97614 More strict checks in ffmpeg decodiing. 2026-04-07 12:53:33 +07:00
23rd f869ad620e Fixed detailed button crash when accessibility queried toggle early. 2026-04-07 08:02:11 +03:00
John Preston a5307489ff Accept also base64 (non-url) secrets. 2026-04-07 11:57:42 +07:00
John Preston b1d21600cf Elide too long call button text. 2026-04-07 11:57:42 +07:00
John Preston 3bbef51448 Add an experimental option for "AI Tools" button. 2026-04-07 11:57:41 +07:00
rdmcd a17199c7a9 Fix startchannel deeplink: add missing stories rights and bot defaults fallback.
ParseRequestedAdminRights was missing post_stories, edit_stories and
delete_stories identifiers, causing all admin rights to be discarded
when any of these appeared in the admin parameter. Also, startchannel
always used explicit URL rights even when empty, never falling back to
bot's default admin rights configured via BotFather (unlike iOS client).

Unknown admin right identifiers are now skipped instead of discarding
all already-parsed rights, improving forward-compatibility of deeplinks.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 11:26:02 +07:00
John Preston 13ddffd66a Fix editor open from SendFilesBox. 2026-04-07 11:02:14 +07:00
23rd b80f25fbc5 Made Swift 6 local translation support optional. 2026-04-06 17:52:53 +03:00
23rd 9cb41f4517 Replaced RoundButton text transform constructor arg with setter. 2026-04-06 16:58:16 +03:00
23rd 494833236f Defaulted RoundButton text transform to no-transform. 2026-04-06 16:58:16 +03:00
23rd 7c26a251cf Added text transform to RoundButton as mandatory argument. 2026-04-06 16:58:15 +03:00
23rd d164a49675 Removed premium section on first rate-limited summary click.
Fixed #30201.
2026-04-06 13:15:34 +03:00
KevinHuge 59b089a0cc Fix stale macOS tray icon colors after appearance switches
Summary:
Fix the macOS tray icon refresh path so the menu bar icon updates immediately after system light/dark appearance changes, even while Telegram stays unfocused in the background.

Changes:
The tray icon code was observing status button appearance changes but rendering against NSApp effectiveAppearance on macOS 10.14 and newer. Those two appearance sources do not update in lockstep while Telegram is unfocused, which caused the tray icon to redraw with a stale color until the app was focused. This change makes the renderer use status.button.effectiveAppearance directly so the icon color is derived from the same Cocoa object that emits the refresh signal.
2026-04-06 16:57:03 +07:00
23rd c031f09886 Fixed display of button in connection box on non-default scales. 2026-04-06 12:46:19 +03:00
23rd 3af2bf61fe Fixed tooltip crash when top peers selector widget has small width. 2026-04-06 12:24:28 +03:00
23rd 6f4ed6883b Fixed userpic photo origin to use full user for refresh. 2026-04-06 11:49:28 +03:00
23rd ec94dc26ac Fixed file reference refresh for group and channel photos. 2026-04-06 11:49:27 +03:00
23rd 8decb55e51 Fixed file reference refresh for user personal and fallback photos. 2026-04-06 11:49:27 +03:00
23rd 8346a90d65 Fixed summarize button small clipping during loading animation. 2026-04-06 11:49:27 +03:00
23rd 4191ecc2e6 Added simple animation while jumping between markers in media view. 2026-04-06 11:49:27 +03:00
23rd 783ed506bd Added ability to jump between markers with Alt+Arrows in media view. 2026-04-06 11:49:27 +03:00
John Preston 00bd28278d Show unofficial app warning. 2026-04-06 15:43:44 +07:00