From f4eb13799124aa69f55313cdacb131a163789961 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Mon, 23 Sep 2024 15:23:50 +0100 Subject: [PATCH 1/3] version bump --- CHANGELOG.md | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a25970f27..cce2b801e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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/). -## [Unreleased] +## [0.80.0] - 2024-09-23 ### Added diff --git a/pyproject.toml b/pyproject.toml index a13cdc868a..feced1d81d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "textual" -version = "0.79.1" +version = "0.80.0" homepage = "https://github.com/Textualize/textual" repository = "https://github.com/Textualize/textual" documentation = "https://textual.textualize.io/" From 771f2b939b4ce8cbfea411762d9720b9ebc5248b Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Mon, 23 Sep 2024 15:28:35 +0100 Subject: [PATCH 2/3] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cce2b801e1..13b83925f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2381,6 +2381,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 +[0.80.0]: https://github.com/Textualize/textual/compare/v0.79.0...v0.80.0 [0.79.0]: https://github.com/Textualize/textual/compare/v0.78.0...v0.79.0 [0.78.0]: https://github.com/Textualize/textual/compare/v0.77.0...v0.78.0 [0.77.0]: https://github.com/Textualize/textual/compare/v0.76.0...v0.77.0 From d0abf60984a88c3e3422a4fb467a26245e9a3d23 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Mon, 23 Sep 2024 15:32:32 +0100 Subject: [PATCH 3/3] comments --- src/textual/widget.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/textual/widget.py b/src/textual/widget.py index 2ea5bd7b4b..adb26f596e 100644 --- a/src/textual/widget.py +++ b/src/textual/widget.py @@ -447,7 +447,10 @@ def __init__( """The scroll position on the Y axis.""" scroll_target_x = Reactive(0.0, repaint=False) + """Scroll target destination, X coord.""" + scroll_target_y = Reactive(0.0, repaint=False) + """Scroll target destination, Y coord.""" show_vertical_scrollbar: Reactive[bool] = Reactive(False, layout=True) """Show a vertical scrollbar?"""