Telegram github commits and releases
4.55K subscribers
601 files
20.3K links
Broadcast from the most important Telegram clients' repositories
Download Telegram
TGX-Android/Telegram-X/main4bdf4de1 files, +0/-1
Remove rudimentary logging

TGX-Android/Telegram-X/main93fda892 files, +6/-6
Update dependencies

TGX-Android/Telegram-X/maina874e131 files, +1/-1
Update FFmpeg to FFmpeg/FFmpeg@e21e475

TGX-Android/Telegram-X/main283aa9e1 files, +1/-1
Do not use `-Xlint:-dangling-doc-comments`

TGX-Android/Telegram-X/mainc9798eb3 files, +27275/-26631
Update baseline profile

TGX-Android/Telegram-X/maind2008bd1 files, +1/-1
Version bump to `1802`

#tgxandroid
🫡3
TGX-Android/Telegram-X/main7ada8e77 files, +89/-115
Update pre-latest flavors

TGX-Android/Telegram-X/mainc7e78251 files, +0/-35
Remove `update-dependencies.sh`

TGX-Android/Telegram-X/maineff99a91 files, +4/-0
Add final cleanup after FFmpeg build

TGX-Android/Telegram-X/main3c9d9c91 files, +10/-0
Require JDK 21

TGX-Android/Telegram-X/main83690171 files, +1/-1
Version bump to `1802`

#tgxandroid
🫡3
TGX-Android/Telegram-X/maine92c8178 files, +67/-60
Improve build speed

TGX-Android/Telegram-X/main05c383116 files, +30/-17
Upgrade Gradle to `9.7.0`

TGX-Android/Telegram-X/main53301eb1 files, +1/-1
Version bump to `1802`

#tgxandroid
🫡3
TGX-Android/Telegram-X/maincb3c1941 files, +2/-3
Increase heap size + Enable caching

TGX-Android/Telegram-X/main920a83a1 files, +1/-1
Version bump to `1802`

#tgxandroid
🫡3
TGX-Android/Telegram-X/main48ebd443 files, +5/-5
Exclude `:baseline-profile` from default project configuration

TGX-Android/Telegram-X/mainad5025c1 files, +1/-1
Version bump to `1802`

#tgxandroid
🫡3
TGX-Android/Telegram-X/main46080422 files, +28/-32
Improve build speed

TGX-Android/Telegram-X/main8177ad81 files, +1/-1
Version bump to `1802`

#tgxandroid
🫡3
telegramdesktop/tdesktop/nightlyb0d29352 files, +17/-5
[poll-view] Fixed cut emoji icon in add-option field at some scales.

telegramdesktop/tdesktop/nightly82e66c81 files, +49/-36
[poll-view] Fixed vertical alignment of answer media and text.

telegramdesktop/tdesktop/nightlyd910e4e4 files, +53/-15
[poll-view] Fixed answer media dropped for pending webpage.

telegramdesktop/tdesktop/nightly0ef04211 files, +44/-27
[poll-view] Slightly improved answer highlight.

#tdesktop
🫡3
UnigramDev/Unigram/tdlib-list-t828d7842 files, +72/-30
Expose every TDLib vector to WinRT from the schema

SettingsStoragePage binds Statistics.ByChat to ItemsSource and threw
E_INVALIDARG. TG1001 cannot see it: a binding assigns through the declared
IList<T>, so the concrete type is only known at runtime. The schema does know
it, and both parsers materialise a vector as List<T>, so the generator emits
the registration for every one of them - 188, nested vectors included.

That also settles the arrays that were listed by hand. A vector is never an
array, so none of them could ever be reached, and removing them leaves TG1001
reporting exactly one: PremiumGiftPaymentOption[], which the app builds
itself.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

UnigramDev/Unigram/tdlib-list-t636c91d2 files, +53/-7
Flag the collection expressions no registration can fix

Targeting a read-only interface, a collection expression compiles to a type
the compiler makes up, and nothing can generate a vtable for that. TG1001
never reaches it: the target is typed, so its reasoning says the generator has
the conversion covered - but the marshaller it emits still needs a CCW for
whatever concrete type turns up.

There are two of them and the element count picks which, so a call site that
works with two elements can break when one is removed. Measured rather than
assumed, along with the targets that are safe: List, IList and ICollection all
produce a real List, a mutable interface needing a mutable instance. That also
retires the reason the generated API used IList - new[] { x } is no longer the
only short spelling.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

UnigramDev/Unigram/tdlib-list-t2c74f624 files, +285/-20
Expose the TDLib vector instantiations from real source

CsWinRT reads these attributes in its own generator, and a generator cannot
see what another generator wrote, so emitting them was a no-op: the storage
page still threw. TDAPI003 now compares the schema against the attributes
actually present, for the next time TDLib adds a vector.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

UnigramDev/Unigram/tdlib-list-t224de7f25 files, +106/-67
Expose TDLib object vectors as List<T>

Objects are read - bound to ItemsSource, iterated per render - so List makes
the concrete type visible to the analyzer, stops foreach boxing an enumerator
and lets the indexer inline. Functions are only ever written and serialised,
and keep IList. Constructors take IList either way, so arrays and collection
expressions still bind, and a parsed response is cast rather than copied.

AnimatedImage draws no shimmer when Outline is null, hence the shared empty.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

#unigram
UnigramDev/Unigram/tdlib-list-t4cbb3621 files, +23/-1
Follow x:Bind into the setters the XAML compiler emits

A binding does not assign the property: it calls a Set_ on XamlBindingSetters,
which takes the value as object and belongs to this assembly, so nothing
flagged it. Following that one call reports 83 collections bound from XAML
with no CCW vtable - each one a page that throws when opened.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

UnigramDev/Unigram/tdlib-list-t099bab682 files, +337/-313
Take List<T> in the generated constructors too

The parameter and the field are the same type now, so TdCollection.AsList is
gone. Call sites became [x] and [], which allocates less than it did: the
converter copied every array into a list.

Four needed more than a rewrite. TryGetColors and the two chat-list readers
fill by Add rather than by index, because a List's capacity is not its count.
TextStyleRun shares one empty list, since Array.Empty was free and these sit
on the render path - a shared mutable list is a footgun, and notes has the
plan for it.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

#unigram
UnigramDev/Unigram/dragover-access-denied7a6aacc1 files, +13/-4
Refuse a drag whose data view cannot be inspected

IDataPackageView::Contains is a cross-process call into the process that
started the drag, and it can be denied, or fail because that process went
away mid-drag. Neither is something the app can act on, so the drop is
declined and the failure logged.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

#unigram
UnigramDev/Unigram/location-access-check7a242051 files, +8/-3
Guard the location access request in CheckDeviceAccessAsync

Geolocator.RequestAccessAsync is a call into the Windows Geolocation
Service and throws ERROR_SERVICE_DISABLED (0x80070422) when that service
is disabled, as the identical call in SendLocationPopup.FindLocation did
in the field. Treat a throw as access not being available, the way
StartTrackingAsync already does.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

#unigram
UnigramDev/Unigram/media-collection-loadinge9d24351 files, +21/-4
Handle errors and cancellation when loading media

An Error response fell through silently, and the cancellation token was
never checked, so an abandoned load still appended to the collection.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

#unigram
UnigramDev/Unigram/composer-readonly-enter447e1cc1 files, +7/-0
Don't run the editing shortcuts in a read-only composer

Enter without Shift wrote a vertical tab into the document, which
RichEdit rejects with E_ACCESSDENIED whenever the composer has been
made read-only because the user cannot post in the chat.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

#unigram
UnigramDev/Unigram/currency-formatter-fallbackcc19c382 files, +5/-1
Fall back to a plain currency format when globalization is unavailable

GetCurrencyFormatter treated GlobalizationPreferences as infallible, so a
denied system query escaped as an UnauthorizedAccessException through the
synchronous ContainerContentChanging callback that reaches it. FormatCurrency
already handled a null formatter, but nothing could ever return one.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

#unigram
💅1
UnigramDev/Unigram/delayed-file-source-null84c7b532 files, +8/-2
Tolerate a null file in DelayedFileSource

A sticker with no StickerValue leaves _file null, which every other member
of the hierarchy already supports, so hashing the source crashed on Id.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

#unigram
UnigramDev/Unigram/gallery-ad-click-racebf2539b2 files, +18/-3
Stop the gallery ad taking clicks while it fades out

ShowHide(false) sets _collapsed immediately but only applies Visibility from the
scoped batch's Completed, so the button stays visible and hit-testable for the
whole fade - after the state its click handler needs is gone. Swiping to another
gallery item runs Dispose(), which reaches UpdateAdvertisement(null) and clears
_advertisement, and closing additionally drops the data context, so a click in
that window crashed on _advertisement.UniqueId (NullReferenceException, reported
by crash telemetry on 12.9.1).

The button now stops taking input when hiding starts rather than when the fade
ends, and the handler is guarded as well, because a focused button can still be
invoked from the keyboard or by automation, neither of which hit tests.

Also fix Unload() dropping the delegate before calling PlaybackStopped(), which
left UpdateAdvertisement(null) with nothing to call and the control holding a
stale advertisement.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

#unigram
UnigramDev/Unigram/tdlib-fatal-message13739311 files, +62/-0
Normalize TDLib fatal log lines before hashing

A LOG(FATAL) line becomes the crash report message, and its thread number,
scheduler tag, session index and printed values differ on every crash, so a
single assertion is hashed into a group per report. Keep the source location,
the actor name and the stringified condition, drop the rest.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

#unigram
TGX-Android/Telegram-X/mained3cad01 files, +2/-0
Disable `lintError`

TGX-Android/Telegram-X/main53092751 files, +1/-1
Version bump to `1803`

#tgxandroid
🫡3
UnigramDev/Unigram/develop09f6aca1 files, +86/-4
Report the marshalling failures nothing else can see

A managed exception thrown inside a CCW callback reaches neither unhandled
handler: CsWinRT converts it to an HRESULT at the ABI boundary, so the runtime
counts it as handled, and the fail-fast XAML raises on that HRESULT bypasses
the native filter as well. First chance is the only point it is still an
exception, and reports are written synchronously, so the record survives.

Narrow on purpose: the two types CsWinRT throws when it cannot marshal
something, one report per distinct message, eight a session. They draw on the
same token bucket as real crashes, and crash.id stays unwritten so a handled
exception does not mark the session as crashed.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

UnigramDev/Unigram/developd2042c41 files, +5/-2
Spell out the kernel32 entry points

LibraryImport always generates ExactSpelling, so the bare name is looked up
verbatim and kernel32 only exports the W and A forms. DllImport found them by
probing, which it does because a CharSet leaves ExactSpelling false.

IsPasskeySupported went through GetModuleHandle behind a Lazy, so it threw
once and then threw forever.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

UnigramDev/Unigram/develop51c712d1 files, +6/-1
Recognise the HRESULT suffix CsWinRT writes

.NET Native appends "(Exception from HRESULT: 0x80004005)", CsWinRT appends
"(0x80004005)". Matching only the first left the suffix attached to every
message on the AOT build, so no sentence matched the translation table and one
fault split into a group per language.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

UnigramDev/Unigram/developf94f44c1 files, +5/-3
Produce a symbol package for the modern bundle

A sideload build does emit an .appxsym - Telegram.Msix has one beside every
bundle - and without it a tester's crash cannot be symbolicated at all, which
is what happened to the last one handed out.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

UnigramDev/Unigram/developc3135cf1 files, +1/-1
Invalidate the load in flight when recycling

Recycling reset the generation to 0, so the next load took that same number
and an outstanding continuation still matched - painting its image over the
one now bound to the brush. Advance the counter instead.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>

#unigram
🫡1
UnigramDev/Unigram/develop9729f6012 files, +461/-34
Fix the bindings that resolve a property by name

All three read a property off a managed type by name, which NativeAOT resolves
only where the XAML compiler generated an accessor or the type carries
[GeneratedBindableCustomProperty]. The emoji drawer's group headers and the
revenue tabs move to x:Bind, the drawer's three group types gaining a shared
IDrawerGroup so the template has an x:DataType; the Instant View tab header
stays a binding, since the title arrives after navigation, so InstantViewModel
is registered for it.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

UnigramDev/Unigram/develop614b57c2 files, +4/-4
Swap night/day icons on Windows 10

UnigramDev/Unigram/develop14e59d41 files, +1/-1
Start selection only WITHIN the text

#unigram
UnigramDev/Unigram/develop4a140801 files, +4/-0
Name the chart cards for the screen reader

A ListViewItem takes its name from the content ToString, which for a
ChartViewData is the type name, so every chart in the channel statistics
announced Telegram.ViewModels.Chats.ChartViewData. Give the container the
chart title, beside the header it already sets.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

UnigramDev/Unigram/develop75177e54 files, +218/-3
Reach the statistics charts from the keyboard

The chart is drawn, so its values exist as text only in the legend, which
followed the pointer and nothing else. Arrows step a point, page keys a tenth
of the visible range, Home and End the edges, Escape drops the selection, and
every move is announced through a notification; focus arriving from the
keyboard selects the most recent point, and leaving clears it.

Taking focus means being a Control, so the view moves off the Grid it was
ported onto, the canvas and the legend now sitting in its content, and gets a
peer that reports it focusable and hands out the selected point as its value.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

UnigramDev/Unigram/develop47adb001 files, +24/-1
Select chart points on hover

A mouse reports moves with nothing pressed, which the touch original had no
notion of: the legend only followed a held button, and the branch that took
over tested the press position rather than the pointer, so after any click
inside the chart a hover kept dragging the selection along.

Hovering the chart area now selects and moving off it clears, a move with
nothing in contact ends a drag whose release was lost to a scroll or a flyout,
and clearing on pointer exit redraws, which it never did.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

UnigramDev/Unigram/develop00bb9e810 files, +357/-214
Don't search chats once per keystroke

The local half of the search ran on the keystroke itself, so typing a word sent
three TDLib requests and re-rendered the list per character; it now has its own
short debounce beside the online one. Its requests also go out together instead
of one after another, the message group is replaced in place rather than emptied
and refilled, and a row standing for the same chat is reused instead of rebuilt.

The four copies of ReplaceDiff became one extension, which is where the missing
UpdateItem call lands: a surviving row used to keep the query it was first found
by. Highlighters were also accumulating on recycled rows.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

UnigramDev/Unigram/developf2d33ae1 files, +8/-3
Add a page of public posts once, not once per message

LoadMoreItemsAsync called AddRange inside a foreach over the same page, so
loading fifty posts appended two and a half thousand rows. Its staleness check
also read the _cancellation field, which a newer query replaces with a source
that is not cancelled.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>

#unigram