Skip to content

Commit 6cb052a

Browse files
Fix changelog. (#2683)
1 parent 3e7b2c5 commit 6cb052a

File tree

1 file changed

+8
-22
lines changed

1 file changed

+8
-22
lines changed

CHANGELOG.md

Lines changed: 8 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1717
- `work` decorator accepts `description` parameter to add debug string https://github.com/Textualize/textual/issues/2597
1818
- Added `SelectionList` widget https://github.com/Textualize/textual/pull/2652
1919
- `App.AUTO_FOCUS` to set auto focus on all screens https://github.com/Textualize/textual/issues/2594
20+
- `Suggester` API to compose with widgets for automatic suggestions https://github.com/Textualize/textual/issues/2330
21+
- `SuggestFromList` class to let widgets get completions from a fixed set of options https://github.com/Textualize/textual/pull/2604
22+
- `Input` has a new component class `input--suggestion` https://github.com/Textualize/textual/pull/2604
2023
- Added `Widget.remove_children` https://github.com/Textualize/textual/pull/2657
2124

2225
### Changed
@@ -27,6 +30,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2730
- Setting `Screen.AUTO_FOCUS` to `None` will inherit `AUTO_FOCUS` from the app instead of disabling it https://github.com/Textualize/textual/issues/2594
2831
- Setting `Screen.AUTO_FOCUS` to `""` will disable it on the screen https://github.com/Textualize/textual/issues/2594
2932
- Messages now have a `handler_name` class var which contains the name of the default handler method.
33+
- `Message.control` is now a property instead of a class variable. https://github.com/Textualize/textual/issues/2528
34+
- `Tree` and `DirectoryTree` Messages no longer accept a `tree` parameter, using `self.node.tree` instead. https://github.com/Textualize/textual/issues/2529
35+
- Keybinding <kbd>right</kbd> in `Input` is also used to accept a suggestion if the cursor is at the end of the input https://github.com/Textualize/textual/pull/2604
36+
- `Input.__init__` now accepts a `suggester` attribute for completion suggestions https://github.com/Textualize/textual/pull/2604
3037

3138
### Removed
3239

@@ -38,33 +45,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
3845

3946
### Added
4047

41-
- Added Widget.can_view
48+
- Added `Widget.can_view`
4249

4350
### Changed
4451

4552
- Textual will now scroll focused widgets to center if not in view
4653

47-
## Unreleased
48-
49-
### Changed
50-
51-
- `Message.control` is now a property instead of a class variable. https://github.com/Textualize/textual/issues/2528
52-
- `Tree` and `DirectoryTree` Messages no longer accept a `tree` parameter, using `self.node.tree` instead. https://github.com/Textualize/textual/issues/2529
53-
54-
## Unreleased
55-
56-
### Added
57-
58-
- `Suggester` API to compose with widgets for automatic suggestions https://github.com/Textualize/textual/issues/2330
59-
- `SuggestFromList` class to let widgets get completions from a fixed set of options https://github.com/Textualize/textual/pull/2604
60-
- `Input` has a new component class `input--suggestion` https://github.com/Textualize/textual/pull/2604
61-
62-
### Changed
63-
64-
- Keybinding <kbd>right</kbd> in `Input` is also used to accept a suggestion if the cursor is at the end of the input https://github.com/Textualize/textual/pull/2604
65-
- `Input.__init__` now accepts a `suggester` attribute for completion suggestions https://github.com/Textualize/textual/pull/2604
66-
67-
6854
## [0.25.0] - 2023-05-17
6955

7056
### Changed

0 commit comments

Comments
 (0)