You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10-7Lines changed: 10 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## Unreleased
9
9
10
+
11
+
### Changed
12
+
13
+
- Breaking change: `App.query` and friends will now always query the default (first) screen, not necessarily the active screen.
14
+
- Content now has a default argument of an empty string, so `Content()` is equivalent to `Content("")`
15
+
- Assigned names to Textual-specific threads: `textual-input`, `textual-output`. These should become visible in monitoring tools (ps, top, htop) as of Python 3.14. https://github.com/Textualize/textual/pull/5654
16
+
- Tabs now accept Content or content markup https://github.com/Textualize/textual/pull/5657
17
+
- Buttons will now use Textual markup rather than console markup
18
+
- tree-sitter languages are now loaded lazily, improving cold-start time https://github.com/Textualize/textual/pull/563
19
+
10
20
### Fixed
11
21
12
22
- Static and Label now accept Content objects, satisfying type checkers https://github.com/Textualize/textual/pull/5618
@@ -25,14 +35,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- DOMNode.query now accepts UnionType for selector in Python 3.10 and above, e.g. `self.query(Input | Select )`https://github.com/Textualize/textual/pull/5578
29
-
30
-
## Changed
31
38
32
-
- Assigned names to Textual-specific threads: `textual-input`, `textual-output`. These should become visible in monitoring tools (ps, top, htop) as of Python 3.14. https://github.com/Textualize/textual/pull/5654
33
-
- Tabs now accept Content or content markup https://github.com/Textualize/textual/pull/5657
34
-
- Buttons will now use Textual markup rather than console markup
35
-
- tree-sitter languages are now loaded lazily, improving cold-start time https://github.com/Textualize/textual/pull/5639
0 commit comments