ZavaruKitsu
62cfe5ef98
Merge tag 'v4.9.3' into dev
...
# Conflicts:
# Telegram/Resources/winrc/Telegram.rc
# Telegram/Resources/winrc/Updater.rc
# Telegram/SourceFiles/core/version.h
# Telegram/lib_ui
2023-08-27 09:07:54 +00:00
John Preston
311691a3bc
Use FlatLabel::textMaxWidth.
2023-08-17 13:54:53 +02:00
John Preston
4b0c4eee30
Use name instead of "My Story" if it doesn't fit.
2023-08-17 12:31:57 +02:00
John Preston
3fe9ba41ba
Improve chats expand animation.
...
Fixes #25890 .
2023-08-15 16:50:41 +02:00
23rd
3d0b139c40
Removed text transform from update application button.
2023-08-15 09:48:45 +03:00
ZavaruKitsu
5a0a93d8d4
feat: hide stories (thx 64Gram)
2023-08-01 13:28:30 +00:00
John Preston
1c1e643735
Use close icon from group calls in stories tooltip.
2023-07-28 21:38:59 +04:00
John Preston
7d1725b339
Simplify ordering of stories tooltip.
2023-07-28 12:19:53 +04:00
23rd
73373e373f
Moved important tooltip for stories in dialogs to MainWidget.
2023-07-26 22:23:45 +03:00
John Preston
e6a80927c6
Version 4.8.9: Fix build with GCC.
2023-07-26 13:46:58 +04:00
John Preston
770880b74b
Version 4.8.9: Add hiding X button to stories tooltip.
2023-07-26 13:43:25 +04:00
John Preston
2d31704bde
Fix lock/unlock button visibility.
2023-07-26 09:45:06 +04:00
John Preston
57fc9f71ac
Fix some stories tooltip edge cases.
2023-07-25 10:45:08 +04:00
John Preston
fce8bc6201
Add stories-above-chats-list tooltip.
2023-07-24 21:42:13 +04:00
John Preston
320db83155
Fix build with GCC.
2023-07-24 15:31:43 +04:00
John Preston
0b32a0a1ea
Lock scroll either horizontal or vertical.
2023-07-21 21:50:35 +04:00
John Preston
676a3f8cfa
Open hidden stories by archive userpic click.
2023-07-21 20:31:10 +04:00
John Preston
daef7faaa4
Don't open stories from userpic in narrow chats mode.
2023-07-21 20:23:52 +04:00
John Preston
87206a6c79
Use transparent outline for stories in chats list.
2023-07-21 19:49:58 +04:00
John Preston
6e3c3a8dd2
Collapse stories on archive open/close.
2023-07-20 21:42:35 +04:00
John Preston
75f542747d
Fix build with GCC.
2023-07-20 20:12:47 +04:00
John Preston
da5bce00d4
Gray out names of users with non-unread stories.
2023-07-20 19:17:46 +04:00
John Preston
d7d493e0bf
Don't open stories on saved messages click.
2023-07-20 13:55:30 +04:00
John Preston
585bbd45f4
Fix undesired lock/unlock button visibility.
2023-07-20 07:20:57 +04:00
John Preston
b630e48a77
Improve chats list filter border.
2023-07-20 07:20:57 +04:00
John Preston
4402cce928
Allow archive with stories only.
2023-07-20 07:20:57 +04:00
John Preston
8818012182
Show segments around chats list userpics.
2023-07-20 07:20:57 +04:00
John Preston
734c5c6740
Use a single Ui::UnreadStoryOutlineGradient.
2023-07-20 07:20:57 +04:00
John Preston
5f4dcc5eb6
Show segments in expanded stories list.
2023-07-20 07:20:57 +04:00
John Preston
3b59f52028
Fix overscroll background on theme change.
2023-07-20 07:20:56 +04:00
John Preston
6b4ccd2995
Fix lock/unlock toggle without stories.
2023-07-20 07:20:56 +04:00
John Preston
3851fa27d9
Update lock/unlock icon.
2023-07-20 07:20:56 +04:00
John Preston
94820f36ba
Improve expanded state of small amount of stories.
2023-07-20 07:20:56 +04:00
John Preston
3c28e7b585
Mark as read recent stories in profile top bar.
2023-07-20 07:20:56 +04:00
John Preston
5368507259
Improve lock/unlock icon behavior.
2023-07-20 07:20:56 +04:00
John Preston
39a1743e7e
Fix overscroll in topics list.
2023-07-20 07:20:56 +04:00
John Preston
91cc5f5284
Fix small stories thumbnails in profile / my stories.
2023-07-20 07:20:47 +04:00
John Preston
196447ac19
Fix build with GCC.
2023-07-20 07:20:46 +04:00
John Preston
6607848abc
Fix build with GCC.
2023-07-20 07:20:46 +04:00
John Preston
05cf8d034e
Improve touch-screen stories overscroll.
2023-07-20 07:20:46 +04:00
John Preston
dfd1aa5cd6
Fix empty stories list hiding.
2023-07-20 07:20:46 +04:00
John Preston
7b911897fc
Remove legacy summaries from stories list.
2023-07-20 07:20:46 +04:00
John Preston
70ca3d4f1a
Show hidden stories in archive.
2023-07-20 07:20:46 +04:00
John Preston
61b8aac7c4
Allow manually toggle stories expand state.
2023-07-20 07:20:46 +04:00
John Preston
85795aa376
Working stories in overscroll.
2023-07-20 07:20:44 +04:00
John Preston
e0c10e7cc2
Fix scroll-to-top in chats list visibility.
2023-07-20 07:20:33 +04:00
John Preston
dc806d4286
Try ElasticScroll in Dialogs::Widget.
2023-07-20 07:20:33 +04:00
John Preston
57b7391f53
Improve design of contacts according to mockups.
2023-07-20 07:20:33 +04:00
John Preston
a0ffa15885
Update story mention layout, add outline.
...
Also use uint32 for bool-bitfields, otherwise:
int a : 1 = 0;
...
const auto test = true;
const auto b = test ? 1 : 0;
if (a != b) {
a = b;
...
}
Assert(a == b); // Violation, because a == -1, not 1 (after a = b).
2023-07-20 07:20:33 +04:00
John Preston
d7d8847c1d
Show stories in chats list userpics.
2023-07-20 07:20:33 +04:00