TGTGInsighttelegram intelligenceLIVE / telegram public index
← Telegram github commits and releases
Telegram github commits and releases avatar

TGINSIGHT POST

Post #19374

@tgappsupdates

Telegram github commits and releases

Views214Post view count
PostedJan 2801/28/2026, 08:01 AM
Post content

Post content

telegramdesktop/tdesktop/dev • b60f6b0 • 1 files, +30/-19 Implement word-based matching in settings search. Use TextUtilities::PrepareSearchWords() to normalize query and entry text: split into words, remove accents, and lowercase. Match by word prefix: each query word must match at least one entry word by startsWith(). Co-Authored-By: Claude Opus 4.5 <[email protected]> telegramdesktop/tdesktop/dev • 3883239 • 1 files, +30/-10 Implement smart sorting for settings search results. Sort results by match count (descending), then by parent chain depth (ascending), and finally alphabetically by title. telegramdesktop/tdesktop/dev • 16442e2 • 2 files, +21/-0 Preserve search query on navigation in settings. Use the stepDataReference mechanism to save and restore the search query when navigating from results to a section and back. Co-Authored-By: Claude Opus 4.5 <[email protected]> telegramdesktop/tdesktop/dev • e022c6e • 2 files, +95/-70 Optimize settings search with first-letter index. Build search index once when the section is created instead of recomputing on every query. Use first-letter lookup for O(1) candidate filtering, following the pattern from theme editor's searchByQuery implementation. Co-Authored-By: Claude Opus 4.5 <[email protected]> telegramdesktop/tdesktop/dev • 55624b3 • 2 files, +3/-4 Fix Ctrl+F in settings. telegramdesktop/tdesktop/dev • eff86fc • 2 files, +29/-8 Cache and reuse search result buttons in settings. Co-Authored-By: Claude Opus 4.5 <[email protected]> telegramdesktop/tdesktop/dev • 4c2e73a • 7 files, +282/-5 Show FAQ entries as default search results. telegramdesktop/tdesktop/dev • fafe2f9 • 4 files, +33/-24 Restore settings search query on return. telegramdesktop/tdesktop/dev • 594dc12 • 2 files, +90/-47 Index FAQ entries together with settings entries. Now FAQ entries appear in filtered search results when the query matches, not just when query is empty. Uses same button cache and first-letter index for both settings and FAQ entries. Co-Authored-By: Claude Opus 4.5 <[email protected]> #tdesktop