mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
## [5.1.1] - 2025-07-21
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed overly large distribution, no code changes https://github.com/Textualize/textual/pull/6010
|
||||
|
||||
## [5.1.0] - 2025-07-31
|
||||
|
||||
### Added
|
||||
@@ -3035,6 +3041,7 @@ https://textual.textualize.io/blog/2022/11/08/version-040/#version-040
|
||||
- New handler system for messages that doesn't require inheritance
|
||||
- Improved traceback handling
|
||||
|
||||
[5.1.1]: https://github.com/Textualize/textual/compare/v5.1.0...v5.1.1
|
||||
[5.1.0]: https://github.com/Textualize/textual/compare/v5.0.1...v5.1.0
|
||||
[5.0.1]: https://github.com/Textualize/textual/compare/v5.0.0...v5.0.1
|
||||
[5.0.0]: https://github.com/Textualize/textual/compare/v4.1.0...v5.0.0
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "textual"
|
||||
version = "5.1.0"
|
||||
version = "5.1.1"
|
||||
homepage = "https://github.com/Textualize/textual"
|
||||
repository = "https://github.com/Textualize/textual"
|
||||
documentation = "https://textual.textualize.io/"
|
||||
|
||||
@@ -98,7 +98,10 @@ class Input(ScrollView):
|
||||
show=False,
|
||||
),
|
||||
Binding(
|
||||
"ctrl+right", "cursor_right_word", "Move cursor right a word", show=False
|
||||
"ctrl+right",
|
||||
"cursor_right_word",
|
||||
"Move cursor right a word",
|
||||
show=False,
|
||||
),
|
||||
Binding(
|
||||
"ctrl+shift+right",
|
||||
|
||||
Reference in New Issue
Block a user