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: .github/ISSUE_TEMPLATE/bug_report.md
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
-
name: Bug report
3
-
about: Create a report to help us improve
2
+
name: Report a bug
3
+
about: Report a crash or something not working as described in the docs
4
4
title: ''
5
5
labels: ''
6
6
assignees: ''
@@ -11,14 +11,18 @@ Have you checked closed issues? (https://github.com/Textualize/textual/issues?q=
11
11
12
12
Have you checked against the most recent version of Textual? (https://pypi.org/search/?q=textual)
13
13
14
-
## Feature requests
14
+
## Consider discussions!
15
15
16
-
Please post feature requests to Ideas. (https://github.com/Textualize/textual/discussions/categories/ideas)
16
+
Issues are for actionable items only.
17
+
If Textual crashes or behaves differently from the docs, then submit an issue.
18
+
If you want to know how to do something, or you have a suggestion for a new feature, then open a discussion (https://github.com/Textualize/textual/discussions/).
17
19
20
+
For realtime help, join our discord server (https://discord.gg/Enf6Z3qhVr)
18
21
19
22
## The bug
20
23
21
-
Please give a brief but clear explanation of the issue. If you can, include a complete working example that demonstrates the bug. **Check it can run without modifications.**
24
+
Please give a brief but clear explanation of the issue.
25
+
If you can, include a complete working example that demonstrates the bug. **Check it can run without modifications.**
22
26
23
27
It will be helpful if you run the following command and paste the results:
Copy file name to clipboardExpand all lines: CHANGELOG.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,27 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
+
8
9
## Unreleased
9
10
11
+
### Added
12
+
13
+
- Added `compact` parameter to `MaskedInput`https://github.com/Textualize/textual/pull/5952
14
+
10
15
### Fixed
11
16
17
+
- Fixed `query_one` and `query_exactly_one` not raising documented `WrongType` exception.
12
18
- Fixed logging to a file on Windows https://github.com/Textualize/textual/issues/5941
13
19
20
+
### Changed
21
+
22
+
- Breaking change: `Widget.anchor` now has different semantics. It should be applied to a container and anchors to the bottom of the scroll position. https://github.com/Textualize/textual/pull/5950
0 commit comments