Commit Graph

12001 Commits

Author SHA1 Message Date
Will McGugan
f8a5d76c80 Update suggest.md 2025-06-21 16:50:49 +01:00
Will McGugan
8fa4a05378 Update new_issue.yml 2025-06-21 16:48:40 +01:00
Will McGugan
9f4feac748 Update suggest.md 2025-06-21 16:43:27 +01:00
Will McGugan
62df150059 Update comment.yml 2025-06-21 16:40:35 +01:00
Will McGugan
441805346b Update FUNDING.yml 2025-06-21 14:13:30 +01:00
Will McGugan
1051db1a97 Merge pull request #5875 from Textualize/bump-3.5.0
version bump
v3.5.0
2025-06-20 15:46:18 +01:00
Will McGugan
166f0ec9ee version bump 2025-06-20 15:38:03 +01:00
Will McGugan
78c286fce6 Merge pull request #5874 from Textualize/markdown-code-guides
Expose code intend guides
2025-06-20 15:36:10 +01:00
Will McGugan
faef858bff snapshots 2025-06-20 15:23:14 +01:00
Will McGugan
5ff49a71eb markdown style tweak 2025-06-20 15:06:06 +01:00
Will McGugan
6980c470b0 Expose code intend guides 2025-06-20 12:56:13 +01:00
Will McGugan
8f85ece761 playground tweak 2025-06-19 15:21:56 +01:00
Will McGugan
51e00c7742 Merge pull request #5869 from Textualize/startup-optimizations
Startup optimizations
2025-06-16 15:37:50 +01:00
Will McGugan
e16f5928ce fix extras 2025-06-16 15:22:24 +01:00
Will McGugan
1581527492 snapshots 2025-06-16 14:56:52 +01:00
Will McGugan
8438271e75 move check 2025-06-15 14:43:32 +01:00
Will McGugan
3e0dff8184 skip if not attached 2025-06-15 14:38:18 +01:00
Will McGugan
85ce6e90de startup optimizations 2025-06-15 14:34:57 +01:00
Will McGugan
f43556f19c don't update styles when not attached 2025-06-15 14:05:14 +01:00
Will McGugan
b53b628a8b avoid update styles 2025-06-15 13:58:25 +01:00
Will McGugan
c52d2c804c Merge pull request #5865 from Textualize/bump340
bump to 3.4.0
v3.4.0
2025-06-14 16:42:46 +01:00
Will McGugan
beea1e8c3c bump to 3.4.0 2025-06-14 16:40:05 +01:00
Will McGugan
772a3f05f4 Merge pull request #5863 from Textualize/log-in-threads
Log in threads
2025-06-13 17:31:17 +01:00
Will McGugan
e6402795c5 changelog 2025-06-13 16:49:09 +01:00
Will McGugan
7e7e04de28 test for log workers 2025-06-13 16:44:25 +01:00
Will McGugan
55c5d09fde associate app with logger 2025-06-13 16:22:38 +01:00
Will McGugan
3483d81fbe Merge pull request #5833 from ddkasa/fix-set-loading-return-type-docstring
Update `Widget.set_loading` Docstring
2025-06-11 08:52:04 +01:00
Will McGugan
d4d4f71ea9 Merge pull request #5851 from Textualize/lenient-markup
Lenient markup
2025-06-11 08:50:47 +01:00
Will McGugan
2f8f5b9dbb another test 2025-06-08 20:30:15 +01:00
Will McGugan
ffd644972a Changelog 2025-06-08 16:54:36 +01:00
Will McGugan
5ee3c6a4a9 More lenient markup 2025-06-08 16:53:54 +01:00
Will McGugan
9b72dc9719 more lenient markup 2025-06-08 16:45:16 +01:00
Will McGugan
29297c4b52 changelog 2025-06-08 15:49:07 +01:00
Will McGugan
0697492395 changelog 2025-06-08 15:48:11 +01:00
Will McGugan
7a13dafeac Merge pull request #5850 from Textualize/big-worker
Big worker
2025-06-08 15:47:25 +01:00
Will McGugan
b4b912d77c changelog 2025-06-08 15:46:34 +01:00
Will McGugan
d5512fd5c9 crop description 2025-06-08 15:46:16 +01:00
Will McGugan
11266cbd26 Merge pull request #5848 from Textualize/thread-init
sync primitives
2025-06-08 15:38:01 +01:00
Will McGugan
c6c8b8ea8b test 2025-06-08 15:13:02 +01:00
Will McGugan
c0910a67b5 sync primitives 2025-06-08 15:07:00 +01:00
Will McGugan
7e7ea0cdd4 Merge pull request #5837 from TomJGooding/refactor-static-remove-unused-check-renderable
refactor(static): remove unused _check_renderable function
2025-06-07 16:57:02 +01:00
Will McGugan
f704ba9944 Merge pull request #5842 from TomJGooding/fix-text-area-fix-initial-flicker
fix(text area): fix initial flicker in rendering
2025-06-07 16:56:28 +01:00
Will McGugan
7988679b9d Merge pull request #5846 from Textualize/speedups
add speedups
2025-06-06 21:54:26 +01:00
Will McGugan
a0b76782ec CHANGELOG 2025-06-06 21:23:05 +01:00
Will McGugan
cc38ee54e5 add speedups 2025-06-06 20:55:05 +01:00
TomJGooding
aae72f2f95 docs(changelog): add fix for text area flicker 2025-06-05 17:17:22 +01:00
TomJGooding
4653f306c7 fix(text area): set attributes before calling _set_document
Ensure `TextArea.__init__()` assigns attributes like
`soft_wrap` *before* calling the `_set_document()` method.

Currently if you create a `TextArea` with `soft_wrap=False`, the
document is first wrapped with the default `soft_wrap=True`, causing an
initial flicker.
2025-06-05 16:24:04 +01:00
TomJGooding
6e36e9e93d fix(text area): fix initial flicker in rendering
Fix initial flicker in the `TextArea`, where for a brief moment each
character is rendered on a new line before the size is settled.

The width for the `WrappedDocument` is _slightly_ confusing where zero
means no wrapping, but the current negative wrap width looks like the
bug.

Fixes #5841
2025-06-04 20:20:16 +01:00
TomJGooding
a0c3159ecd refactor(static): remove unused _check_renderable function
Remove the `_check_renderable` function, which has been unused since the
new render protocol was introduced in Textual v0.86.0.
2025-06-04 10:51:46 +01:00
David Kasakaitis
4a8d37f6a0 docs(Widget): update set_loading extended description 2025-06-02 10:41:38 +01:00